diff --git a/InManageBoot-ui/.gitignore b/InManageBoot-ui/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..bd5b34cd37cbf773bbcc71815283fbbd2975d1b8 --- /dev/null +++ b/InManageBoot-ui/.gitignore @@ -0,0 +1,27 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build +/dist +/doc + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* +/.vscode/ +/.idea/ diff --git a/InManageBoot-ui/config/env.js b/InManageBoot-ui/config/env.js new file mode 100644 index 0000000000000000000000000000000000000000..2bf47bdad45aa2500f890ded3bfc77bed6d1bca7 --- /dev/null +++ b/InManageBoot-ui/config/env.js @@ -0,0 +1,107 @@ +'use strict'; + +const fs = require('fs'); +const path = require('path'); +const paths = require('./paths'); + +// Make sure that including paths.js after env.js will read .env variables. +delete require.cache[require.resolve('./paths')]; + +const NODE_ENV = process.env.NODE_ENV; +if (!NODE_ENV) { + throw new Error( + 'The NODE_ENV environment variable is required but was not specified.' + ); +} + +// https://github.com/bkeepers/dotenv#what-other-env-files-can-i-use +const dotenvFiles = [ + `${paths.dotenv}.${NODE_ENV}.local`, + // Don't include `.env.local` for `test` environment + // since normally you expect tests to produce the same + // results for everyone + NODE_ENV !== 'test' && `${paths.dotenv}.local`, + `${paths.dotenv}.${NODE_ENV}`, + paths.dotenv, +].filter(Boolean); + +// Load environment variables from .env* files. Suppress warnings using silent +// if this file is missing. dotenv will never modify any environment variables +// that have already been set. Variable expansion is supported in .env files. +// https://github.com/motdotla/dotenv +// https://github.com/motdotla/dotenv-expand +dotenvFiles.forEach(dotenvFile => { + if (fs.existsSync(dotenvFile)) { + require('dotenv-expand')( + require('dotenv').config({ + path: dotenvFile, + }) + ); + } +}); + +// We support resolving modules according to `NODE_PATH`. +// This lets you use absolute paths in imports inside large monorepos: +// https://github.com/facebook/create-react-app/issues/253. +// It works similar to `NODE_PATH` in Node itself: +// https://nodejs.org/api/modules.html#modules_loading_from_the_global_folders +// Note that unlike in Node, only *relative* paths from `NODE_PATH` are honored. +// Otherwise, we risk importing Node.js core modules into an app instead of webpack shims. +// https://github.com/facebook/create-react-app/issues/1023#issuecomment-265344421 +// We also resolve them to make sure all tools using them work consistently. +const appDirectory = fs.realpathSync(process.cwd()); +process.env.NODE_PATH = (process.env.NODE_PATH || '') + .split(path.delimiter) + .filter(folder => folder && !path.isAbsolute(folder)) + .map(folder => path.resolve(appDirectory, folder)) + .join(path.delimiter); + +// Grab NODE_ENV and REACT_APP_* environment variables and prepare them to be +// injected into the application via DefinePlugin in webpack configuration. +const REACT_APP = /^REACT_APP_/i; + +function getClientEnvironment(publicUrl) { + const raw = Object.keys(process.env) + .filter(key => REACT_APP.test(key)) + .reduce( + (env, key) => { + env[key] = process.env[key]; + return env; + }, + { + // Useful for determining whether we’re running in production mode. + // Most importantly, it switches React into the correct mode. + NODE_ENV: process.env.NODE_ENV || 'development', + // Useful for resolving the correct path to static assets in `public`. + // For example, . + // This should only be used as an escape hatch. Normally you would put + // images into the `src` and `import` them in code to get their paths. + PUBLIC_URL: publicUrl, + // We support configuring the sockjs pathname during development. + // These settings let a developer run multiple simultaneous projects. + // They are used as the connection `hostname`, `pathname` and `port` + // in webpackHotDevClient. They are used as the `sockHost`, `sockPath` + // and `sockPort` options in webpack-dev-server. + WDS_SOCKET_HOST: process.env.WDS_SOCKET_HOST, + WDS_SOCKET_PATH: process.env.WDS_SOCKET_PATH, + WDS_SOCKET_PORT: process.env.WDS_SOCKET_PORT, + __DEMO__: process.env.__DEMO__, + __ICBC__: process.env.__ICBC__, + __OVERSEAS__: process.env.__OVERSEAS__, + // Whether or not react-refresh is enabled. + // It is defined here so it is available in the webpackHotDevClient. + FAST_REFRESH: process.env.FAST_REFRESH !== 'false', + } + ); + // Stringify all values so we can feed into webpack DefinePlugin + const stringified = { + 'process.env': Object.keys(raw).reduce((env, key) => { + env[key] = JSON.stringify(raw[key]); + return env; + }, {}), + }; + + return { raw, stringified }; +} + +module.exports = getClientEnvironment; diff --git a/InManageBoot-ui/config/getHttpsConfig.js b/InManageBoot-ui/config/getHttpsConfig.js new file mode 100644 index 0000000000000000000000000000000000000000..013d493c1bbea605c0e7c12ed21680200e4b7191 --- /dev/null +++ b/InManageBoot-ui/config/getHttpsConfig.js @@ -0,0 +1,66 @@ +'use strict'; + +const fs = require('fs'); +const path = require('path'); +const crypto = require('crypto'); +const chalk = require('react-dev-utils/chalk'); +const paths = require('./paths'); + +// Ensure the certificate and key provided are valid and if not +// throw an easy to debug error +function validateKeyAndCerts({ cert, key, keyFile, crtFile }) { + let encrypted; + try { + // publicEncrypt will throw an error with an invalid cert + encrypted = crypto.publicEncrypt(cert, Buffer.from('test')); + } catch (err) { + throw new Error( + `The certificate "${chalk.yellow(crtFile)}" is invalid.\n${err.message}` + ); + } + + try { + // privateDecrypt will throw an error with an invalid key + crypto.privateDecrypt(key, encrypted); + } catch (err) { + throw new Error( + `The certificate key "${chalk.yellow(keyFile)}" is invalid.\n${ + err.message + }` + ); + } +} + +// Read file and throw an error if it doesn't exist +function readEnvFile(file, type) { + if (!fs.existsSync(file)) { + throw new Error( + `You specified ${chalk.cyan( + type + )} in your env, but the file "${chalk.yellow(file)}" can't be found.` + ); + } + return fs.readFileSync(file); +} + +// Get the https config +// Return cert files if provided in env, otherwise just true or false +function getHttpsConfig() { + const { SSL_CRT_FILE, SSL_KEY_FILE, HTTPS } = process.env; + const isHttps = HTTPS === 'true'; + + if (isHttps && SSL_CRT_FILE && SSL_KEY_FILE) { + const crtFile = path.resolve(paths.appPath, SSL_CRT_FILE); + const keyFile = path.resolve(paths.appPath, SSL_KEY_FILE); + const config = { + cert: readEnvFile(crtFile, 'SSL_CRT_FILE'), + key: readEnvFile(keyFile, 'SSL_KEY_FILE'), + }; + + validateKeyAndCerts({ ...config, keyFile, crtFile }); + return config; + } + return isHttps; +} + +module.exports = getHttpsConfig; diff --git a/InManageBoot-ui/config/jest/babelTransform.js b/InManageBoot-ui/config/jest/babelTransform.js new file mode 100644 index 0000000000000000000000000000000000000000..5b391e4055620b32a7447abee464243e63293498 --- /dev/null +++ b/InManageBoot-ui/config/jest/babelTransform.js @@ -0,0 +1,29 @@ +'use strict'; + +const babelJest = require('babel-jest').default; + +const hasJsxRuntime = (() => { + if (process.env.DISABLE_NEW_JSX_TRANSFORM === 'true') { + return false; + } + + try { + require.resolve('react/jsx-runtime'); + return true; + } catch (e) { + return false; + } +})(); + +module.exports = babelJest.createTransformer({ + presets: [ + [ + require.resolve('babel-preset-react-app'), + { + runtime: hasJsxRuntime ? 'automatic' : 'classic', + }, + ], + ], + babelrc: false, + configFile: false, +}); diff --git a/InManageBoot-ui/config/jest/cssTransform.js b/InManageBoot-ui/config/jest/cssTransform.js new file mode 100644 index 0000000000000000000000000000000000000000..8f65114812a4e5726d2e4148cd15481c33e1cfec --- /dev/null +++ b/InManageBoot-ui/config/jest/cssTransform.js @@ -0,0 +1,14 @@ +'use strict'; + +// This is a custom Jest transformer turning style imports into empty objects. +// http://facebook.github.io/jest/docs/en/webpack.html + +module.exports = { + process() { + return 'module.exports = {};'; + }, + getCacheKey() { + // The output is always the same. + return 'cssTransform'; + }, +}; diff --git a/InManageBoot-ui/config/jest/fileTransform.js b/InManageBoot-ui/config/jest/fileTransform.js new file mode 100644 index 0000000000000000000000000000000000000000..aab67618c38b46485f28d18bd81f7125383037ed --- /dev/null +++ b/InManageBoot-ui/config/jest/fileTransform.js @@ -0,0 +1,40 @@ +'use strict'; + +const path = require('path'); +const camelcase = require('camelcase'); + +// This is a custom Jest transformer turning file imports into filenames. +// http://facebook.github.io/jest/docs/en/webpack.html + +module.exports = { + process(src, filename) { + const assetFilename = JSON.stringify(path.basename(filename)); + + if (filename.match(/\.svg$/)) { + // Based on how SVGR generates a component name: + // https://github.com/smooth-code/svgr/blob/01b194cf967347d43d4cbe6b434404731b87cf27/packages/core/src/state.js#L6 + const pascalCaseFilename = camelcase(path.parse(filename).name, { + pascalCase: true, + }); + const componentName = `Svg${pascalCaseFilename}`; + return `const React = require('react'); + module.exports = { + __esModule: true, + default: ${assetFilename}, + ReactComponent: React.forwardRef(function ${componentName}(props, ref) { + return { + $$typeof: Symbol.for('react.element'), + type: 'svg', + ref: ref, + key: null, + props: Object.assign({}, props, { + children: ${assetFilename} + }) + }; + }), + };`; + } + + return `module.exports = ${assetFilename};`; + }, +}; diff --git a/InManageBoot-ui/config/modules.js b/InManageBoot-ui/config/modules.js new file mode 100644 index 0000000000000000000000000000000000000000..d63e41d78dc7ea99156cec7d7c64ca6904c6f15c --- /dev/null +++ b/InManageBoot-ui/config/modules.js @@ -0,0 +1,134 @@ +'use strict'; + +const fs = require('fs'); +const path = require('path'); +const paths = require('./paths'); +const chalk = require('react-dev-utils/chalk'); +const resolve = require('resolve'); + +/** + * Get additional module paths based on the baseUrl of a compilerOptions object. + * + * @param {Object} options + */ +function getAdditionalModulePaths(options = {}) { + const baseUrl = options.baseUrl; + + if (!baseUrl) { + return ''; + } + + const baseUrlResolved = path.resolve(paths.appPath, baseUrl); + + // We don't need to do anything if `baseUrl` is set to `node_modules`. This is + // the default behavior. + if (path.relative(paths.appNodeModules, baseUrlResolved) === '') { + return null; + } + + // Allow the user set the `baseUrl` to `appSrc`. + if (path.relative(paths.appSrc, baseUrlResolved) === '') { + return [paths.appSrc]; + } + + // If the path is equal to the root directory we ignore it here. + // We don't want to allow importing from the root directly as source files are + // not transpiled outside of `src`. We do allow importing them with the + // absolute path (e.g. `src/Components/Button.js`) but we set that up with + // an alias. + if (path.relative(paths.appPath, baseUrlResolved) === '') { + return null; + } + + // Otherwise, throw an error. + throw new Error( + chalk.red.bold( + "Your project's `baseUrl` can only be set to `src` or `node_modules`." + + ' Create React App does not support other values at this time.' + ) + ); +} + +/** + * Get webpack aliases based on the baseUrl of a compilerOptions object. + * + * @param {*} options + */ +function getWebpackAliases(options = {}) { + const baseUrl = options.baseUrl; + + if (!baseUrl) { + return {}; + } + + const baseUrlResolved = path.resolve(paths.appPath, baseUrl); + + if (path.relative(paths.appPath, baseUrlResolved) === '') { + return { + src: paths.appSrc, + }; + } +} + +/** + * Get jest aliases based on the baseUrl of a compilerOptions object. + * + * @param {*} options + */ +function getJestAliases(options = {}) { + const baseUrl = options.baseUrl; + + if (!baseUrl) { + return {}; + } + + const baseUrlResolved = path.resolve(paths.appPath, baseUrl); + + if (path.relative(paths.appPath, baseUrlResolved) === '') { + return { + '^src/(.*)$': '/src/$1', + }; + } +} + +function getModules() { + // Check if TypeScript is setup + const hasTsConfig = fs.existsSync(paths.appTsConfig); + const hasJsConfig = fs.existsSync(paths.appJsConfig); + + if (hasTsConfig && hasJsConfig) { + throw new Error( + 'You have both a tsconfig.json and a jsconfig.json. If you are using TypeScript please remove your jsconfig.json file.' + ); + } + + let config; + + // If there's a tsconfig.json we assume it's a + // TypeScript project and set up the config + // based on tsconfig.json + if (hasTsConfig) { + const ts = require(resolve.sync('typescript', { + basedir: paths.appNodeModules, + })); + config = ts.readConfigFile(paths.appTsConfig, ts.sys.readFile).config; + // Otherwise we'll check if there is jsconfig.json + // for non TS projects. + } else if (hasJsConfig) { + config = require(paths.appJsConfig); + } + + config = config || {}; + const options = config.compilerOptions || {}; + + const additionalModulePaths = getAdditionalModulePaths(options); + + return { + additionalModulePaths: additionalModulePaths, + webpackAliases: getWebpackAliases(options), + jestAliases: getJestAliases(options), + hasTsConfig, + }; +} + +module.exports = getModules(); diff --git a/InManageBoot-ui/config/paths.js b/InManageBoot-ui/config/paths.js new file mode 100644 index 0000000000000000000000000000000000000000..69b79982b86717aedcf68920198fee31439d9533 --- /dev/null +++ b/InManageBoot-ui/config/paths.js @@ -0,0 +1,77 @@ +'use strict'; + +const path = require('path'); +const fs = require('fs'); +const getPublicUrlOrPath = require('react-dev-utils/getPublicUrlOrPath'); + +// Make sure any symlinks in the project folder are resolved: +// https://github.com/facebook/create-react-app/issues/637 +const appDirectory = fs.realpathSync(process.cwd()); +const resolveApp = relativePath => path.resolve(appDirectory, relativePath); + +// We use `PUBLIC_URL` environment variable or "homepage" field to infer +// "public path" at which the app is served. +// webpack needs to know it to put the right + + + +
+
+ + + + + + diff --git a/InManageBoot-ui/nodeserver/views/boot.html b/InManageBoot-ui/nodeserver/views/boot.html new file mode 100644 index 0000000000000000000000000000000000000000..edc173ea688f0f3222666e8b0e74611833bf07f0 --- /dev/null +++ b/InManageBoot-ui/nodeserver/views/boot.html @@ -0,0 +1,32 @@ + + + + + + + + + + + {{ title }} + + + + +
+
+ + + + + diff --git a/InManageBoot-ui/nodeserver/views/error.html b/InManageBoot-ui/nodeserver/views/error.html new file mode 100644 index 0000000000000000000000000000000000000000..2e03f043b450e72ca4354258ea31225d793df2dd --- /dev/null +++ b/InManageBoot-ui/nodeserver/views/error.html @@ -0,0 +1,12 @@ + + + + + {{status}} + + +
+

{{ message }}

+

+ + diff --git a/InManageBoot-ui/nodeserver/views/h5.html b/InManageBoot-ui/nodeserver/views/h5.html new file mode 100644 index 0000000000000000000000000000000000000000..2187e9bf27dce050b278c1129a6b3b2ed4ab6c31 --- /dev/null +++ b/InManageBoot-ui/nodeserver/views/h5.html @@ -0,0 +1,54 @@ + + + + + + + + + MegaRAC SPX + + + + + + + + + + + + + + +
+ + + + + + diff --git a/InManageBoot-ui/nodeserver/views/index.html b/InManageBoot-ui/nodeserver/views/index.html new file mode 100644 index 0000000000000000000000000000000000000000..b8b5a063c7306ada3337d96ffc591d8564322fe0 --- /dev/null +++ b/InManageBoot-ui/nodeserver/views/index.html @@ -0,0 +1,41 @@ + + + + + + + + + + {{ title }} + + + + + +
+
+ + + + diff --git a/InManageBoot-ui/nodeserver/views/login.html b/InManageBoot-ui/nodeserver/views/login.html new file mode 100644 index 0000000000000000000000000000000000000000..ea9455790bf05023559068e4c9d6cbf330521bcd --- /dev/null +++ b/InManageBoot-ui/nodeserver/views/login.html @@ -0,0 +1,20 @@ + + + + + + + + 111 + + + +
+
+ + diff --git a/InManageBoot-ui/nodeserver/views/resource.html b/InManageBoot-ui/nodeserver/views/resource.html new file mode 100644 index 0000000000000000000000000000000000000000..2a12a8b057a04867df28fba93cda6ac993158520 --- /dev/null +++ b/InManageBoot-ui/nodeserver/views/resource.html @@ -0,0 +1,34 @@ + + + + + + + + + + + {{ title }} + + + + +
+
+ + + + + + + diff --git a/InManageBoot-ui/nodeserver/views/room.html b/InManageBoot-ui/nodeserver/views/room.html new file mode 100644 index 0000000000000000000000000000000000000000..5775cbc512f0ec5e222d3af748363f2d98016be9 --- /dev/null +++ b/InManageBoot-ui/nodeserver/views/room.html @@ -0,0 +1,30 @@ + + + + + + + + + + + {{ title }} + + + +
+
+ + + + diff --git a/InManageBoot-ui/package-lock.json b/InManageBoot-ui/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..a7130d5b020f82461febcf55e14d868583c8f6b2 --- /dev/null +++ b/InManageBoot-ui/package-lock.json @@ -0,0 +1,37556 @@ +{ + "name": "ispimant", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "ispimant", + "version": "0.1.0", + "dependencies": { + "@ant-design/charts": "^1.3.4", + "@ant-design/icons": "^4.7.0", + "@ant-design/pro-layout": "^6.32.3", + "@emotion/react": "^11.7.1", + "@emotion/styled": "^11.6.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@reduxjs/toolkit": "^1.7.1", + "@svgr/webpack": "^5.5.0", + "@testing-library/jest-dom": "^5.16.1", + "@testing-library/react": "^12.1.2", + "@testing-library/user-event": "^13.5.0", + "@types/jest": "^27.4.0", + "@types/node": "^16.11.17", + "@types/react": "^17.0.38", + "@types/react-dom": "^17.0.11", + "antd": "^4.18.3", + "async-validator": "^4.0.7", + "axios": "^0.24.0", + "babel-jest": "^27.4.2", + "babel-plugin-import": "^1.13.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-plugin-transform-globalthis": "^1.0.0", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.0", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "heatmap.js": "^2.0.5", + "html-webpack-plugin": "^5.5.0", + "html2canvas": "^1.4.1", + "i18next": "^21.6.6", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "less": "^4.1.2", + "less-loader": "^10.2.0", + "lodash": "^4.17.21", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "rc-tween-one": "^3.0.3", + "react": "^17.0.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.0", + "react-dom": "^17.0.2", + "react-query": "^3.34.8", + "react-redux": "^7.2.6", + "react-refresh": "^0.11.0", + "react-router": "^6.2.1", + "react-router-dom": "^6.2.1", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "three": "^0.137.5", + "typescript": "^4.5.4", + "web-vitals": "^2.1.2", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "devDependencies": { + "@babel/core": "^7.16.7", + "@babel/plugin-proposal-class-properties": "^7.16.7", + "@babel/plugin-transform-runtime": "^7.16.8", + "@babel/preset-env": "^7.16.8", + "@babel/runtime": "^7.16.7", + "@types/lodash": "^4.14.178", + "@types/react-router": "^5.1.18", + "antd-dayjs-webpack-plugin": "^1.0.6", + "babel-eslint": "^10.1.0", + "babel-loader": "^8.2.3", + "json-server": "^0.17.0", + "simple-progress-webpack-plugin": "^2.0.0", + "webpack-bundle-analyzer": "^4.5.0" + } + }, + "node_modules/@amap/amap-jsapi-loader": { + "version": "0.0.3", + "resolved": "https://registry.npm.taobao.org/@amap/amap-jsapi-loader/download/@amap/amap-jsapi-loader-0.0.3.tgz?cache=0&sync_timestamp=1616395050347&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40amap%2Famap-jsapi-loader%2Fdownload%2F%40amap%2Famap-jsapi-loader-0.0.3.tgz", + "integrity": "sha1-XWdvFnAhPeCSfHTad0dXI+XeI4A=" + }, + "node_modules/@ant-design/charts": { + "version": "1.3.4", + "resolved": "https://registry.npmmirror.com/@ant-design/charts/download/@ant-design/charts-1.3.4.tgz", + "integrity": "sha512-7XHxYRMbEIy4FJDvNDmwW9qUUuVafWPhvWLSI/WyegDAir58m5s1lXh6Zp0l6lkdMBXywlWoP5XtRbpgY1opmg==", + "dependencies": { + "@ant-design/flowchart": "^1.0.2", + "@ant-design/graphs": "^1.0.1", + "@ant-design/maps": "^0.0.3", + "@ant-design/plots": "^1.0.2" + }, + "peerDependencies": { + "@ant-design/icons": "^4.6.0", + "antd": "^4.6.3", + "lodash": "^4.17.20", + "react": ">=16.8.4", + "react-dom": ">=16.8.4" + } + }, + "node_modules/@ant-design/colors": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/@ant-design/colors/download/@ant-design/colors-6.0.0.tgz", + "integrity": "sha1-m5NmJXz/zEfbQrnQIDu1ksE8Apg=", + "dependencies": { + "@ctrl/tinycolor": "^3.4.0" + } + }, + "node_modules/@ant-design/flowchart": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/@ant-design/flowchart/download/@ant-design/flowchart-1.0.7.tgz", + "integrity": "sha512-K276+N4iMpwrnR9LVtBYMKrk+V+SLYIGq/CotI4HpMAm2FsCeFeWC1ttxbhmJ2FwDnpfP9gQgHSgJF/oLtUxCg==", + "dependencies": { + "@antv/layout": "^0.1.17", + "@antv/x6": "^1.25.0", + "@antv/x6-react-components": "^1.1.13", + "@antv/x6-react-shape": "^1.4.5", + "@antv/xflow": "^1.0.0", + "react-color": "2.17.3", + "react-use": "17.3.1" + }, + "peerDependencies": { + "@ant-design/icons": "^4.6.0", + "antd": "^4.6.3", + "lodash": "^4.17.20", + "react": ">=16.8.4", + "react-dom": ">=16.8.4" + } + }, + "node_modules/@ant-design/graphs": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/@ant-design/graphs/download/@ant-design/graphs-1.0.6.tgz", + "integrity": "sha512-UbpvUO3Hj7JUPcqjMufMEwYGOzBy/mOj3eI97mL1ogYERvpFQ5MWaCcyykhykyyCvBILJC1Lhfl4JLCBOm7v6Q==", + "dependencies": { + "@antv/g6": "^4.2.4", + "@antv/util": "^2.0.9", + "react-content-loader": "^5.0.4" + }, + "peerDependencies": { + "react": ">=16.8.4", + "react-dom": ">=16.8.4" + } + }, + "node_modules/@ant-design/icons": { + "version": "4.7.0", + "resolved": "https://registry.npmmirror.com/@ant-design/icons/download/@ant-design/icons-4.7.0.tgz?cache=0&sync_timestamp=1632478665145&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40ant-design%2Ficons%2Fdownload%2F%40ant-design%2Ficons-4.7.0.tgz", + "integrity": "sha1-jDy+ClVrqSr13H0ecMCyW1F5rw8=", + "dependencies": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons-svg": "^4.2.1", + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-util": "^5.9.4" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@ant-design/icons-svg": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/@ant-design/icons-svg/download/@ant-design/icons-svg-4.2.1.tgz", + "integrity": "sha1-hjDajrRHGkqr2u19H/apfcss8Fo=" + }, + "node_modules/@ant-design/maps": { + "version": "0.0.3", + "resolved": "https://registry.npmmirror.com/@ant-design/maps/download/@ant-design/maps-0.0.3.tgz", + "integrity": "sha512-XarzMFcmvLtwaIKgboHWoKkpdrSTGtZU898GmVUP1o3V3eWNfEE+Al3yEV2vauM1OxRbVLc1vAelKVf1nAHtuw==", + "dependencies": { + "@antv/l7plot": "^0.0.3-alpha.5", + "@antv/util": "^2.0.9", + "react-content-loader": "^5.0.4" + }, + "peerDependencies": { + "react": ">=16.8.4", + "react-dom": ">=16.8.4" + } + }, + "node_modules/@ant-design/plots": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/@ant-design/plots/download/@ant-design/plots-1.0.7.tgz", + "integrity": "sha512-AeYI1yDZgn7AEma3GLxQiaXsENhkTl1fCr4NUI+4Sxh891XhZ1u2iqVql8DdwfBAdpVaeR+dq3E1bYXUs0uqNQ==", + "dependencies": { + "@antv/g2plot": "^2.2.11", + "react-content-loader": "^5.0.4" + }, + "peerDependencies": { + "react": ">=16.8.4", + "react-dom": ">=16.8.4" + } + }, + "node_modules/@ant-design/pro-layout": { + "version": "6.32.3", + "resolved": "https://registry.npmmirror.com/@ant-design/pro-layout/download/@ant-design/pro-layout-6.32.3.tgz", + "integrity": "sha512-O5X0+9gyhz3ArtkDeE+emPjHk1RH44D/+zW9Gb41XccGbcWOp3NGmDvjozdpkL7HRsoQTni3ueN7IGepJUJyOQ==", + "dependencies": { + "@ant-design/icons": "^4.0.0", + "@ant-design/pro-provider": "1.5.5", + "@ant-design/pro-utils": "1.32.5", + "@babel/runtime": "^7.16.3", + "@umijs/route-utils": "^2.0.1", + "@umijs/ssr-darkreader": "^4.9.44", + "@umijs/use-params": "^1.0.9", + "classnames": "^2.2.6", + "lodash.merge": "^4.6.2", + "omit.js": "^2.0.2", + "path-to-regexp": "2.4.0", + "rc-resize-observer": "^1.1.0", + "rc-util": "^5.0.6", + "swr": "1.1.0", + "unstated-next": "^1.1.0", + "use-json-comparison": "^1.0.3", + "use-media-antd-query": "^1.0.6", + "warning": "^4.0.3" + }, + "peerDependencies": { + "antd": "4.x", + "react": ">=16.9.0" + } + }, + "node_modules/@ant-design/pro-layout/node_modules/path-to-regexp": { + "version": "2.4.0", + "resolved": "https://registry.npmmirror.com/path-to-regexp/download/path-to-regexp-2.4.0.tgz", + "integrity": "sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==" + }, + "node_modules/@ant-design/pro-provider": { + "version": "1.5.5", + "resolved": "https://registry.npmmirror.com/@ant-design/pro-provider/download/@ant-design/pro-provider-1.5.5.tgz", + "integrity": "sha512-gZzTG+WTNj6xswD/iLSLw8LH+7VNQKYuNcV5KmMqHrSlyimusMaJqBg+pMcD5PVLEe1pdm1lHm72t3qsRWtMNg==", + "dependencies": { + "@babel/runtime": "^7.16.3", + "rc-util": "^5.0.1", + "swr": "1.1.0" + }, + "peerDependencies": { + "antd": "4.x", + "react": ">=16.9.0" + } + }, + "node_modules/@ant-design/pro-utils": { + "version": "1.32.5", + "resolved": "https://registry.npmmirror.com/@ant-design/pro-utils/download/@ant-design/pro-utils-1.32.5.tgz", + "integrity": "sha512-cw4h+xrYedKUVcLb2s+bHHRO28z+ZLjEylmSm+S9WlYp0YS7NjHO5HbshYzLdOusz1p9QnKnehcmu4BQTy59HQ==", + "dependencies": { + "@ant-design/icons": "^4.3.0", + "@ant-design/pro-provider": "1.5.5", + "@babel/runtime": "^7.16.3", + "classnames": "^2.2.6", + "moment": "^2.27.0", + "rc-util": "^5.0.6", + "react-sortable-hoc": "^2.0.0", + "swr": "1.1.0" + }, + "peerDependencies": { + "antd": "4.x", + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@ant-design/react-slick": { + "version": "0.28.4", + "resolved": "https://registry.nlark.com/@ant-design/react-slick/download/@ant-design/react-slick-0.28.4.tgz?cache=0&sync_timestamp=1629256314194&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40ant-design%2Freact-slick%2Fdownload%2F%40ant-design%2Freact-slick-0.28.4.tgz", + "integrity": "sha1-iylrh618euh38qUnuBt+69ndKak=", + "dependencies": { + "@babel/runtime": "^7.10.4", + "classnames": "^2.2.5", + "json2mq": "^0.2.0", + "lodash": "^4.17.21", + "resize-observer-polyfill": "^1.5.0" + }, + "peerDependencies": { + "react": ">=16.9.0" + } + }, + "node_modules/@antv/adjust": { + "version": "0.2.3", + "resolved": "https://registry.npm.taobao.org/@antv/adjust/download/@antv/adjust-0.2.3.tgz", + "integrity": "sha1-w4hKaAwyZMwSXX8qtTmOihwLlAE=", + "dependencies": { + "@antv/util": "~2.0.0", + "tslib": "^1.10.0" + } + }, + "node_modules/@antv/adjust/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmmirror.com/tslib/download/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@antv/algorithm": { + "version": "0.1.21", + "resolved": "https://registry.npmmirror.com/@antv/algorithm/download/@antv/algorithm-0.1.21.tgz", + "integrity": "sha512-R2BsqMoG2uwrV9778WKhGhVNv05sXRcV316R5capDTOutO9nFyQrsz52/ufvIYqaNY+k0Rv2XjOHWytJRW72Eg==", + "dependencies": { + "@antv/util": "^2.0.13", + "tslib": "^2.0.0" + } + }, + "node_modules/@antv/async-hook": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/@antv/async-hook/download/@antv/async-hook-2.1.0.tgz", + "integrity": "sha1-F/V6auXpxVraw836x9RBJYw/mus=", + "dependencies": { + "async": "^3.1.1" + } + }, + "node_modules/@antv/async-hook/node_modules/async": { + "version": "3.2.3", + "resolved": "https://registry.npmmirror.com/async/download/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + }, + "node_modules/@antv/attr": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/@antv/attr/download/@antv/attr-0.3.2.tgz", + "integrity": "sha1-5YZrZIcMYvOpwluKYfZUuiv9oFE=", + "dependencies": { + "@antv/color-util": "^2.0.1", + "@antv/util": "~2.0.0", + "tslib": "^1.10.0" + } + }, + "node_modules/@antv/attr/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmmirror.com/tslib/download/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@antv/color-util": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/@antv/color-util/download/@antv/color-util-2.0.6.tgz", + "integrity": "sha1-XhKbuc4/K5MJtSECs9ySlDDMwBY=", + "dependencies": { + "@antv/util": "^2.0.9", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/component": { + "version": "0.8.21", + "resolved": "https://registry.npmmirror.com/@antv/component/download/@antv/component-0.8.21.tgz", + "integrity": "sha512-NP19MzOns2tXwH6LT0m3+EzOBPEgWGf3axraCZhQffSHg2RMnuk0LmeDmk6h3ttDe1dgNn01n53v+bQxe+PiDw==", + "dependencies": { + "@antv/color-util": "^2.0.3", + "@antv/dom-util": "~2.0.1", + "@antv/g-base": "0.5.6", + "@antv/matrix-util": "^3.1.0-beta.1", + "@antv/path-util": "~2.0.7", + "@antv/scale": "~0.3.1", + "@antv/util": "~2.0.0", + "fecha": "~4.2.0", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/component/node_modules/@antv/g-base": { + "version": "0.5.6", + "resolved": "https://registry.npmmirror.com/@antv/g-base/download/@antv/g-base-0.5.6.tgz?cache=0&sync_timestamp=1636459031666&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Fg-base%2Fdownload%2F%40antv%2Fg-base-0.5.6.tgz", + "integrity": "sha1-2W2l+/bF+LBzBydR4V5e7HCzk/w=", + "dependencies": { + "@antv/event-emitter": "^0.1.1", + "@antv/g-math": "^0.1.6", + "@antv/matrix-util": "^3.1.0-beta.1", + "@antv/path-util": "~2.0.5", + "@antv/util": "~2.0.0", + "@types/d3-timer": "^2.0.0", + "d3-ease": "^1.0.5", + "d3-interpolate": "^1.3.2", + "d3-timer": "^1.0.9", + "detect-browser": "^5.1.0", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/coord": { + "version": "0.3.1", + "resolved": "https://registry.nlark.com/@antv/coord/download/@antv/coord-0.3.1.tgz", + "integrity": "sha1-mC4mHYoeBqGY61GOp6zCDth1oBk=", + "dependencies": { + "@antv/matrix-util": "^3.1.0-beta.2", + "@antv/util": "~2.0.12", + "tslib": "^2.1.0" + } + }, + "node_modules/@antv/dom-util": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/@antv/dom-util/download/@antv/dom-util-2.0.3.tgz?cache=0&sync_timestamp=1636458900516&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Fdom-util%2Fdownload%2F%40antv%2Fdom-util-2.0.3.tgz", + "integrity": "sha1-y9FYsciODopNhlhxpZabEZBVT/U=", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/event-emitter": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/@antv/event-emitter/download/@antv/event-emitter-0.1.2.tgz", + "integrity": "sha1-oXt8uG5tBxiA3Gv7IydW+IYk7Lw=" + }, + "node_modules/@antv/g-base": { + "version": "0.5.9", + "resolved": "https://registry.npmmirror.com/@antv/g-base/download/@antv/g-base-0.5.9.tgz?cache=0&sync_timestamp=1636459031666&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Fg-base%2Fdownload%2F%40antv%2Fg-base-0.5.9.tgz", + "integrity": "sha1-WNDhHYUVetoUCPvfJPT0aPQOWc0=", + "dependencies": { + "@antv/event-emitter": "^0.1.1", + "@antv/g-math": "^0.1.6", + "@antv/matrix-util": "^3.1.0-beta.1", + "@antv/path-util": "~2.0.5", + "@antv/util": "~2.0.0", + "@types/d3-timer": "^2.0.0", + "d3-ease": "^1.0.5", + "d3-interpolate": "^1.3.2", + "d3-timer": "^1.0.9", + "detect-browser": "^5.1.0", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/g-canvas": { + "version": "0.5.12", + "resolved": "https://registry.npmmirror.com/@antv/g-canvas/download/@antv/g-canvas-0.5.12.tgz", + "integrity": "sha1-L8QNztaZTwdPIjQeZdVve71Sdfc=", + "dependencies": { + "@antv/g-base": "^0.5.3", + "@antv/g-math": "^0.1.6", + "@antv/matrix-util": "^3.1.0-beta.1", + "@antv/path-util": "~2.0.5", + "@antv/util": "~2.0.0", + "gl-matrix": "^3.0.0", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/g-math": { + "version": "0.1.7", + "resolved": "https://registry.npmmirror.com/@antv/g-math/download/@antv/g-math-0.1.7.tgz", + "integrity": "sha1-bsJ2kmn3zLZ+WBQNVznfdARswE4=", + "dependencies": { + "@antv/util": "~2.0.0", + "gl-matrix": "^3.0.0" + } + }, + "node_modules/@antv/g-svg": { + "version": "0.5.6", + "resolved": "https://registry.npmmirror.com/@antv/g-svg/download/@antv/g-svg-0.5.6.tgz", + "integrity": "sha1-cLL6mAxDGzmtPFtLU+NqHWCVfWU=", + "dependencies": { + "@antv/g-base": "^0.5.3", + "@antv/g-math": "^0.1.6", + "@antv/util": "~2.0.0", + "detect-browser": "^5.0.0", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/g-webgpu": { + "version": "0.5.5", + "resolved": "https://registry.nlark.com/@antv/g-webgpu/download/@antv/g-webgpu-0.5.5.tgz", + "integrity": "sha1-AD1BFFPtA+fdkWvWxtsmorU9GZE=", + "dependencies": { + "@antv/g-webgpu-core": "^0.5.5", + "@antv/g-webgpu-engine": "^0.5.5", + "@webgpu/types": "^0.0.31", + "gl-matrix": "^3.1.0", + "gl-vec2": "^1.3.0", + "hammerjs": "^2.0.8", + "inversify": "^5.0.1", + "inversify-inject-decorators": "^3.1.0", + "polyline-miter-util": "^1.0.1", + "polyline-normals": "^2.0.2", + "probe.gl": "^3.1.1", + "reflect-metadata": "^0.1.13" + } + }, + "node_modules/@antv/g-webgpu-core": { + "version": "0.5.6", + "resolved": "https://registry.npm.taobao.org/@antv/g-webgpu-core/download/@antv/g-webgpu-core-0.5.6.tgz", + "integrity": "sha1-aM3gtdC0S1eUNxwlI2gvRzTaPGw=", + "dependencies": { + "eventemitter3": "^4.0.0", + "gl-matrix": "^3.1.0", + "inversify": "^5.0.1", + "inversify-inject-decorators": "^3.1.0", + "probe.gl": "^3.1.1", + "reflect-metadata": "^0.1.13" + } + }, + "node_modules/@antv/g-webgpu-engine": { + "version": "0.5.6", + "resolved": "https://registry.nlark.com/@antv/g-webgpu-engine/download/@antv/g-webgpu-engine-0.5.6.tgz", + "integrity": "sha1-vnwb+OSxgi1yowLWKANDReBXe70=", + "dependencies": { + "@antv/g-webgpu-core": "^0.5.6", + "@webgpu/glslang": "^0.0.15", + "@webgpu/types": "^0.0.31", + "gl-matrix": "^3.1.0", + "hammerjs": "^2.0.8", + "inversify": "^5.0.1", + "inversify-inject-decorators": "^3.1.0", + "probe.gl": "^3.1.1", + "reflect-metadata": "^0.1.13", + "regl": "^1.3.11" + } + }, + "node_modules/@antv/g2": { + "version": "4.1.37", + "resolved": "https://registry.npmmirror.com/@antv/g2/download/@antv/g2-4.1.37.tgz", + "integrity": "sha512-0zXF6Z8MkRo9DukOq29KKIcWzhWZA42xUYC+okBBl8VWuVh46pJ2LCMGjUGQh6k0PLnCGVJOp/Db7fWtqWgWeA==", + "dependencies": { + "@antv/adjust": "^0.2.1", + "@antv/attr": "^0.3.1", + "@antv/color-util": "^2.0.2", + "@antv/component": "^0.8.19", + "@antv/coord": "^0.3.0", + "@antv/dom-util": "^2.0.2", + "@antv/event-emitter": "~0.1.0", + "@antv/g-base": "~0.5.6", + "@antv/g-canvas": "~0.5.10", + "@antv/g-svg": "~0.5.6", + "@antv/matrix-util": "^3.1.0-beta.3", + "@antv/path-util": "^2.0.15", + "@antv/scale": "^0.3.14", + "@antv/util": "~2.0.5", + "tslib": "^2.0.0" + } + }, + "node_modules/@antv/g2plot": { + "version": "2.4.5", + "resolved": "https://registry.npmmirror.com/@antv/g2plot/download/@antv/g2plot-2.4.5.tgz", + "integrity": "sha512-djEmNqpJgDI3d06igBoCEzS8sr/Hp8mII2SXrhHn+Fuo8VtwkVIlDSzqIPbKea6CR5KfAynKYa3FoR9lsdzDSw==", + "dependencies": { + "@antv/event-emitter": "^0.1.2", + "@antv/g2": "^4.1.26", + "d3-hierarchy": "^2.0.0", + "d3-regression": "^1.3.5", + "fmin": "^0.0.2", + "pdfast": "^0.2.0", + "size-sensor": "^1.0.1", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/g6": { + "version": "4.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6/download/@antv/g6-4.5.2.tgz", + "integrity": "sha512-ExBQELwDPcixjeza3cOhUCW8ajLvWFJy4mW+J+WiSpvLF44WE1zNAJOWyNXbqPk241WsThyBV3wffvI4HX6zrw==", + "dependencies": { + "@antv/g6-pc": "0.5.2" + } + }, + "node_modules/@antv/g6-core": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6-core/download/@antv/g6-core-0.5.2.tgz", + "integrity": "sha512-4aYJXLDV75ezkmlITQh4y60Gasua8VpUQdh1BSHeiKTrYS3H9oY48DKXby+sTNyIzSX+8BA/mGhpNvGgIO46+g==", + "dependencies": { + "@antv/algorithm": "^0.1.8", + "@antv/dom-util": "^2.0.1", + "@antv/event-emitter": "~0.1.0", + "@antv/g-base": "^0.5.1", + "@antv/g-math": "^0.1.1", + "@antv/matrix-util": "^3.1.0-beta.3", + "@antv/path-util": "^2.0.3", + "@antv/util": "~2.0.5", + "ml-matrix": "^6.5.0", + "tslib": "^2.1.0" + } + }, + "node_modules/@antv/g6-element": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6-element/download/@antv/g6-element-0.5.2.tgz", + "integrity": "sha512-OYYXl6+sWjxhrxLbLsIwpFX/a+TdCsOMQwApNQ8BDkpF3wlbW33F5cRh8UItrkXN7sxM9Q+5q6epRKWd9fljFw==", + "dependencies": { + "@antv/g-base": "^0.5.1", + "@antv/g6-core": "0.5.2", + "@antv/util": "~2.0.5" + } + }, + "node_modules/@antv/g6-pc": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6-pc/download/@antv/g6-pc-0.5.2.tgz", + "integrity": "sha512-Xu45dCbqPqBozkTKEvKGLt41Lyt24bBXyA62Gt4rzhpsGrqPs7s2aBiW9iIaSXC0Jvx8Qe+7ISPtUMbMuxt0oA==", + "dependencies": { + "@ant-design/colors": "^4.0.5", + "@antv/algorithm": "^0.1.8", + "@antv/dom-util": "^2.0.1", + "@antv/event-emitter": "~0.1.0", + "@antv/g-base": "^0.5.1", + "@antv/g-canvas": "^0.5.2", + "@antv/g-math": "^0.1.1", + "@antv/g-svg": "^0.5.1", + "@antv/g6-core": "0.5.2", + "@antv/g6-element": "0.5.2", + "@antv/g6-plugin": "0.5.2", + "@antv/hierarchy": "^0.6.7", + "@antv/layout": "^0.1.22", + "@antv/matrix-util": "^3.1.0-beta.3", + "@antv/path-util": "^2.0.3", + "@antv/util": "~2.0.5", + "color": "^3.1.3", + "d3-force": "^2.0.1", + "dagre": "^0.8.5", + "insert-css": "^2.0.0", + "ml-matrix": "^6.5.0" + } + }, + "node_modules/@antv/g6-pc/node_modules/@ant-design/colors": { + "version": "4.0.5", + "resolved": "https://registry.npm.taobao.org/@ant-design/colors/download/@ant-design/colors-4.0.5.tgz", + "integrity": "sha1-19EA11Rcyo9iSVRgSmiS/Ei6Wq4=", + "dependencies": { + "tinycolor2": "^1.4.1" + } + }, + "node_modules/@antv/g6-plugin": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6-plugin/download/@antv/g6-plugin-0.5.2.tgz", + "integrity": "sha512-Pp6gDMNgK2RsWgmwCfzlAw8J5uneXg+Z40cMcKmEqTvwQ1iAdC+lgqW7C8lmd0Jzl8JbuT34UEc4EoVXtjK2gg==", + "dependencies": { + "@antv/dom-util": "^2.0.2", + "@antv/g-base": "^0.5.1", + "@antv/g-canvas": "^0.5.2", + "@antv/g-svg": "^0.5.2", + "@antv/g6-core": "0.5.2", + "@antv/matrix-util": "^3.1.0-beta.3", + "@antv/scale": "^0.3.4", + "@antv/util": "^2.0.9", + "insert-css": "^2.0.0" + } + }, + "node_modules/@antv/geo-coord": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/@antv/geo-coord/download/@antv/geo-coord-1.0.8.tgz?cache=0&sync_timestamp=1636451808425&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Fgeo-coord%2Fdownload%2F%40antv%2Fgeo-coord-1.0.8.tgz", + "integrity": "sha1-VFoghTVCU0myHHii38KpskA2lmc=", + "dependencies": { + "@antv/gl-matrix": "^2.7.1", + "@antv/util": "~2.0.1" + } + }, + "node_modules/@antv/gl-matrix": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/@antv/gl-matrix/download/@antv/gl-matrix-2.7.1.tgz", + "integrity": "sha1-rLjjf3qz3wE0WrpDcteUK+QuuhQ=" + }, + "node_modules/@antv/hierarchy": { + "version": "0.6.8", + "resolved": "https://registry.nlark.com/@antv/hierarchy/download/@antv/hierarchy-0.6.8.tgz", + "integrity": "sha1-t3xJCpwt1toYbLrO4OeIe4wbP6Q=", + "dependencies": { + "@antv/util": "^2.0.7" + } + }, + "node_modules/@antv/l7": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7/download/@antv/l7-2.6.35.tgz", + "integrity": "sha512-+P2EPBCucw5SuT/U9FLZLziXHKMXhX6uqdGlgekAmOkdZMedEDxbQlsRsFbCJ/W2Mv4aFgx2Yh6t3tQesO6APQ==", + "dependencies": { + "@antv/l7-component": "^2.6.35", + "@antv/l7-core": "^2.6.35", + "@antv/l7-layers": "^2.6.35", + "@antv/l7-maps": "^2.6.35", + "@antv/l7-scene": "^2.6.35", + "@antv/l7-source": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7" + } + }, + "node_modules/@antv/l7-component": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-component/download/@antv/l7-component-2.6.35.tgz", + "integrity": "sha512-Q6N2/9028w/HGNkH6estNcpxd4DJJdF6PheUFnY2LGozybYRYGry63jRtY9KpFiEkyTJrax/9KjK7dXs2+ABFA==", + "dependencies": { + "@antv/l7-core": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "eventemitter3": "^4.0.0", + "inversify": "^5.0.1", + "reflect-metadata": "^0.1.13" + } + }, + "node_modules/@antv/l7-core": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-core/download/@antv/l7-core-2.6.35.tgz", + "integrity": "sha512-/vzuRayqazYNoN241XwjSv5BNbwze3nWg5Uxd0Vlb1UB4h7SGiQ0LjBCmUlauOT+2HRJ7GE40TjSBmMyjmHU6A==", + "dependencies": { + "@antv/async-hook": "^2.1.0", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "ajv": "^6.10.2", + "element-resize-event": "^3.0.3", + "eventemitter3": "^4.0.0", + "gl-matrix": "^3.1.0", + "inversify": "^5.0.1", + "inversify-inject-decorators": "^3.1.0", + "l7-tiny-sdf": "^0.0.2", + "l7hammerjs": "^0.0.6", + "lodash": "^4.17.15", + "reflect-metadata": "^0.1.13", + "viewport-mercator-project": "^6.2.1" + } + }, + "node_modules/@antv/l7-layers": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-layers/download/@antv/l7-layers-2.6.35.tgz", + "integrity": "sha512-oMoMyC3tsCwnFQkfBXMH/Q7v2InBAvS6oO6SrZJM31RwmVsuqKCJINB8Q3AhjDdJDOKc5b1rPIpFyNldIN04tg==", + "dependencies": { + "@antv/geo-coord": "^1.0.8", + "@antv/l7-core": "^2.6.35", + "@antv/l7-source": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "@mapbox/martini": "^0.2.0", + "@turf/meta": "^6.0.2", + "d3-array": "1", + "d3-color": "^1.4.0", + "d3-scale": "2", + "earcut": "^2.2.1", + "eventemitter3": "^4.0.0", + "extrude-polyline": "^1.0.6", + "gl-matrix": "^3.1.0", + "gl-vec2": "^1.3.0", + "inversify": "^5.0.1", + "lodash": "^4.17.15", + "merge-json-schemas": "1.0.0", + "polyline-miter-util": "^1.0.1", + "reflect-metadata": "^0.1.13" + } + }, + "node_modules/@antv/l7-map": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-map/download/@antv/l7-map-2.6.35.tgz", + "integrity": "sha512-fWGDDZRrZIqOqFdHw2wd7p32UeQwxnVHZFGgGnN3NPesr9lXYe3lQeKhZKa063jcsCjjZxAIzo6Mzba+/C6b2Q==", + "dependencies": { + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/unitbezier": "^0.0.0", + "eventemitter3": "^4.0.4", + "lodash": "^4.17.15" + } + }, + "node_modules/@antv/l7-maps": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-maps/download/@antv/l7-maps-2.6.35.tgz", + "integrity": "sha512-TA4ICd6k93uFmRXc2S9pTvG3rmlyyKP+4w4TC8IkfzCpJ/A4nvWaN67/6dn8QaYBHMjKZcvAikoTkO+jI6f40w==", + "dependencies": { + "@amap/amap-jsapi-loader": "^0.0.3", + "@antv/l7-core": "^2.6.35", + "@antv/l7-map": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "@types/amap-js-api": "^1.4.6", + "@types/mapbox-gl": "^1.11.2", + "gl-matrix": "^3.1.0", + "inversify": "^5.0.1", + "mapbox-gl": "^1.2.1", + "reflect-metadata": "^0.1.13", + "viewport-mercator-project": "^6.2.1" + } + }, + "node_modules/@antv/l7-renderer": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-renderer/download/@antv/l7-renderer-2.6.35.tgz", + "integrity": "sha512-wI86mtu1vXX+AtsuV+2JG28bI3AL6FplMXamrScN4zmuQab8mLtLlm/sLt1EmS05+uLvJVLdXRnd7cEDOhxFog==", + "dependencies": { + "@antv/l7-core": "^2.6.35", + "@babel/runtime": "^7.7.7", + "inversify": "^5.0.1", + "l7regl": "^0.0.16", + "lodash": "^4.17.15", + "reflect-metadata": "^0.1.13" + } + }, + "node_modules/@antv/l7-scene": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-scene/download/@antv/l7-scene-2.6.35.tgz", + "integrity": "sha512-gyx2euqizsfWYd95Ku+EdA7QURfBabMKAnDCyudOJwKVSfej5Bk+UTLum6rc/R9LW+jTHdq2JEk65A14BgRBEw==", + "dependencies": { + "@antv/l7-component": "^2.6.35", + "@antv/l7-core": "^2.6.35", + "@antv/l7-layers": "^2.6.35", + "@antv/l7-maps": "^2.6.35", + "@antv/l7-renderer": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "inversify": "^5.0.1", + "mapbox-gl": "^1.2.1", + "reflect-metadata": "^0.1.13" + } + }, + "node_modules/@antv/l7-source": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-source/download/@antv/l7-source-2.6.35.tgz", + "integrity": "sha512-EBvcEqWC7gUtqD1CYSfcZ28toRu6Go2bnBV4YznyHg8cecI4FI77qYkuG2BhIsSe3e8SWBpqHpz+Hs3nf38tPw==", + "dependencies": { + "@antv/async-hook": "^2.1.0", + "@antv/l7-core": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "@mapbox/geojson-rewind": "^0.4.0", + "@turf/helpers": "^6.1.4", + "@turf/invariant": "^6.1.2", + "@turf/meta": "^6.0.2", + "d3-dsv": "^1.1.1", + "d3-hexbin": "^0.2.2", + "eventemitter3": "^4.0.0", + "inversify": "^5.0.1", + "lodash": "^4.17.15", + "reflect-metadata": "^0.1.13", + "supercluster": "^7.0.0" + } + }, + "node_modules/@antv/l7-utils": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-utils/download/@antv/l7-utils-2.6.35.tgz", + "integrity": "sha512-hF9CMwuD0ato2toTYB/ctmE0o3VAMgMgtE8jE/Nbr8gQ4PV5cVrJzMNAK6mblbCOH0mNkG4ucFil6nPGLJUMPA==", + "dependencies": { + "@babel/runtime": "^7.7.7", + "@turf/helpers": "^6.1.4", + "d3-color": "^1.4.0" + } + }, + "node_modules/@antv/l7plot": { + "version": "0.0.3", + "resolved": "https://registry.npmmirror.com/@antv/l7plot/download/@antv/l7plot-0.0.3.tgz", + "integrity": "sha512-OBu6j6x6tWCCQKebjSXZnwil8cbAjXNbDPSjj4Eo3WAOayIpP3SCiQjZfBR2TGBdXuoYnM1x3jCmSoqUv2rrUQ==", + "dependencies": { + "@antv/event-emitter": "^0.1.2", + "@antv/l7": "^2.6.25", + "@antv/l7plot-component": "^0.0.3-alpha.5", + "@antv/util": "^2.0.13", + "lodash-es": "^4.17.21", + "topojson-client": "^3.1.0" + } + }, + "node_modules/@antv/l7plot-component": { + "version": "0.0.3-alpha.6", + "resolved": "https://registry.npmmirror.com/@antv/l7plot-component/download/@antv/l7plot-component-0.0.3-alpha.6.tgz", + "integrity": "sha512-hkKwmVfo/dSIow3xP3kApyDCngudJABZIsOP9MTNh+FSUv6rBBgUWjbj1g+Q0SAn0kXIrkbLc1Nc4ztRmKbjFg==", + "dependencies": { + "@antv/dom-util": "^2.0.3", + "@antv/util": "^2.0.14" + } + }, + "node_modules/@antv/layout": { + "version": "0.1.31", + "resolved": "https://registry.npmmirror.com/@antv/layout/download/@antv/layout-0.1.31.tgz", + "integrity": "sha512-iz9i19dOJGiZr5xBWI5sfG+2K3QVMNAGOBrbjWKH2RGLvGpf2TSFySidhz0siDrcQA46cDsjLmGstezQdgeGzA==", + "dependencies": { + "@antv/g-webgpu": "0.5.5", + "@dagrejs/graphlib": "2.1.4", + "d3-force": "^2.0.1", + "ml-matrix": "^6.5.0" + } + }, + "node_modules/@antv/matrix-util": { + "version": "3.1.0-beta.3", + "resolved": "https://registry.npmmirror.com/@antv/matrix-util/download/@antv/matrix-util-3.1.0-beta.3.tgz", + "integrity": "sha1-4GHej6e+BGBaFVxpzFzpCC7t3e4=", + "license": "ISC", + "dependencies": { + "@antv/util": "^2.0.9", + "gl-matrix": "^3.4.3", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/path-util": { + "version": "2.0.15", + "resolved": "https://registry.npmmirror.com/@antv/path-util/download/@antv/path-util-2.0.15.tgz", + "integrity": "sha1-pvaR38i3vOW+fwqrtb1hSWQyVjE=", + "license": "ISC", + "dependencies": { + "@antv/matrix-util": "^3.0.4", + "@antv/util": "^2.0.9", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/path-util/node_modules/@antv/matrix-util": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/@antv/matrix-util/download/@antv/matrix-util-3.0.4.tgz", + "integrity": "sha1-6hPxWKovtLovuNa2tWHsRn6jrCA=", + "dependencies": { + "@antv/util": "^2.0.9", + "gl-matrix": "^3.3.0", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/scale": { + "version": "0.3.14", + "resolved": "https://registry.npmmirror.com/@antv/scale/download/@antv/scale-0.3.14.tgz", + "integrity": "sha1-Bxj4ZRNo5cmNtWEgZRMqjIu83kg=", + "license": "MIT", + "dependencies": { + "@antv/util": "~2.0.3", + "fecha": "~4.2.0", + "tslib": "^2.0.0" + } + }, + "node_modules/@antv/util": { + "version": "2.0.17", + "resolved": "https://registry.npmmirror.com/@antv/util/download/@antv/util-2.0.17.tgz?cache=0&sync_timestamp=1636447902105&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Futil%2Fdownload%2F%40antv%2Futil-2.0.17.tgz", + "integrity": "sha1-6O9CrKeJKBWyKSafPdEMazx1l6k=", + "dependencies": { + "csstype": "^3.0.8", + "tslib": "^2.0.3" + } + }, + "node_modules/@antv/x6": { + "version": "1.29.6", + "resolved": "https://registry.npmmirror.com/@antv/x6/download/@antv/x6-1.29.6.tgz", + "integrity": "sha512-orsUj61ZHSNf5iMcIRXZvoIOkQwh3xCeu6iJ/jkzrJ0BZgNUjrhyIBLGZVcfY5LZw14vxK81OH0b8v+cErds3w==", + "dependencies": { + "csstype": "^3.0.3", + "jquery": "^3.5.1", + "jquery-mousewheel": "^3.1.13", + "lodash-es": "^4.17.15", + "mousetrap": "^1.6.5", + "utility-types": "^3.10.0" + } + }, + "node_modules/@antv/x6-react-components": { + "version": "1.1.15", + "resolved": "https://registry.npmmirror.com/@antv/x6-react-components/download/@antv/x6-react-components-1.1.15.tgz", + "integrity": "sha512-tXUak5CPuZLIA0fVBSM2vZ+TxxoEGBcokr0J69e7H0G3WIutDf6J6RkNeRGuKvcW8O1Lef1jiBGSLLjlrRXf0g==", + "dependencies": { + "clamp": "^1.0.1", + "classnames": "^2.2.6", + "rc-dropdown": "^3.0.0-alpha.0", + "rc-util": "^4.15.7", + "react-color": "^2.17.3", + "react-resize-detector": "^6.6.4", + "ua-parser-js": "^0.7.20" + }, + "peerDependencies": { + "antd": ">=4.4.2", + "react": ">=16.8.6 || >=17.0.0", + "react-dom": ">=16.8.6 || >=17.0.0" + } + }, + "node_modules/@antv/x6-react-components/node_modules/rc-util": { + "version": "4.21.1", + "resolved": "https://registry.npmmirror.com/rc-util/download/rc-util-4.21.1.tgz", + "integrity": "sha1-iGAtDDGFAgqhBT2aHnDqwWG+ywU=", + "dependencies": { + "add-dom-event-listener": "^1.1.0", + "prop-types": "^15.5.10", + "react-is": "^16.12.0", + "react-lifecycles-compat": "^3.0.4", + "shallowequal": "^1.1.0" + } + }, + "node_modules/@antv/x6-react-components/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz", + "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=" + }, + "node_modules/@antv/x6-react-shape": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/@antv/x6-react-shape/download/@antv/x6-react-shape-1.6.0.tgz", + "integrity": "sha512-sz5sEYUZq9Cm0DpajbPL21N21gowAeMDHfemGuzaVI5Ud07/JS6393spaopcqljVQAY8r7qL+jxxQnWP8hDIBg==", + "peerDependencies": { + "@antv/x6": ">=1.0.0", + "react": ">=16.8.6 || >=17.0.0", + "react-dom": ">=16.8.6 || >=17.0.0" + } + }, + "node_modules/@antv/xflow": { + "version": "1.0.24", + "resolved": "https://registry.npmmirror.com/@antv/xflow/download/@antv/xflow-1.0.24.tgz", + "integrity": "sha512-LutdilGUuvaPeLp2wlyli4n4dVCCQ6cltbfA6uisWpZY1cADVUKl8FrExJN3lyUtRavoP94uhmJRPTZZT5IUiQ==", + "dependencies": { + "@antv/layout": "^0.1.22", + "@antv/x6": "^1.29.0", + "@antv/x6-react-components": "^1.1.15", + "@antv/x6-react-shape": "^1.5.2", + "@antv/xflow-core": "1.0.24", + "@antv/xflow-extension": "1.0.24", + "@antv/xflow-hook": "1.0.23" + }, + "peerDependencies": { + "@ant-design/icons": "^4.6.0", + "antd": "^4.6.3", + "lodash": "^4.17.20", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@antv/xflow-core": { + "version": "1.0.24", + "resolved": "https://registry.npmmirror.com/@antv/xflow-core/download/@antv/xflow-core-1.0.24.tgz", + "integrity": "sha512-imK+I3yQFxAcebhARks+ybKKemWgMbqnZlJp3EdXioqH3meJnuQBKqGhCpvXlHIHdKoWLnGHt/56uu5mJM4wSw==", + "dependencies": { + "@antv/xflow-hook": "1.0.23", + "classnames": "^2.3.1", + "immer": "^9.0.7", + "mana-common": "^0.1.0", + "mana-syringe": "^0.2.2", + "reflect-metadata": "^0.1.13", + "rxjs": "^6.6.7" + }, + "peerDependencies": { + "@ant-design/icons": "^4.6.0", + "@antv/x6": "^1.12.11", + "@antv/x6-react-components": "^1.1.15", + "@antv/x6-react-shape": "^1.2.5", + "antd": "^4.6.3", + "lodash": "^4.17.20", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@antv/xflow-extension": { + "version": "1.0.24", + "resolved": "https://registry.npmmirror.com/@antv/xflow-extension/download/@antv/xflow-extension-1.0.24.tgz", + "integrity": "sha512-s8KQfqoRQVlb5M/8znnNSwC4S6LHIQ2LASBFuVTQoxGAAYcLB1iJLZyf3rJUD+pZDzLgB/6FghjhACVIYixNmQ==", + "dependencies": { + "@antv/xflow-core": "1.0.24", + "@antv/xflow-hook": "1.0.23", + "mana-syringe": "^0.2.2", + "moment": "^2.29.1", + "rc-field-form": "^1.22.0", + "react-color": "2.17.1", + "reflect-metadata": "^0.1.13" + }, + "peerDependencies": { + "@ant-design/icons": "^4.6.0", + "@antv/x6": "^1.12.11", + "@antv/x6-react-components": "^1.1.15", + "@antv/x6-react-shape": "^1.2.5", + "antd": "^4.6.3", + "classnames": "^2.2.6", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0", + "reflect-metadata": "^0.1.13" + } + }, + "node_modules/@antv/xflow-extension/node_modules/react-color": { + "version": "2.17.1", + "resolved": "https://registry.npmmirror.com/react-color/download/react-color-2.17.1.tgz", + "integrity": "sha1-8RSBHIP12Aob0bgEZsL33cxY2p0=", + "dependencies": { + "@icons/material": "^0.2.4", + "lodash": "^4.17.11", + "material-colors": "^1.2.1", + "prop-types": "^15.5.10", + "reactcss": "^1.2.0", + "tinycolor2": "^1.4.1" + } + }, + "node_modules/@antv/xflow-hook": { + "version": "1.0.23", + "resolved": "https://registry.npmmirror.com/@antv/xflow-hook/download/@antv/xflow-hook-1.0.23.tgz", + "integrity": "sha512-jK+VCF23MZNftdHOEyEA2tM87yQOj4ADC8gGRu9Na2Cx267uLyJVUogjj+Xy+dO7aHqvRto4mfWAwXMAP7hn2g==", + "dependencies": { + "toposort": "^2.0.2" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "dependencies": { + "@babel/highlight": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/compat-data/download/@babel/compat-data-7.16.8.tgz", + "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/core/download/@babel/core-7.16.7.tgz", + "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.16.7", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helpers": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.16.5", + "resolved": "https://registry.npmmirror.com/@babel/eslint-parser/download/@babel/eslint-parser-7.16.5.tgz", + "integrity": "sha512-mUqYa46lgWqHKQ33Q6LNCGp/wPR3eqOYTUixHFsfrSQqRxH0+WOzca75iEjFr5RDGH1dDz622LaHhLOzOuQRUA==", + "dependencies": { + "eslint-scope": "^5.1.1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.11.0", + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1637466831846&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz", + "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz?cache=0&sync_timestamp=1636378420914&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-2.1.0.tgz", + "integrity": "sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/eslint-parser/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz?cache=0&sync_timestamp=1635237716974&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/generator/download/@babel/generator-7.16.8.tgz", + "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==", + "dependencies": { + "@babel/types": "^7.16.8", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.16.7.tgz", + "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz", + "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==", + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.16.7.tgz", + "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", + "dependencies": { + "@babel/compat-data": "^7.16.4", + "@babel/helper-validator-option": "^7.16.7", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.16.7.tgz", + "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.16.7.tgz", + "integrity": "sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "regexpu-core": "^4.7.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.3.0.tgz?cache=0&sync_timestamp=1636799716380&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-define-polyfill-provider%2Fdownload%2F%40babel%2Fhelper-define-polyfill-provider-0.3.0.tgz", + "integrity": "sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-environment-visitor/download/@babel/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.16.7.tgz", + "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-function-name/download/@babel/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", + "dependencies": { + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.16.7.tgz", + "integrity": "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.16.7.tgz", + "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.16.7.tgz", + "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.16.8.tgz", + "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-wrap-function": "^7.16.8", + "@babel/types": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.16.7.tgz", + "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.16.7.tgz", + "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "resolved": "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha1-DuM4gHAUfDrgUeSH7KPrsOLouwk=", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.16.8.tgz", + "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==", + "dependencies": { + "@babel/helper-function-name": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helpers/download/@babel/helpers-7.16.7.tgz", + "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==", + "dependencies": { + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/highlight/download/@babel/highlight-7.16.7.tgz", + "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.16.8.tgz", + "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/download/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz", + "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/download/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz", + "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.16.8.tgz", + "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.16.7.tgz", + "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-class-static-block/download/@babel/plugin-proposal-class-static-block-7.16.7.tgz", + "integrity": "sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.16.7.tgz", + "integrity": "sha512-DoEpnuXK14XV9btI1k8tzNGCutMclpj4yru8aXKoHlVmbO1s+2A+g2+h4JhcjrxkFJqzbymnLG6j/niOf3iFXQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-decorators": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.16.7.tgz", + "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.16.7.tgz", + "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.16.7.tgz", + "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-logical-assignment-operators/download/@babel/plugin-proposal-logical-assignment-operators-7.16.7.tgz", + "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz", + "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.16.7.tgz", + "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.16.7.tgz", + "integrity": "sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==", + "dependencies": { + "@babel/compat-data": "^7.16.4", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.16.7.tgz", + "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.16.7.tgz", + "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.16.7.tgz", + "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/download/@babel/plugin-proposal-private-property-in-object-7.16.7.tgz", + "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/download/@babel/plugin-proposal-unicode-property-regex-7.16.7.tgz", + "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-bigint/download/@babel/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-decorators/download/@babel/plugin-syntax-decorators-7.16.7.tgz", + "integrity": "sha512-vQ+PxL+srA7g6Rx6I1e15m55gftknl2X8GCUW1JTlkTaXZLJOS0UcaY0eK9jYT7IYf4awn6qwyghVHLDz1WyMw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz?cache=0&sync_timestamp=1618847125283&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-dynamic-import%2Fdownload%2F%40babel%2Fplugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha1-AolkqbqA28CUyRXEh618TnpmRlo=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-flow/download/@babel/plugin-syntax-flow-7.16.7.tgz", + "integrity": "sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.16.7.tgz", + "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha1-ypHvRjA1MESLkGZSusLp/plB9pk=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/download/@babel/plugin-syntax-typescript-7.16.7.tgz", + "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.16.7.tgz", + "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/download/@babel/plugin-transform-async-to-generator-7.16.8.tgz", + "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.16.7.tgz", + "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.16.7.tgz", + "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.16.7.tgz", + "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.16.7.tgz", + "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.16.7.tgz", + "integrity": "sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.16.7.tgz", + "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.16.7.tgz", + "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.16.7.tgz", + "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-flow-strip-types/download/@babel/plugin-transform-flow-strip-types-7.16.7.tgz", + "integrity": "sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-flow": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.16.7.tgz", + "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.16.7.tgz", + "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.16.7.tgz", + "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.16.7.tgz", + "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.16.7.tgz", + "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==", + "dependencies": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.16.8.tgz", + "integrity": "sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.16.7.tgz", + "integrity": "sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==", + "dependencies": { + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.16.7.tgz", + "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.16.8.tgz", + "integrity": "sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.16.7.tgz", + "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.16.7.tgz", + "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.16.7.tgz", + "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.16.7.tgz", + "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-constant-elements/download/@babel/plugin-transform-react-constant-elements-7.16.7.tgz", + "integrity": "sha512-lF+cfsyTgwWkcw715J88JhMYJ5GpysYNLhLP1PkvkhTRN7B3e74R/1KsDxFxhRpSn0UUD3IWM4GvdBR2PEbbQQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-display-name/download/@babel/plugin-transform-react-display-name-7.16.7.tgz", + "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/download/@babel/plugin-transform-react-jsx-7.16.7.tgz", + "integrity": "sha512-8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-jsx": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/download/@babel/plugin-transform-react-jsx-development-7.16.7.tgz", + "integrity": "sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-pure-annotations/download/@babel/plugin-transform-react-pure-annotations-7.16.7.tgz", + "integrity": "sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.16.7.tgz", + "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==", + "dependencies": { + "regenerator-transform": "^0.14.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.16.7.tgz", + "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-runtime/download/@babel/plugin-transform-runtime-7.16.8.tgz", + "integrity": "sha512-6Kg2XHPFnIarNweZxmzbgYnnWsXxkx9WQUVk2sksBRL80lBC1RAQV3wQagWxdCHiYHqPN+oenwNIuttlYgIbQQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.16.7.tgz", + "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.16.7.tgz", + "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.16.7.tgz", + "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.16.7.tgz", + "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/download/@babel/plugin-transform-typeof-symbol-7.16.7.tgz", + "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typescript/download/@babel/plugin-transform-typescript-7.16.7.tgz", + "integrity": "sha512-Hzx1lvBtOCWuCEwMmYOfpQpO7joFeXLgoPuzZZBtTxXqSqUGUubvFGZv2ygo1tB5Bp9q6PXV3H0E/kf7KM0RLA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-typescript": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/download/@babel/plugin-transform-unicode-escapes-7.16.7.tgz", + "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.16.7.tgz", + "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/preset-env/download/@babel/preset-env-7.16.8.tgz", + "integrity": "sha512-9rNKgVCdwHb3z1IlbMyft6yIXIeP3xz6vWvGaLHrJThuEIqWfHb0DNBH9VuTgnDfdbUDhkmkvMZS/YMCtP7Elg==", + "dependencies": { + "@babel/compat-data": "^7.16.8", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-async-generator-functions": "^7.16.8", + "@babel/plugin-proposal-class-properties": "^7.16.7", + "@babel/plugin-proposal-class-static-block": "^7.16.7", + "@babel/plugin-proposal-dynamic-import": "^7.16.7", + "@babel/plugin-proposal-export-namespace-from": "^7.16.7", + "@babel/plugin-proposal-json-strings": "^7.16.7", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", + "@babel/plugin-proposal-numeric-separator": "^7.16.7", + "@babel/plugin-proposal-object-rest-spread": "^7.16.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", + "@babel/plugin-proposal-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.7", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@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.16.7", + "@babel/plugin-transform-async-to-generator": "^7.16.8", + "@babel/plugin-transform-block-scoped-functions": "^7.16.7", + "@babel/plugin-transform-block-scoping": "^7.16.7", + "@babel/plugin-transform-classes": "^7.16.7", + "@babel/plugin-transform-computed-properties": "^7.16.7", + "@babel/plugin-transform-destructuring": "^7.16.7", + "@babel/plugin-transform-dotall-regex": "^7.16.7", + "@babel/plugin-transform-duplicate-keys": "^7.16.7", + "@babel/plugin-transform-exponentiation-operator": "^7.16.7", + "@babel/plugin-transform-for-of": "^7.16.7", + "@babel/plugin-transform-function-name": "^7.16.7", + "@babel/plugin-transform-literals": "^7.16.7", + "@babel/plugin-transform-member-expression-literals": "^7.16.7", + "@babel/plugin-transform-modules-amd": "^7.16.7", + "@babel/plugin-transform-modules-commonjs": "^7.16.8", + "@babel/plugin-transform-modules-systemjs": "^7.16.7", + "@babel/plugin-transform-modules-umd": "^7.16.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8", + "@babel/plugin-transform-new-target": "^7.16.7", + "@babel/plugin-transform-object-super": "^7.16.7", + "@babel/plugin-transform-parameters": "^7.16.7", + "@babel/plugin-transform-property-literals": "^7.16.7", + "@babel/plugin-transform-regenerator": "^7.16.7", + "@babel/plugin-transform-reserved-words": "^7.16.7", + "@babel/plugin-transform-shorthand-properties": "^7.16.7", + "@babel/plugin-transform-spread": "^7.16.7", + "@babel/plugin-transform-sticky-regex": "^7.16.7", + "@babel/plugin-transform-template-literals": "^7.16.7", + "@babel/plugin-transform-typeof-symbol": "^7.16.7", + "@babel/plugin-transform-unicode-escapes": "^7.16.7", + "@babel/plugin-transform-unicode-regex": "^7.16.7", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.8", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.20.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmmirror.com/@babel/preset-modules/download/@babel/preset-modules-0.1.5.tgz", + "integrity": "sha1-75Odbn8miCfhhBY43G/5VRXhFdk=", + "license": "MIT", + "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" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/preset-react/download/@babel/preset-react-7.16.7.tgz", + "integrity": "sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-transform-react-display-name": "^7.16.7", + "@babel/plugin-transform-react-jsx": "^7.16.7", + "@babel/plugin-transform-react-jsx-development": "^7.16.7", + "@babel/plugin-transform-react-pure-annotations": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/preset-typescript/download/@babel/preset-typescript-7.16.7.tgz", + "integrity": "sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-transform-typescript": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/runtime/download/@babel/runtime-7.16.7.tgz", + "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/runtime-corejs3/download/@babel/runtime-corejs3-7.16.7.tgz", + "integrity": "sha512-MiYR1yk8+TW/CpOD0CyX7ve9ffWTKqLk/L6pk8TPl0R8pNi+1pFY8fH9yET55KlvukQ4PAWfXsGr2YHVjcI4Pw==", + "dependencies": { + "core-js-pure": "^3.19.0", + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/template/download/@babel/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/traverse/download/@babel/traverse-7.16.8.tgz", + "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==", + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.16.8", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.16.8", + "@babel/types": "^7.16.8", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/types/download/@babel/types-7.16.8.tgz", + "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.16.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@bcoe/v8-coverage/download/@bcoe/v8-coverage-0.2.3.tgz", + "integrity": "sha1-daLotRy3WKdVPWgEpZMteqznXDk=" + }, + "node_modules/@csstools/normalize.css": { + "version": "12.0.0", + "resolved": "https://registry.nlark.com/@csstools/normalize.css/download/@csstools/normalize.css-12.0.0.tgz", + "integrity": "sha1-qVg6dcPxUGZ3cfMLYNnwWUc+YsQ=" + }, + "node_modules/@ctrl/tinycolor": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/@ctrl/tinycolor/download/@ctrl/tinycolor-3.4.0.tgz", + "integrity": "sha1-w8WuVDyJfKqcKmhjC+01W+X5mQ8=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@dagrejs/graphlib": { + "version": "2.1.4", + "resolved": "https://registry.npm.taobao.org/@dagrejs/graphlib/download/@dagrejs/graphlib-2.1.4.tgz", + "integrity": "sha1-hscOTwc4RKL0raJUyMe4imvazbE=", + "dependencies": { + "lodash": "^4.11.1" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.7.2", + "resolved": "https://registry.npmmirror.com/@emotion/babel-plugin/download/@emotion/babel-plugin-11.7.2.tgz", + "integrity": "sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/runtime": "^7.13.10", + "@emotion/hash": "^0.8.0", + "@emotion/memoize": "^0.7.5", + "@emotion/serialize": "^1.0.2", + "babel-plugin-macros": "^2.6.1", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.0.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@emotion/babel-plugin/node_modules/babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.nlark.com/babel-plugin-macros/download/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha1-D5WKfMZVax5lNERl2ZERoeXhATg=", + "dependencies": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "node_modules/@emotion/babel-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-6.0.0.tgz", + "integrity": "sha1-2k/uhTxS9rHmk19BwaL8UL1KmYI=", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@emotion/babel-plugin/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz", + "integrity": "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@emotion/cache": { + "version": "11.7.1", + "resolved": "https://registry.npmmirror.com/@emotion/cache/download/@emotion/cache-11.7.1.tgz", + "integrity": "sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==", + "dependencies": { + "@emotion/memoize": "^0.7.4", + "@emotion/sheet": "^1.1.0", + "@emotion/utils": "^1.0.0", + "@emotion/weak-memoize": "^0.2.5", + "stylis": "4.0.13" + } + }, + "node_modules/@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmmirror.com/@emotion/hash/download/@emotion/hash-0.8.0.tgz", + "integrity": "sha1-u7/2iXj+/b5ozLUzvIy+HRr7VBM=" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/@emotion/is-prop-valid/download/@emotion/is-prop-valid-1.1.1.tgz", + "integrity": "sha512-bW1Tos67CZkOURLc0OalnfxtSXQJMrAMV0jZTVGJUPSOd4qgjF3+tTD5CwJM13PHA8cltGW1WGbbvV9NpvUZPw==", + "dependencies": { + "@emotion/memoize": "^0.7.4" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.7.5", + "resolved": "https://registry.npm.taobao.org/@emotion/memoize/download/@emotion/memoize-0.7.5.tgz", + "integrity": "sha1-LED4FEmk5VTp/GOWkQ7UhD7CvlA=" + }, + "node_modules/@emotion/react": { + "version": "11.7.1", + "resolved": "https://registry.npmmirror.com/@emotion/react/download/@emotion/react-11.7.1.tgz", + "integrity": "sha512-DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@emotion/cache": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/sheet": "^1.1.0", + "@emotion/utils": "^1.0.0", + "@emotion/weak-memoize": "^0.2.5", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/@emotion/serialize/download/@emotion/serialize-1.0.2.tgz", + "integrity": "sha1-d8shoFccn2jrZgh3VKZfqXv82WU=", + "dependencies": { + "@emotion/hash": "^0.8.0", + "@emotion/memoize": "^0.7.4", + "@emotion/unitless": "^0.7.5", + "@emotion/utils": "^1.0.0", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@emotion/sheet/download/@emotion/sheet-1.1.0.tgz", + "integrity": "sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==" + }, + "node_modules/@emotion/styled": { + "version": "11.6.0", + "resolved": "https://registry.npmmirror.com/@emotion/styled/download/@emotion/styled-11.6.0.tgz", + "integrity": "sha512-mxVtVyIOTmCAkFbwIp+nCjTXJNgcz4VWkOYQro87jE2QBTydnkiYusMrRGFtzuruiGK4dDaNORk4gH049iiQuw==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@emotion/babel-plugin": "^11.3.0", + "@emotion/is-prop-valid": "^1.1.1", + "@emotion/serialize": "^1.0.2", + "@emotion/utils": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@emotion/react": "^11.0.0-rc.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmmirror.com/@emotion/unitless/download/@emotion/unitless-0.7.5.tgz", + "integrity": "sha1-dyESkcGQCnALinjPr9oxYNdpSe0=" + }, + "node_modules/@emotion/utils": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/@emotion/utils/download/@emotion/utils-1.0.0.tgz", + "integrity": "sha1-q+BqgxYLEFcIFskTmQJFgTov1q8=" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.2.5", + "resolved": "https://registry.npmmirror.com/@emotion/weak-memoize/download/@emotion/weak-memoize-0.2.5.tgz", + "integrity": "sha1-ju2YLi7m9/TkTCU+EpYpgHke/UY=" + }, + "node_modules/@eslint/eslintrc": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/download/@eslint/eslintrc-1.0.5.tgz", + "integrity": "sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.2.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/argparse/download/argparse-2.0.1.tgz", + "integrity": "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=" + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.12.0", + "resolved": "https://registry.npmmirror.com/globals/download/globals-13.12.0.tgz", + "integrity": "sha1-TXM3YDBCMKAILtluIeXFZfiYCJ4=", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/download/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.20.2.tgz", + "integrity": "sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.9.2", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.9.2.tgz?cache=0&sync_timestamp=1635880739605&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40humanwhocodes%2Fconfig-array%2Fdownload%2F%40humanwhocodes%2Fconfig-array-0.9.2.tgz", + "integrity": "sha1-aL5VxzcCMAnfxf4kXVEYG7ZHaRQ=", + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/object-schema/download/@humanwhocodes/object-schema-1.2.1.tgz?cache=0&sync_timestamp=1635880763805&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40humanwhocodes%2Fobject-schema%2Fdownload%2F%40humanwhocodes%2Fobject-schema-1.2.1.tgz", + "integrity": "sha1-tSBSnsIdjllFoYUd/Rwy6U45/0U=", + "license": "BSD-3-Clause" + }, + "node_modules/@icons/material": { + "version": "0.2.4", + "resolved": "https://registry.npm.taobao.org/@icons/material/download/@icons/material-0.2.4.tgz", + "integrity": "sha1-6QyfcXaLNzbnbX3WeD/Gwq+oi8g=", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/@istanbuljs/load-nyc-config/download/@istanbuljs/load-nyc-config-1.1.0.tgz", + "integrity": "sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0=", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmmirror.com/camelcase/download/camelcase-5.3.1.tgz?cache=0&sync_timestamp=1636945191390&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcamelcase%2Fdownload%2Fcamelcase-5.3.1.tgz", + "integrity": "sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=", + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "integrity": "sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-5.0.0.tgz", + "integrity": "sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-4.1.0.tgz", + "integrity": "sha1-o0KLtwiLOmApL2aRkni3wpetTwc=", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.nlark.com/@istanbuljs/schema/download/@istanbuljs/schema-0.1.3.tgz", + "integrity": "sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg=", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/@jest/console/download/@jest/console-27.4.2.tgz", + "integrity": "sha512-xknHThRsPB/To1FUbi6pCe43y58qFC03zfb6R7fDb/FfC7k2R3i1l+izRBJf8DI46KhYGRaF14Eo9A3qbBoixg==", + "dependencies": { + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.4.2", + "jest-util": "^27.4.2", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/@jest/core/download/@jest/core-27.4.5.tgz", + "integrity": "sha512-3tm/Pevmi8bDsgvo73nX8p/WPng6KWlCyScW10FPEoN1HU4pwI83tJ3TsFvi1FfzsjwUlMNEPowgb/rPau/LTQ==", + "dependencies": { + "@jest/console": "^27.4.2", + "@jest/reporters": "^27.4.5", + "@jest/test-result": "^27.4.2", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^27.4.2", + "jest-config": "^27.4.5", + "jest-haste-map": "^27.4.5", + "jest-message-util": "^27.4.2", + "jest-regex-util": "^27.4.0", + "jest-resolve": "^27.4.5", + "jest-resolve-dependencies": "^27.4.5", + "jest-runner": "^27.4.5", + "jest-runtime": "^27.4.5", + "jest-snapshot": "^27.4.5", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "jest-watcher": "^27.4.2", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "27.4.4", + "resolved": "https://registry.npmmirror.com/@jest/environment/download/@jest/environment-27.4.4.tgz", + "integrity": "sha512-q+niMx7cJgt/t/b6dzLOh4W8Ef/8VyKG7hxASK39jakijJzbFBGpptx3RXz13FFV7OishQ9lTbv+dQ5K3EhfDQ==", + "dependencies": { + "@jest/fake-timers": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "jest-mock": "^27.4.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/@jest/fake-timers/download/@jest/fake-timers-27.4.2.tgz", + "integrity": "sha512-f/Xpzn5YQk5adtqBgvw1V6bF8Nx3hY0OIRRpCvWcfPl0EAjdqWPdhH3t/3XpiWZqtjIEHDyMKP9ajpva1l4Zmg==", + "dependencies": { + "@jest/types": "^27.4.2", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.4.2", + "jest-mock": "^27.4.2", + "jest-util": "^27.4.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "27.4.4", + "resolved": "https://registry.npmmirror.com/@jest/globals/download/@jest/globals-27.4.4.tgz", + "integrity": "sha512-bqpqQhW30BOreXM8bA8t8JbOQzsq/WnPTnBl+It3UxAD9J8yxEAaBEylHx1dtBapAr/UBk8GidXbzmqnee8tYQ==", + "dependencies": { + "@jest/environment": "^27.4.4", + "@jest/types": "^27.4.2", + "expect": "^27.4.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/@jest/reporters/download/@jest/reporters-27.4.5.tgz", + "integrity": "sha512-3orsG4vi8zXuBqEoy2LbnC1kuvkg1KQUgqNxmxpQgIOQEPeV0onvZu+qDQnEoX8qTQErtqn/xzcnbpeTuOLSiA==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.4.2", + "@jest/test-result": "^27.4.2", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^27.4.5", + "jest-resolve": "^27.4.5", + "jest-util": "^27.4.2", + "jest-worker": "^27.4.5", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/istanbul-lib-instrument/download/istanbul-lib-instrument-4.0.3.tgz?cache=0&sync_timestamp=1635386650079&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fistanbul-lib-instrument%2Fdownload%2Fistanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha1-hzxv/4l0UBGCIndGlqPyiQLXfB0=", + "dependencies": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/source-map": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/@jest/source-map/download/@jest/source-map-27.4.0.tgz", + "integrity": "sha512-Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-result": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/@jest/test-result/download/@jest/test-result-27.4.2.tgz", + "integrity": "sha512-kr+bCrra9jfTgxHXHa2UwoQjxvQk3Am6QbpAiJ5x/50LW8llOYrxILkqY0lZRW/hu8FXesnudbql263+EW9iNA==", + "dependencies": { + "@jest/console": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/@jest/test-sequencer/download/@jest/test-sequencer-27.4.5.tgz", + "integrity": "sha512-n5woIn/1v+FT+9hniymHPARA9upYUmfi5Pw9ewVwXCDlK4F5/Gkees9v8vdjGdAIJ2MPHLHodiajLpZZanWzEQ==", + "dependencies": { + "@jest/test-result": "^27.4.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.4.5", + "jest-runtime": "^27.4.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/@jest/transform/download/@jest/transform-27.4.5.tgz", + "integrity": "sha512-PuMet2UlZtlGzwc6L+aZmR3I7CEBpqadO03pU40l2RNY2fFJ191b9/ITB44LNOhVtsyykx0OZvj0PCyuLm7Eew==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.4.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.4.5", + "jest-regex-util": "^27.4.0", + "jest-util": "^27.4.2", + "micromatch": "^4.0.4", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/@jest/types/download/@jest/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@mapbox/geojson-area": { + "version": "0.2.2", + "resolved": "https://registry.npm.taobao.org/@mapbox/geojson-area/download/@mapbox/geojson-area-0.2.2.tgz", + "integrity": "sha1-GNeBSqNr8j+7zDefjiaiKSfevxA=", + "dependencies": { + "wgs84": "0.0.0" + } + }, + "node_modules/@mapbox/geojson-rewind": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/@mapbox/geojson-rewind/download/@mapbox/geojson-rewind-0.4.1.tgz", + "integrity": "sha1-NX15MArbf+x8HwkVEpiLymRY8Gg=", + "dependencies": { + "@mapbox/geojson-area": "0.2.2", + "concat-stream": "~1.6.0", + "minimist": "^1.2.5", + "sharkdown": "^0.1.0" + }, + "bin": { + "geojson-rewind": "geojson-rewind" + } + }, + "node_modules/@mapbox/geojson-types": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/@mapbox/geojson-types/download/@mapbox/geojson-types-1.0.2.tgz", + "integrity": "sha1-muz2QssA6rEIClfE+UmmW0pYRtY=" + }, + "node_modules/@mapbox/jsonlint-lines-primitives": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/@mapbox/jsonlint-lines-primitives/download/@mapbox/jsonlint-lines-primitives-2.0.2.tgz", + "integrity": "sha1-zlblOfg1UrWNENZy6k1vya3HsjQ=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@mapbox/mapbox-gl-supported": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@mapbox/mapbox-gl-supported/download/@mapbox/mapbox-gl-supported-1.5.0.tgz?cache=0&sync_timestamp=1635877306261&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40mapbox%2Fmapbox-gl-supported%2Fdownload%2F%40mapbox%2Fmapbox-gl-supported-1.5.0.tgz", + "integrity": "sha1-9gtqVaXY5e6Qg0fSzkJQsVED3I4=", + "peerDependencies": { + "mapbox-gl": ">=0.32.1 <2.0.0" + } + }, + "node_modules/@mapbox/martini": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/@mapbox/martini/download/@mapbox/martini-0.2.0.tgz", + "integrity": "sha1-GvcCEfvplKvybjfxOIymnALNQ7Q=" + }, + "node_modules/@mapbox/point-geometry": { + "version": "0.1.0", + "resolved": "https://registry.npm.taobao.org/@mapbox/point-geometry/download/@mapbox/point-geometry-0.1.0.tgz", + "integrity": "sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI=" + }, + "node_modules/@mapbox/tiny-sdf": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/@mapbox/tiny-sdf/download/@mapbox/tiny-sdf-1.2.5.tgz?cache=0&sync_timestamp=1634602366708&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40mapbox%2Ftiny-sdf%2Fdownload%2F%40mapbox%2Ftiny-sdf-1.2.5.tgz", + "integrity": "sha1-QkxiCpZEKyBAJVK+cKf2KoQHzFk=" + }, + "node_modules/@mapbox/unitbezier": { + "version": "0.0.0", + "resolved": "https://registry.npmmirror.com/@mapbox/unitbezier/download/@mapbox/unitbezier-0.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40mapbox%2Funitbezier%2Fdownload%2F%40mapbox%2Funitbezier-0.0.0.tgz", + "integrity": "sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4=" + }, + "node_modules/@mapbox/vector-tile": { + "version": "1.3.1", + "resolved": "https://registry.npm.taobao.org/@mapbox/vector-tile/download/@mapbox/vector-tile-1.3.1.tgz", + "integrity": "sha1-06dMkEAtBuiexm3knsgX/1NAlmY=", + "dependencies": { + "@mapbox/point-geometry": "~0.1.0" + } + }, + "node_modules/@mapbox/whoots-js": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/@mapbox/whoots-js/download/@mapbox/whoots-js-3.1.0.tgz", + "integrity": "sha1-SXxnoc71DRokWbpg8xXkSNKth/4=", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz", + "integrity": "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz", + "integrity": "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz?cache=0&sync_timestamp=1625769855088&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.walk%2Fdownload%2F%40nodelib%2Ffs.walk-1.2.8.tgz", + "integrity": "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.4", + "resolved": "https://registry.npmmirror.com/@pmmmwh/react-refresh-webpack-plugin/download/@pmmmwh/react-refresh-webpack-plugin-0.5.4.tgz", + "integrity": "sha512-zZbZeHQDnoTlt2AF+diQT0wsSXpvWiaIOZwBRdltNFhG1+I3ozyaw7U/nBiUwyJ0D+zwdXp0E3bWOl38Ag2BMw==", + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.8.1", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <3.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.7.3.tgz", + "integrity": "sha1-UwL4FpAxc1ImVECS5kmB91F1A4M=", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmmirror.com/@polka/url/download/@polka/url-1.0.0-next.21.tgz", + "integrity": "sha1-XeWiOFo1MJQn9gEZkrVEUU1VmqE=", + "dev": true, + "license": "MIT" + }, + "node_modules/@probe.gl/env": { + "version": "3.5.0", + "resolved": "https://registry.npmmirror.com/@probe.gl/env/download/@probe.gl/env-3.5.0.tgz", + "integrity": "sha512-YdlpZZshhyYxvWDBmZ5RIW2pTR14Pw4p9czMlt/v7F6HbFzWfAdmH7q6xVwFRYxUpQLwhWensWyv4aFysiWl4g==", + "dependencies": { + "@babel/runtime": "^7.0.0" + } + }, + "node_modules/@probe.gl/log": { + "version": "3.5.0", + "resolved": "https://registry.npmmirror.com/@probe.gl/log/download/@probe.gl/log-3.5.0.tgz", + "integrity": "sha512-nW/qz2X1xY08WU/TsmJP6/6IPNcaY5fS/vLjpC4ahJuE2Mezga4hGM/R2X5JWE/nkPc+BsC5GnAnD13rwAxS7g==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@probe.gl/env": "3.5.0" + } + }, + "node_modules/@probe.gl/stats": { + "version": "3.5.0", + "resolved": "https://registry.npmmirror.com/@probe.gl/stats/download/@probe.gl/stats-3.5.0.tgz", + "integrity": "sha512-IH2M+F3c8HR1DTroBARePUFG7wIewumtKA0UFqx51Z7S4hKrD60wFbpMmg0AcF4FvHAXMBoC+kYi1UKW9XbAOw==", + "dependencies": { + "@babel/runtime": "^7.0.0" + } + }, + "node_modules/@qixian.cs/path-to-regexp": { + "version": "6.1.0", + "resolved": "https://registry.npm.taobao.org/@qixian.cs/path-to-regexp/download/@qixian.cs/path-to-regexp-6.1.0.tgz", + "integrity": "sha1-a4StAVljMqupX6KdLnAQRpjNXEU=" + }, + "node_modules/@reduxjs/toolkit": { + "version": "1.7.1", + "resolved": "https://registry.npmmirror.com/@reduxjs/toolkit/download/@reduxjs/toolkit-1.7.1.tgz", + "integrity": "sha512-wXwXYjBVz/ItxB7SMzEAMmEE/FBiY1ze18N+VVVX7NtVbRUrdOGKhpQMHivIJfkbJvSdLUU923a/yAagJQzY0Q==", + "dependencies": { + "immer": "^9.0.7", + "redux": "^4.1.2", + "redux-thunk": "^2.4.1", + "reselect": "^4.1.5" + }, + "peerDependencies": { + "react": "^16.9.0 || ^17.0.0 || 18.0.0-beta", + "react-redux": "^7.2.1 || ^8.0.0-beta" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-redux": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/@rollup/plugin-babel/download/@rollup/plugin-babel-5.3.0.tgz", + "integrity": "sha1-nLHFFG3daklorZbyCcUMYvkvmHk=", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmmirror.com/@rollup/plugin-node-resolve/download/@rollup/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha1-gqpZOXopzU4TJIsQbmpKGIA2KmA=", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/@rollup/plugin-replace/download/@rollup/plugin-replace-2.4.2.tgz", + "integrity": "sha1-otU5MU+8d8JEhY+qUjASglBoUQo=", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/download/@rollup/pluginutils-3.1.0.tgz", + "integrity": "sha1-cGtFJO5tyLEDs8mVUz5a1oDAK5s=", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmmirror.com/@types/estree/download/@types/estree-0.0.39.tgz", + "integrity": "sha1-4Xfmme4bjCLSMXTKqnQiZEOJUJ8=" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@rushstack/eslint-patch/download/@rushstack/eslint-patch-1.1.0.tgz", + "integrity": "sha1-f2mCVKrfkh5I3ajAprMEAmuKkyM=", + "license": "MIT" + }, + "node_modules/@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmmirror.com/@sindresorhus/is/download/@sindresorhus/is-0.14.0.tgz", + "integrity": "sha1-n7OjzzEyMoFR81PeRjLgHlIQK+o=", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.nlark.com/@sinonjs/commons/download/@sinonjs/commons-1.8.3.tgz", + "integrity": "sha1-OALd0hpQqUm2ch3dcto25n5/Gy0=", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmmirror.com/@sinonjs/fake-timers/download/@sinonjs/fake-timers-8.1.0.tgz?cache=0&sync_timestamp=1635949844583&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40sinonjs%2Ffake-timers%2Fdownload%2F%40sinonjs%2Ffake-timers-8.1.0.tgz", + "integrity": "sha1-P9wrbLWJNbIb+40WJesTAEhDFuc=", + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmmirror.com/@surma/rollup-plugin-off-main-thread/download/@surma/rollup-plugin-off-main-thread-2.2.3.tgz?cache=0&sync_timestamp=1636350261941&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40surma%2Frollup-plugin-off-main-thread%2Fdownload%2F%40surma%2Frollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-add-jsx-attribute/download/@svgr/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha1-ge9hlHuyaOudUFI0RvnGOPs1WQY=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-remove-jsx-attribute/download/@svgr/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha1-ayx3DJXIdGVP1eHV70dbeKCpYu8=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-remove-jsx-empty-expression/download/@svgr/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha1-JWIaiRXtetcNps6j0KbbwuqTPv0=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-replace-jsx-attribute-value/download/@svgr/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha1-CyIfxX+fzRDpH+IZ4s0N0DFFqJc=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-svg-dynamic-title/download/@svgr/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha1-E5tUbdDDGGtuXbT+/CbLC66nKdc=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-svg-em-dimensions/download/@svgr/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha1-ZUP2lSZjKhM85cq6uWXe6uoiNKA=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-transform-react-native-svg/download/@svgr/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha1-AL+aenPxytOUjNqx+N+3dHUPjIA=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-transform-svg-component/download/@svgr/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha1-WDpeKhk+IU2i86/rC56NMlASa0o=", + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-preset/download/@svgr/babel-preset-5.5.0.tgz", + "integrity": "sha1-ivVPPgqK3XseKw/NWogsVTk98yc=", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/core/download/@svgr/core-5.5.0.tgz", + "integrity": "sha1-gugmuHFdcQgxIP6PJJLsfXh0pXk=", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/hast-util-to-babel-ast/download/@svgr/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha1-XuUqnCUz9z5j+PIrd5+TzUMqVGE=", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/plugin-jsx/download/@svgr/plugin-jsx-5.5.0.tgz", + "integrity": "sha1-GqjNeYodtxc6wENGbXtSI2s2kAA=", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/plugin-svgo/download/@svgr/plugin-svgo-5.5.0.tgz", + "integrity": "sha1-AtpV2FMgVJMk4gHHsuU79DH8wkY=", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/webpack/download/@svgr/webpack-5.5.0.tgz", + "integrity": "sha1-quhY7lefX6jObDFm71bGobOBtkA=", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@szmarczak/http-timer/download/@szmarczak/http-timer-1.1.2.tgz", + "integrity": "sha1-sWZeLEYaLNkvTBu/UNVFTeDUtCE=", + "dev": true, + "dependencies": { + "defer-to-connect": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@testing-library/dom": { + "version": "8.11.1", + "resolved": "https://registry.npmmirror.com/@testing-library/dom/download/@testing-library/dom-8.11.1.tgz", + "integrity": "sha512-3KQDyx9r0RKYailW2MiYrSSKEfH0GTkI51UGEvJenvcoDoeRYs0PZpi2SXqtnMClQvCqdtTTpOfFETDTVADpAg==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^4.2.0", + "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" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@testing-library/dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/dom/node_modules/aria-query": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/aria-query/download/aria-query-5.0.0.tgz", + "integrity": "sha1-IQwhqvRpYT7oyaYsf4ZSXgWNtSw=", + "license": "Apache-2.0", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@testing-library/dom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/dom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/@testing-library/dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "5.16.1", + "resolved": "https://registry.npmmirror.com/@testing-library/jest-dom/download/@testing-library/jest-dom-5.16.1.tgz", + "integrity": "sha512-ajUJdfDIuTCadB79ukO+0l8O+QwN0LiSxDaYUTI4LndbbUsGi6rWU1SCexXzBA2NSjlVB9/vbkasQIL3tmPBjw==", + "dependencies": { + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/aria-query": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/aria-query/download/aria-query-5.0.0.tgz", + "integrity": "sha1-IQwhqvRpYT7oyaYsf4ZSXgWNtSw=", + "license": "Apache-2.0", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-3.0.0.tgz", + "integrity": "sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/@testing-library/jest-dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react": { + "version": "12.1.2", + "resolved": "https://registry.npmmirror.com/@testing-library/react/download/@testing-library/react-12.1.2.tgz", + "integrity": "sha1-8byaRZQ0YfoqWYu0WX3xrgRM/HY=", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.0.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmmirror.com/@testing-library/user-event/download/@testing-library/user-event-13.5.0.tgz", + "integrity": "sha1-addwB/HhJNVTFKK3P9IEszOxMpU=", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/@tootallnate/once/download/@tootallnate/once-1.1.2.tgz?cache=0&sync_timestamp=1632734062895&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40tootallnate%2Fonce%2Fdownload%2F%40tootallnate%2Fonce-1.1.2.tgz", + "integrity": "sha1-zLkURTYBeaBOf+av94wA/8Hur4I=", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/@trysound/sax/download/@trysound/sax-0.2.0.tgz", + "integrity": "sha1-zMqrdYr1Z2Hre/N69vA/Mm3XmK0=", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.nlark.com/@turf/helpers/download/@turf/helpers-6.5.0.tgz", + "integrity": "sha1-95rwlL1rjOftK9PgiahJPubK6C4=" + }, + "node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.nlark.com/@turf/invariant/download/@turf/invariant-6.5.0.tgz", + "integrity": "sha1-lwr8mIAj45x8yrI0G9Bped3HRj8=", + "dependencies": { + "@turf/helpers": "^6.5.0" + } + }, + "node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/@turf/meta/download/@turf/meta-6.5.0.tgz", + "integrity": "sha1-tyXDZTyfQyEz6qBNNCH35R4EGMo=", + "dependencies": { + "@turf/helpers": "^6.5.0" + } + }, + "node_modules/@types/acorn": { + "version": "4.0.6", + "resolved": "https://registry.npmmirror.com/@types/acorn/download/@types/acorn-4.0.6.tgz?cache=0&sync_timestamp=1637264183030&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Facorn%2Fdownload%2F%40types%2Facorn-4.0.6.tgz", + "integrity": "sha1-1hylSAMArEGn2XPdW4TQpZEVSiI=", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/amap-js-api": { + "version": "1.4.10", + "resolved": "https://registry.npmmirror.com/@types/amap-js-api/download/@types/amap-js-api-1.4.10.tgz", + "integrity": "sha1-NcPsgYYKlW80u9Umcrqc8vRwS14=" + }, + "node_modules/@types/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmmirror.com/@types/aria-query/download/@types/aria-query-4.2.2.tgz", + "integrity": "sha1-7U4K2SMGpwT5+xMqDPz3dIbb4rw=" + }, + "node_modules/@types/babel__core": { + "version": "7.1.18", + "resolved": "https://registry.npmmirror.com/@types/babel__core/download/@types/babel__core-7.1.18.tgz", + "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmmirror.com/@types/babel__generator/download/@types/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/@types/babel__template/download/@types/babel__template-7.4.1.tgz?cache=0&sync_timestamp=1637265215105&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fbabel__template%2Fdownload%2F%40types%2Fbabel__template-7.4.1.tgz", + "integrity": "sha1-PRpI/Z1sDt/Vby/1eNrtSPNsiWk=", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmmirror.com/@types/babel__traverse/download/@types/babel__traverse-7.14.2.tgz?cache=0&sync_timestamp=1637264329699&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.14.2.tgz", + "integrity": "sha1-/81HC7s/i/MEgWePtVAieMqDOkM=", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmmirror.com/@types/body-parser/download/@types/body-parser-1.19.2.tgz?cache=0&sync_timestamp=1637265034342&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fbody-parser%2Fdownload%2F%40types%2Fbody-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmmirror.com/@types/bonjour/download/@types/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmmirror.com/@types/connect/download/@types/connect-3.4.35.tgz?cache=0&sync_timestamp=1637264533049&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fconnect%2Fdownload%2F%40types%2Fconnect-3.4.35.tgz", + "integrity": "sha1-X89q5EXkAh0fwiGaSHPMc6O7KtE=", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmmirror.com/@types/connect-history-api-fallback/download/@types/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha1-0feooJ0O1aV67lrpwYq5uAMgXa4=", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/d3-timer": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@types/d3-timer/download/@types/d3-timer-2.0.1.tgz", + "integrity": "sha1-/7ZiDSkGJPNyaqNiwMiktEyNcgA=" + }, + "node_modules/@types/eslint": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@types/eslint/download/@types/eslint-7.29.0.tgz", + "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.2", + "resolved": "https://registry.npmmirror.com/@types/eslint-scope/download/@types/eslint-scope-3.7.2.tgz", + "integrity": "sha512-TzgYCWoPiTeRg6RQYgtuW7iODtVoKu3RVL72k3WohqhjfaOLK5Mg2T4Tg1o2bSfu0vPkoI48wdQFv5b/Xe04wQ==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.50", + "resolved": "https://registry.npmmirror.com/@types/estree/download/@types/estree-0.0.50.tgz", + "integrity": "sha1-Hgyqk2TT/M0pMcPtlv2+ql1MyoM=" + }, + "node_modules/@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmmirror.com/@types/express/download/@types/express-4.17.13.tgz", + "integrity": "sha1-p24plXKJmbq1GjP6vOHXBaNwkDQ=", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.27", + "resolved": "https://registry.npmmirror.com/@types/express-serve-static-core/download/@types/express-serve-static-core-4.17.27.tgz", + "integrity": "sha512-e/sVallzUTPdyOTiqi8O8pMdBBphscvI6E4JYaKlja4Lm+zh7UFSSdW5VMkRbhDtmrONqOUHOXRguPsDckzxNA==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/geojson": { + "version": "7946.0.8", + "resolved": "https://registry.npmmirror.com/@types/geojson/download/@types/geojson-7946.0.8.tgz?cache=0&sync_timestamp=1637265317590&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fgeojson%2Fdownload%2F%40types%2Fgeojson-7946.0.8.tgz", + "integrity": "sha1-MHRK/bOF4pReIvOwM/iX92sfEso=" + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmmirror.com/@types/graceful-fs/download/@types/graceful-fs-4.1.5.tgz", + "integrity": "sha1-If+6DZjaQ1DbZIkfkqnl2zzbThU=", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/history": { + "version": "4.7.11", + "resolved": "https://registry.npmmirror.com/@types/history/download/@types/history-4.7.11.tgz", + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", + "dev": true + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/@types/hoist-non-react-statics/download/@types/hoist-non-react-statics-3.3.1.tgz?cache=0&sync_timestamp=1637265727153&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fhoist-non-react-statics%2Fdownload%2F%40types%2Fhoist-non-react-statics-3.3.1.tgz", + "integrity": "sha1-ESSq/lEYy1kZd66xzqrtEHDrA58=", + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/@types/html-minifier-terser/download/@types/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.8", + "resolved": "https://registry.npmmirror.com/@types/http-proxy/download/@types/http-proxy-1.17.8.tgz", + "integrity": "sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha1-wUwk8Y6oGQwRjudWK3/5mjZVJoY=", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/@types/istanbul-reports/download/@types/istanbul-reports-3.0.1.tgz", + "integrity": "sha1-kVP+mLuivVZaY63ZQ21vDX+EaP8=", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/@types/jest/download/@types/jest-27.4.0.tgz", + "integrity": "sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==", + "dependencies": { + "jest-diff": "^27.0.0", + "pretty-format": "^27.0.0" + } + }, + "node_modules/@types/js-cookie": { + "version": "2.2.7", + "resolved": "https://registry.npmmirror.com/@types/js-cookie/download/@types/js-cookie-2.2.7.tgz", + "integrity": "sha1-ImqeMWgINaYYjoh/OYjmDATT9qM=" + }, + "node_modules/@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmmirror.com/@types/json-schema/download/@types/json-schema-7.0.9.tgz?cache=0&sync_timestamp=1637266119442&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fjson-schema%2Fdownload%2F%40types%2Fjson-schema-7.0.9.tgz", + "integrity": "sha1-l+3JA36gw4WFMgsolk3eOznkZg0=" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.nlark.com/@types/json5/download/@types/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + }, + "node_modules/@types/lodash": { + "version": "4.14.178", + "resolved": "https://registry.npmmirror.com/@types/lodash/download/@types/lodash-4.14.178.tgz", + "integrity": "sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw==", + "dev": true + }, + "node_modules/@types/mapbox-gl": { + "version": "1.13.2", + "resolved": "https://registry.npmmirror.com/@types/mapbox-gl/download/@types/mapbox-gl-1.13.2.tgz", + "integrity": "sha1-0glZ0CucoXoqMkQ4fx2nY5ku0R0=", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmmirror.com/@types/mime/download/@types/mime-1.3.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fmime%2Fdownload%2F%40types%2Fmime-1.3.2.tgz", + "integrity": "sha1-k+Jb+e51/g/YC1lLxP6w6GIRG1o=" + }, + "node_modules/@types/node": { + "version": "16.11.17", + "resolved": "https://registry.npmmirror.com/@types/node/download/@types/node-16.11.17.tgz", + "integrity": "sha512-C1vTZME8cFo8uxY2ui41xcynEotVkczIVI5AjLmy5pkpBv/FtG+jhtOlfcPysI8VRVwoOMv6NJm44LGnoMSWkw==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/@types/parse-json/download/@types/parse-json-4.0.0.tgz?cache=0&sync_timestamp=1637269948744&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fparse-json%2Fdownload%2F%40types%2Fparse-json-4.0.0.tgz", + "integrity": "sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=" + }, + "node_modules/@types/prettier": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/@types/prettier/download/@types/prettier-2.4.2.tgz?cache=0&sync_timestamp=1637269803025&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fprettier%2Fdownload%2F%40types%2Fprettier-2.4.2.tgz", + "integrity": "sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.4", + "resolved": "https://registry.npmmirror.com/@types/prop-types/download/@types/prop-types-15.7.4.tgz", + "integrity": "sha1-/PcgXCXf95Xuea8eMNosl5CAjxE=" + }, + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmmirror.com/@types/q/download/@types/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmmirror.com/@types/qs/download/@types/qs-6.9.7.tgz?cache=0&sync_timestamp=1637268454704&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fqs%2Fdownload%2F%40types%2Fqs-6.9.7.tgz", + "integrity": "sha1-Y7t9Bn2xB8weRXwwO8JdUR/r9ss=" + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@types/range-parser/download/@types/range-parser-1.2.4.tgz?cache=0&sync_timestamp=1637268455466&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Frange-parser%2Fdownload%2F%40types%2Frange-parser-1.2.4.tgz", + "integrity": "sha1-zWZ7z90CUhOq+3ylkVqTJZCs3Nw=" + }, + "node_modules/@types/react": { + "version": "17.0.38", + "resolved": "https://registry.npmmirror.com/@types/react/download/@types/react-17.0.38.tgz", + "integrity": "sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "17.0.11", + "resolved": "https://registry.npmmirror.com/@types/react-dom/download/@types/react-dom-17.0.11.tgz", + "integrity": "sha512-f96K3k+24RaLGVu/Y2Ng3e1EbZ8/cVJvypZWd7cy0ofCBaf2lcM46xNhycMZ2xGwbBjRql7hOlZ+e2WlJ5MH3Q==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-redux": { + "version": "7.1.22", + "resolved": "https://registry.npmmirror.com/@types/react-redux/download/@types/react-redux-7.1.22.tgz", + "integrity": "sha512-GxIA1kM7ClU73I6wg9IRTVwSO9GS+SAKZKe0Enj+82HMU6aoESFU2HNAdNi3+J53IaOHPiUfT3kSG4L828joDQ==", + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "node_modules/@types/react-router": { + "version": "5.1.18", + "resolved": "https://registry.npmmirror.com/@types/react-router/download/@types/react-router-5.1.18.tgz", + "integrity": "sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g==", + "dev": true, + "dependencies": { + "@types/history": "^4.7.11", + "@types/react": "*" + } + }, + "node_modules/@types/resize-observer-browser": { + "version": "0.1.6", + "resolved": "https://registry.npmmirror.com/@types/resize-observer-browser/download/@types/resize-observer-browser-0.1.6.tgz", + "integrity": "sha1-2ObC+DDiZQ3Ab+dEZEcv9ktUowI=" + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmmirror.com/@types/resolve/download/@types/resolve-1.17.1.tgz?cache=0&sync_timestamp=1637269963703&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fresolve%2Fdownload%2F%40types%2Fresolve-1.17.1.tgz", + "integrity": "sha1-Ov1q2JZ8d+Q3bFmKgt3Vj0bsRdY=", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.1", + "resolved": "https://registry.npmmirror.com/@types/retry/download/@types/retry-0.12.1.tgz?cache=0&sync_timestamp=1637270516824&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fretry%2Fdownload%2F%40types%2Fretry-0.12.1.tgz", + "integrity": "sha1-2PHA0Nwjr61twWqemToIZXdLQGU=" + }, + "node_modules/@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmmirror.com/@types/scheduler/download/@types/scheduler-0.16.2.tgz?cache=0&sync_timestamp=1637270013832&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fscheduler%2Fdownload%2F%40types%2Fscheduler-0.16.2.tgz", + "integrity": "sha1-GmL4lSVyPd4kuhsBsJK/XfitTTk=" + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmmirror.com/@types/serve-index/download/@types/serve-index-1.9.1.tgz?cache=0&sync_timestamp=1637271402680&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fserve-index%2Fdownload%2F%40types%2Fserve-index-1.9.1.tgz", + "integrity": "sha1-G16FNwoZLAHsbOxHNc8pFzN6Yng=", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.13.10", + "resolved": "https://registry.npmmirror.com/@types/serve-static/download/@types/serve-static-1.13.10.tgz", + "integrity": "sha1-9eDOh5fS18xevtpIpSyWxPpHqNk=", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmmirror.com/@types/sockjs/download/@types/sockjs-0.3.33.tgz", + "integrity": "sha1-Vw06C5msmVNg4xNv1gRRE7G9I28=", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@types/stack-utils/download/@types/stack-utils-2.0.1.tgz", + "integrity": "sha1-IPGClPeX8iCbX2XI47XI6CYdEnw=" + }, + "node_modules/@types/testing-library__jest-dom": { + "version": "5.14.2", + "resolved": "https://registry.npmmirror.com/@types/testing-library__jest-dom/download/@types/testing-library__jest-dom-5.14.2.tgz", + "integrity": "sha512-vehbtyHUShPxIa9SioxDwCvgxukDMH//icJG90sXQBUm5lJOHLT5kNeU9tnivhnA/TkOFMzGIXN2cTc4hY8/kg==", + "dependencies": { + "@types/jest": "*" + } + }, + "node_modules/@types/trusted-types": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/@types/trusted-types/download/@types/trusted-types-2.0.2.tgz?cache=0&sync_timestamp=1637274283760&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Ftrusted-types%2Fdownload%2F%40types%2Ftrusted-types-2.0.2.tgz", + "integrity": "sha1-/CWtmUO8rBHM64Fo208nXg5y51Y=" + }, + "node_modules/@types/ws": { + "version": "8.2.2", + "resolved": "https://registry.npmmirror.com/@types/ws/download/@types/ws-8.2.2.tgz", + "integrity": "sha512-NOn5eIcgWLOo6qW8AcuLZ7G8PycXu0xTxxkS6Q18VWFxgPUSOwV0pBj2a/4viNZVu25i7RIB7GttdkAIUUXOOg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmmirror.com/@types/yargs/download/@types/yargs-16.0.4.tgz", + "integrity": "sha1-JqrZjdLCo45CEIbqmtQrnlFkKXc=", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "20.2.1", + "resolved": "https://registry.npmmirror.com/@types/yargs-parser/download/@types/yargs-parser-20.2.1.tgz?cache=0&sync_timestamp=1637270733678&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fyargs-parser%2Fdownload%2F%40types%2Fyargs-parser-20.2.1.tgz", + "integrity": "sha1-O5ziSJkZ2eT+pDm3aRarw0st8Sk=" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-5.8.1.tgz", + "integrity": "sha512-wTZ5oEKrKj/8/366qTM366zqhIKAp6NCMweoRONtfuC07OAU9nVI2GZZdqQ1qD30WAAtcPdkH+npDwtRFdp4Rw==", + "dependencies": { + "@typescript-eslint/experimental-utils": "5.8.1", + "@typescript-eslint/scope-manager": "5.8.1", + "debug": "^4.3.2", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/ignore/download/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-5.8.1.tgz", + "integrity": "sha512-fbodVnjIDU4JpeXWRDsG5IfIjYBxEvs8EBO8W1+YVdtrc2B9ppfof5sZhVEDOtgTfFHnYQJDI8+qdqLYO4ceww==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.8.1", + "@typescript-eslint/types": "5.8.1", + "@typescript-eslint/typescript-estree": "5.8.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1637466831846&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz", + "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz?cache=0&sync_timestamp=1635237716974&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/download/@typescript-eslint/parser-5.8.1.tgz", + "integrity": "sha512-K1giKHAjHuyB421SoXMXFHHVI4NdNY603uKw92++D3qyxSeYvC10CBJ/GE5Thpo4WTUvu1mmJI2/FFkz38F2Gw==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.8.1", + "@typescript-eslint/types": "5.8.1", + "@typescript-eslint/typescript-estree": "5.8.1", + "debug": "^4.3.2" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-5.8.1.tgz", + "integrity": "sha512-DGxJkNyYruFH3NIZc3PwrzwOQAg7vvgsHsHCILOLvUpupgkwDZdNq/cXU3BjF4LNrCsVg0qxEyWasys5AiJ85Q==", + "dependencies": { + "@typescript-eslint/types": "5.8.1", + "@typescript-eslint/visitor-keys": "5.8.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/download/@typescript-eslint/types-5.8.1.tgz", + "integrity": "sha512-L/FlWCCgnjKOLefdok90/pqInkomLnAcF9UAzNr+DSqMC3IffzumHTQTrINXhP1gVp9zlHiYYjvozVZDPleLcA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-5.8.1.tgz", + "integrity": "sha512-26lQ8l8tTbG7ri7xEcCFT9ijU5Fk+sx/KRRyyzCv7MQ+rZZlqiDPtMKWLC8P7o+dtCnby4c+OlxuX1tp8WfafQ==", + "dependencies": { + "@typescript-eslint/types": "5.8.1", + "@typescript-eslint/visitor-keys": "5.8.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-5.8.1.tgz", + "integrity": "sha512-SWgiWIwocK6NralrJarPZlWdr0hZnj5GXHIgfdm8hNkyKvpeQuFyLP6YjSIe9kf3YBIfU6OHSZLYkQ+smZwtNg==", + "dependencies": { + "@typescript-eslint/types": "5.8.1", + "eslint-visitor-keys": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@umijs/route-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/@umijs/route-utils/download/@umijs/route-utils-2.0.4.tgz?cache=0&sync_timestamp=1637049115090&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40umijs%2Froute-utils%2Fdownload%2F%40umijs%2Froute-utils-2.0.4.tgz", + "integrity": "sha512-YWxGHZhIMLrsiydu8P/v2SNuuqRfRbLaZ5mc1K9snTf6yQ+TEGFrpU8uLxp2iRBijMBD0CFyrWNuhlB/bvluUQ==", + "dependencies": { + "@qixian.cs/path-to-regexp": "^6.1.0", + "fast-deep-equal": "^3.1.3", + "lodash.isequal": "^4.5.0", + "memoize-one": "^5.1.1" + } + }, + "node_modules/@umijs/route-utils/node_modules/memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmmirror.com/memoize-one/download/memoize-one-5.2.1.tgz?cache=0&sync_timestamp=1634697208428&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmemoize-one%2Fdownload%2Fmemoize-one-5.2.1.tgz", + "integrity": "sha1-gzeqPEM1WBg57AHD1ZQJDOvo8A4=" + }, + "node_modules/@umijs/ssr-darkreader": { + "version": "4.9.44", + "resolved": "https://registry.npmmirror.com/@umijs/ssr-darkreader/download/@umijs/ssr-darkreader-4.9.44.tgz", + "integrity": "sha512-HppwdNiHI4hA/WP29HGLr1c1Hn2+g+EDzcHrXXaad1ftfxQc52/yljDB4cX8yna8l3WcGw7CgVer7/uHRyYNMg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/darkreader" + } + }, + "node_modules/@umijs/use-params": { + "version": "1.0.9", + "resolved": "https://registry.npmmirror.com/@umijs/use-params/download/@umijs/use-params-1.0.9.tgz", + "integrity": "sha512-QlN0RJSBVQBwLRNxbxjQ5qzqYIGn+K7USppMoIOVlf7fxXHsnQZ2bEsa6Pm74bt6DVQxpUE8HqvdStn6Y9FV1w==", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.11.1.tgz", + "integrity": "sha1-K/12fq4aaZb0Mv9+jX/HVnnAtqc=", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/floating-point-hex-parser/download/@webassemblyjs/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha1-9sYacF8P16auyqToGY8j2dwXnk8=" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.11.1.tgz?cache=0&sync_timestamp=1625473346773&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40webassemblyjs%2Fhelper-api-error%2Fdownload%2F%40webassemblyjs%2Fhelper-api-error-1.11.1.tgz", + "integrity": "sha1-GmMZLYeI5cASgAump6RscFKI/RY=" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.11.1.tgz", + "integrity": "sha1-gyqQDrREiEzemnytRn+BUA9eWrU=" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-numbers/download/@webassemblyjs/helper-numbers-1.11.1.tgz", + "integrity": "sha1-ZNgdohn7u6HjvRv8dPboxOEKYq4=", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha1-8ygkHkHnsZnQsgwY6IQpxEMyleE=" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-section/download/@webassemblyjs/helper-wasm-section-1.11.1.tgz", + "integrity": "sha1-Ie4GWntjXzGec48N1zv72igcCXo=", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.11.1.tgz?cache=0&sync_timestamp=1625473413840&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40webassemblyjs%2Fieee754%2Fdownload%2F%40webassemblyjs%2Fieee754-1.11.1.tgz", + "integrity": "sha1-ljkp6bvQVwnn4SJDoJkYCBKZJhQ=", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.11.1.tgz", + "integrity": "sha1-zoFLRVdOk9drrh+yZEq5zdlSeqU=", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.11.1.tgz", + "integrity": "sha1-0fi3ZDaefG5rrjUOhU3smlnwo/8=" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.11.1.tgz", + "integrity": "sha1-rSBuv0v5WgWM6YgKjAksXeyBk9Y=", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.11.1.tgz", + "integrity": "sha1-hsXqMEhJdZt9iMR6MvTwOa48j3Y=", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-opt/download/@webassemblyjs/wasm-opt-1.11.1.tgz", + "integrity": "sha1-ZXtMIgL0zzs0X4pMZGHIwkGJhfI=", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.11.1.tgz", + "integrity": "sha1-hspzRTT0F+m9PGfHocddi+QfsZk=", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.11.1.tgz", + "integrity": "sha1-0Mc77ajuxUJvEK6O9VzuXnCEwvA=", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webgpu/glslang": { + "version": "0.0.15", + "resolved": "https://registry.npm.taobao.org/@webgpu/glslang/download/@webgpu/glslang-0.0.15.tgz", + "integrity": "sha1-9cyvYBUkHmF19LkJBrBT+ISD0fI=" + }, + "node_modules/@webgpu/types": { + "version": "0.0.31", + "resolved": "https://registry.npmmirror.com/@webgpu/types/download/@webgpu/types-0.0.31.tgz", + "integrity": "sha1-wF7G5gAkvxg28xI27NdnepaaKiw=" + }, + "node_modules/@xobotyi/scrollbar-width": { + "version": "1.9.5", + "resolved": "https://registry.npm.taobao.org/@xobotyi/scrollbar-width/download/@xobotyi/scrollbar-width-1.9.5.tgz", + "integrity": "sha1-gCJKaRknL0Bbh5E8oTuSkpvfPE0=" + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/@xtuc/ieee754/download/@xtuc/ieee754-1.2.0.tgz", + "integrity": "sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/@xtuc/long/download/@xtuc/long-4.2.2.tgz", + "integrity": "sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=" + }, + "node_modules/abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz", + "integrity": "sha1-wLZ4+zLWD8EhnHhNaoJv44Wut5o=" + }, + "node_modules/accepts": { + "version": "1.3.7", + "resolved": "https://registry.nlark.com/accepts/download/accepts-1.3.7.tgz", + "integrity": "sha1-UxvHJlF6OytB+FACHGzBXqq1B80=", + "dependencies": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.7.0", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/acorn-globals/download/acorn-globals-6.0.0.tgz", + "integrity": "sha1-Rs3Tnw+P8IqHZhm1X1rIptx3C0U=", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz", + "integrity": "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmmirror.com/acorn-import-assertions/download/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha1-uitZOc5iwjjbbZPYHJsRGym4Vek=", + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz?cache=0&sync_timestamp=1625793240297&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-jsx%2Fdownload%2Facorn-jsx-5.3.2.tgz", + "integrity": "sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npm.taobao.org/acorn-node/download/acorn-node-1.8.2.tgz", + "integrity": "sha1-EUyV1kU55T3t4j3oudlt98euKvg=", + "dependencies": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + } + }, + "node_modules/acorn-node/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz", + "integrity": "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1630916588767&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz", + "integrity": "sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/add-dom-event-listener": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/add-dom-event-listener/download/add-dom-event-listener-1.1.0.tgz", + "integrity": "sha1-apLbOg3Qq8JU4JXA8dwUrLuq4xA=", + "dependencies": { + "object-assign": "4.x" + } + }, + "node_modules/address": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz", + "integrity": "sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY=", + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/adjust-sourcemap-loader/download/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha1-/EoP0ID30QRx8wpzIPJVYK3ijJk=", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npm.taobao.org/agent-base/download/agent-base-6.0.2.tgz", + "integrity": "sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c=", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/aggregate-error/download/aggregate-error-3.1.0.tgz?cache=0&sync_timestamp=1618681544430&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Faggregate-error%2Fdownload%2Faggregate-error-3.1.0.tgz", + "integrity": "sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo=", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/ajv-formats/download/ajv-formats-2.1.1.tgz?cache=0&sync_timestamp=1636312243183&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-formats%2Fdownload%2Fajv-formats-2.1.1.tgz", + "integrity": "sha1-bmaUAGWet0lzu/LjMycYCgmWtSA=", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-3.5.2.tgz", + "integrity": "sha1-MfKdpatuANHC0yms97WSlhTVAU0=", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/align-text": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/align-text/download/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dependencies": { + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/align-text/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "node_modules/amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/amdefine/download/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "engines": { + "node": ">=0.4.2" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/ansi-align/download/ansi-align-3.0.1.tgz?cache=0&sync_timestamp=1632743770230&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fansi-align%2Fdownload%2Fansi-align-3.0.1.tgz", + "integrity": "sha1-DN8S4RGs53OobpofrRIlxDyxmlk=", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/ansi-colors/download/ansi-colors-4.1.1.tgz", + "integrity": "sha1-y7muJWv3UK8eqzRPIpqif+lLo0g=", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-escapes%2Fdownload%2Fansi-escapes-4.3.2.tgz", + "integrity": "sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.nlark.com/ansi-html-community/download/ansi-html-community-0.0.8.tgz", + "integrity": "sha1-afvE1sy+OD+XNpNK40w/gpDxv0E=", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ansicolors": { + "version": "0.2.1", + "resolved": "https://registry.npm.taobao.org/ansicolors/download/ansicolors-0.2.1.tgz?cache=0&sync_timestamp=1610107434317&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansicolors%2Fdownload%2Fansicolors-0.2.1.tgz", + "integrity": "sha1-vgiVmQl7dKXJxKhKDNvNtivYeu8=" + }, + "node_modules/antd": { + "version": "4.18.3", + "resolved": "https://registry.npmmirror.com/antd/download/antd-4.18.3.tgz", + "integrity": "sha512-EoCMY8pFKX9IVAc0Bdi3DWR03IIOHa6mTZALOGjrKbPm3kbrcvoBTCNXq4BMeVA1dZbMeoBw46peeJLyMp2avw==", + "dependencies": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons": "^4.7.0", + "@ant-design/react-slick": "~0.28.1", + "@babel/runtime": "^7.12.5", + "@ctrl/tinycolor": "^3.4.0", + "array-tree-filter": "^2.1.0", + "classnames": "^2.2.6", + "copy-to-clipboard": "^3.2.0", + "lodash": "^4.17.21", + "memoize-one": "^6.0.0", + "moment": "^2.25.3", + "rc-cascader": "~3.0.0-alpha.3", + "rc-checkbox": "~2.3.0", + "rc-collapse": "~3.1.0", + "rc-dialog": "~8.6.0", + "rc-drawer": "~4.4.2", + "rc-dropdown": "~3.2.0", + "rc-field-form": "~1.22.0-2", + "rc-image": "~5.2.5", + "rc-input-number": "~7.3.0", + "rc-mentions": "~1.6.1", + "rc-menu": "~9.2.1", + "rc-motion": "^2.4.4", + "rc-notification": "~4.5.7", + "rc-pagination": "~3.1.9", + "rc-picker": "~2.5.17", + "rc-progress": "~3.2.1", + "rc-rate": "~2.9.0", + "rc-resize-observer": "^1.1.2", + "rc-select": "~14.0.0-alpha.15", + "rc-slider": "~9.7.4", + "rc-steps": "~4.1.0", + "rc-switch": "~3.2.0", + "rc-table": "~7.22.2", + "rc-tabs": "~11.10.0", + "rc-textarea": "~0.3.0", + "rc-tooltip": "~5.1.1", + "rc-tree": "~5.3.5", + "rc-tree-select": "~5.0.0-alpha.2", + "rc-trigger": "^5.2.10", + "rc-upload": "~4.3.0", + "rc-util": "^5.14.0", + "scroll-into-view-if-needed": "^2.2.25" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd-dayjs-webpack-plugin": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/antd-dayjs-webpack-plugin/download/antd-dayjs-webpack-plugin-1.0.6.tgz", + "integrity": "sha1-fZi8tRQiJIuM1KMuNSoEJaO/+jo=", + "dev": true, + "peerDependencies": { + "dayjs": "*" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz", + "integrity": "sha1-wFV8CWrzLxBhmPT04qODU343hxY=", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/arg/download/arg-5.0.1.tgz", + "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/argparse/download/argparse-1.0.10.tgz", + "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmmirror.com/aria-query/download/aria-query-4.2.2.tgz", + "integrity": "sha1-DSymyazrVriXfp/tau1+FbvS+Ds=", + "dependencies": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-2.1.2.tgz", + "integrity": "sha1-JO+AoowaiTYX4hSbDG0NeIKTsJk=" + }, + "node_modules/array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmmirror.com/array-includes/download/array-includes-3.1.4.tgz", + "integrity": "sha1-9bSTFix2DzU5Yx8AW6K7Rqy0W6k=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-tree-filter": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/array-tree-filter/download/array-tree-filter-2.1.0.tgz", + "integrity": "sha1-hzrAD+yDdJ8lWsjdCDgUtPYykZA=" + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/array-union/download/array-union-2.1.0.tgz?cache=0&sync_timestamp=1614624423985&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray-union%2Fdownload%2Farray-union-2.1.0.tgz", + "integrity": "sha1-t5hCCtvrHego2ErNii4j0+/oXo0=", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/array.prototype.flat/download/array.prototype.flat-1.2.5.tgz?cache=0&sync_timestamp=1633109738357&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Farray.prototype.flat%2Fdownload%2Farray.prototype.flat-1.2.5.tgz", + "integrity": "sha1-B+CXXYS7x8SM0YedYJ5oJZjTPhM=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/array.prototype.flatmap/download/array.prototype.flatmap-1.2.5.tgz?cache=0&sync_timestamp=1633120316679&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Farray.prototype.flatmap%2Fdownload%2Farray.prototype.flatmap-1.2.5.tgz", + "integrity": "sha1-kI3ILYpAaTD984WY1R50EdGNREY=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/as-number": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/as-number/download/as-number-1.0.0.tgz", + "integrity": "sha1-rLJ+NPj52KsNqeN287iVmGD4CmY=" + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/asap/download/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.nlark.com/ast-types-flow/download/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/astral-regex/download/astral-regex-2.0.0.tgz", + "integrity": "sha1-SDFDxWeu7UeFdZwIZXhtx319LjE=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "2.6.3", + "resolved": "https://registry.npmmirror.com/async/download/async-2.6.3.tgz", + "integrity": "sha1-1yYl4jRKNlbjo61Pp0n6gymdgv8=", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-validator": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-4.0.7.tgz", + "integrity": "sha512-Pj2IR7u8hmUEDOwB++su6baaRi+QvsgajuFB9j95foM1N2gy5HM4z60hfusIO0fBPG5uLAEl6yCJr1jNSVugEQ==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/asynckit/download/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/at-least-node/download/at-least-node-1.0.0.tgz", + "integrity": "sha1-YCzUtG6EStTv/JKoARo8RuAjjcI=", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/atob/download/atob-2.1.2.tgz", + "integrity": "sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k=", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.1", + "resolved": "https://registry.npmmirror.com/autoprefixer/download/autoprefixer-10.4.1.tgz", + "integrity": "sha512-B3ZEG7wtzXDRCEFsan7HmR2AeNsxdJB0+sEC0Hc5/c2NbhJqPwuZm+tn233GBVw82L+6CtD6IPSfVruwKjfV3A==", + "dependencies": { + "browserslist": "^4.19.1", + "caniuse-lite": "^1.0.30001294", + "fraction.js": "^4.1.2", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axe-core": { + "version": "4.3.5", + "resolved": "https://registry.npmmirror.com/axe-core/download/axe-core-4.3.5.tgz", + "integrity": "sha1-eNaRG6MXqCYr/uKSrq/MHgS0nMU=", + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "0.24.0", + "resolved": "https://registry.npmmirror.com/axios/download/axios-0.24.0.tgz", + "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==", + "dependencies": { + "follow-redirects": "^1.14.4" + } + }, + "node_modules/axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/axobject-query/download/axobject-query-2.2.0.tgz?cache=0&sync_timestamp=1633307800617&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Faxobject-query%2Fdownload%2Faxobject-query-2.2.0.tgz", + "integrity": "sha1-lD1H4QwLcEqkInXiDt83ImSJib4=" + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmmirror.com/babel-eslint/download/babel-eslint-10.1.0.tgz", + "integrity": "sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI=", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "dev": true, + "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" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-eslint/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/babel-jest/download/babel-jest-27.4.5.tgz", + "integrity": "sha512-3uuUTjXbgtODmSv/DXO9nZfD52IyC2OYTFaXGRzL0kpykzroaquCrD5+lZNafTvZlnNqZHt5pb0M08qVBZnsnA==", + "dependencies": { + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^27.4.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader": { + "version": "8.2.3", + "resolved": "https://registry.npmmirror.com/babel-loader/download/babel-loader-8.2.3.tgz", + "integrity": "sha1-iYa0Dxpkys/LS4QpMgCF72ixNC0=", + "dev": true, + "license": "MIT", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/babel-loader/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/loader-utils/download/loader-utils-1.4.0.tgz", + "integrity": "sha1-xXm140yzSxp07cbB+za/o3HVphM=", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-2.7.1.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-2.7.1.tgz", + "integrity": "sha1-HKTzLRskxZDCA7jnpQvw6kzTlNc=", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + } + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npm.taobao.org/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha1-hP2hnJduxcbe/vV/lCez3vZuF6M=", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-import": { + "version": "1.13.3", + "resolved": "https://registry.npmmirror.com/babel-plugin-import/download/babel-plugin-import-1.13.3.tgz", + "integrity": "sha1-nbu6fRrHK9QSkXqDDUReAJQdJtc=", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/runtime": "^7.0.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmmirror.com/babel-plugin-istanbul/download/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha1-+ojsWSMv2bTjbbvFQKjsmptH2nM=", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-27.4.0.tgz", + "integrity": "sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/babel-plugin-macros/download/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha1-nvbcdN65NLTbNE3Jc+6FHRSMUME=", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmmirror.com/babel-plugin-named-asset-import/download/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.3.0.tgz?cache=0&sync_timestamp=1636799826882&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbabel-plugin-polyfill-corejs2%2Fdownload%2Fbabel-plugin-polyfill-corejs2-0.3.0.tgz", + "integrity": "sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==", + "dependencies": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.0", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.5.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.5.0.tgz", + "integrity": "sha512-Hcrgnmkf+4JTj73GbK3bBhlVPiLL47owUAnoJIf69Hakl3q+KfodbDXiZWGMM7iqCZTxCG3Z2VRfPNYES4rXqQ==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.0", + "core-js-compat": "^3.20.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.3.0.tgz?cache=0&sync_timestamp=1636799716073&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbabel-plugin-polyfill-regenerator%2Fdownload%2Fbabel-plugin-polyfill-regenerator-0.3.0.tgz", + "integrity": "sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-transform-globalthis": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-transform-globalthis/download/babel-plugin-transform-globalthis-1.0.0.tgz", + "integrity": "sha1-xreSUlGO5pFhx70gxIne9P0LNnw=", + "engines": { + "node": ">=10" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/babel-plugin-transform-react-remove-prop-types/download/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha1-8u2vm0xqX75cHWeL+1MQeMFVXzo=" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/babel-preset-current-node-syntax/download/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha1-tDmSObibKgEfndvj5PQB/EDP9zs=", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/babel-preset-jest/download/babel-preset-jest-27.4.0.tgz", + "integrity": "sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==", + "dependencies": { + "babel-plugin-jest-hoist": "^27.4.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmmirror.com/babel-preset-react-app/download/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/balanced-match/download/balanced-match-1.0.2.tgz", + "integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=" + }, + "node_modules/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/basic-auth/download/basic-auth-2.0.1.tgz", + "integrity": "sha1-uZgnm/R844NEtPPPkW1Gebv1Hjo=", + "dev": true, + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmmirror.com/batch/download/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "node_modules/bfj": { + "version": "7.0.2", + "resolved": "https://registry.npm.taobao.org/bfj/download/bfj-7.0.2.tgz", + "integrity": "sha1-GYjOdvOt2awpE/2LpHqtnmUb+7I=", + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmmirror.com/big-integer/download/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmmirror.com/big.js/download/big.js-5.2.2.tgz", + "integrity": "sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz", + "integrity": "sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=", + "engines": { + "node": ">=8" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.nlark.com/bluebird/download/bluebird-3.7.2.tgz", + "integrity": "sha1-nyKcFb4nJFT/qXOs4NvueaGww28=" + }, + "node_modules/body-parser": { + "version": "1.19.1", + "resolved": "https://registry.npmmirror.com/body-parser/download/body-parser-1.19.1.tgz", + "integrity": "sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA==", + "dependencies": { + "bytes": "3.1.1", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.9.6", + "raw-body": "2.4.2", + "type-is": "~1.6.18" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/bytes/download/bytes-3.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbytes%2Fdownload%2Fbytes-3.1.1.tgz", + "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.nlark.com/bonjour/download/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "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" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/boolbase/download/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/boxen/download/boxen-5.1.2.tgz?cache=0&sync_timestamp=1634028552381&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fboxen%2Fdownload%2Fboxen-5.1.2.tgz", + "integrity": "sha1-eIy2hvyDwfSG36ikDGj8K4MdK1A=", + "dev": true, + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/boxen/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/boxen/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "node_modules/boxen/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.20.2.tgz", + "integrity": "sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz?cache=0&sync_timestamp=1614010713935&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrace-expansion%2Fdownload%2Fbrace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/braces/download/braces-3.0.2.tgz", + "integrity": "sha1-NFThpGLujVmeI23zNs2epPiv4Qc=", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/broadcast-channel": { + "version": "3.7.0", + "resolved": "https://registry.npmmirror.com/broadcast-channel/download/broadcast-channel-3.7.0.tgz", + "integrity": "sha1-Lfpce0KJVHrD9nBfnACvhyOImTc=", + "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" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha1-PJtLfXgsgSHlbxAQbYTA0P/JRiY=" + }, + "node_modules/browserslist": { + "version": "4.19.1", + "resolved": "https://registry.npmmirror.com/browserslist/download/browserslist-4.19.1.tgz", + "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==", + "dependencies": { + "caniuse-lite": "^1.0.30001286", + "electron-to-chromium": "^1.4.17", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/bser/download/bser-2.1.1.tgz", + "integrity": "sha1-5nh9og7OnQeZhTPP2d5vXDj0vAU=", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.2.tgz?cache=0&sync_timestamp=1627578710888&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbuffer-from%2Fdownload%2Fbuffer-from-1.1.2.tgz", + "integrity": "sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U=" + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/buffer-indexof/download/buffer-indexof-1.1.1.tgz", + "integrity": "sha1-Uvq8xqYG0aADAoAmSO9o9jnaJow=" + }, + "node_modules/builtin-modules": { + "version": "3.2.0", + "resolved": "https://registry.npm.taobao.org/builtin-modules/download/builtin-modules-3.2.0.tgz", + "integrity": "sha1-RdXbmefuXmvE82LgCL+RerUEmIc=", + "engines": { + "node": ">=6" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/bytes/download/bytes-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbytes%2Fdownload%2Fbytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/cacheable-request/download/cacheable-request-6.1.0.tgz?cache=0&sync_timestamp=1623237563054&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacheable-request%2Fdownload%2Fcacheable-request-6.1.0.tgz", + "integrity": "sha1-IP+4vRYrpL4R6VZ9gj22UQUsqRI=", + "dev": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz", + "integrity": "sha1-SWaheV7lrOZecGxLe+txJX1uItM=", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/lowercase-keys/download/lowercase-keys-2.0.0.tgz?cache=0&sync_timestamp=1634551808987&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flowercase-keys%2Fdownload%2Flowercase-keys-2.0.0.tgz", + "integrity": "sha1-JgPni3tLAAbLyi+8yKMgJVislHk=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-4.5.1.tgz", + "integrity": "sha1-DdkM8SiO4dExO4cIHJpZMu5IUYo=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz", + "integrity": "sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz", + "integrity": "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/camel-case/download/camel-case-4.1.2.tgz", + "integrity": "sha1-lygHKpVPgFIoIlpt7qazhGHhvVo=", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/camelcase/download/camelcase-6.2.1.tgz?cache=0&sync_timestamp=1636945191390&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcamelcase%2Fdownload%2Fcamelcase-6.2.1.tgz", + "integrity": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/camelcase-css/download/camelcase-css-2.0.1.tgz", + "integrity": "sha1-7pePaUeRTMMMa0R0G27R338EP9U=", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "integrity": "sha1-Xk2Q4idJYdRikZl99Znj7QCO5MA=", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001294", + "resolved": "https://registry.npmmirror.com/caniuse-lite/download/caniuse-lite-1.0.30001294.tgz", + "integrity": "sha512-LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/cardinal": { + "version": "0.4.4", + "resolved": "https://registry.npm.taobao.org/cardinal/download/cardinal-0.4.4.tgz", + "integrity": "sha1-ylu2iltRG5D+k7ms6km97lwyv+I=", + "dependencies": { + "ansicolors": "~0.2.1", + "redeyed": "~0.4.0" + }, + "bin": { + "cdl": "bin/cdl.js" + } + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npm.taobao.org/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha1-22QGbGQi7tLgjMFLmGykN5bbxtQ=", + "engines": { + "node": ">=4" + } + }, + "node_modules/center-align": { + "version": "0.1.3", + "resolved": "https://registry.nlark.com/center-align/download/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "dependencies": { + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-2.4.2.tgz", + "integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/char-regex/download/char-regex-1.0.2.tgz", + "integrity": "sha1-10Q1giYhf5ge1Y9Hmx1rzClUXc8=", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.1.2", + "resolved": "https://registry.nlark.com/check-types/download/check-types-11.1.2.tgz", + "integrity": "sha1-hqfBK/VTn2Mk6w5wyoiWwOOPPi8=" + }, + "node_modules/chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmmirror.com/chokidar/download/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/download/glob-parent-5.1.2.tgz", + "integrity": "sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz", + "integrity": "sha1-EBXs7UdB4V0GZkqVfbv1DQQeJqw=", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/ci-info/download/ci-info-3.3.0.tgz", + "integrity": "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==" + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/cjs-module-lexer/download/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha1-n4S6MkSlEvOlTlJ36O70xImGTkA=" + }, + "node_modules/clamp": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/clamp/download/clamp-1.0.1.tgz", + "integrity": "sha1-ZqDmQBGBbjcZaCj9yMjBRzEshjQ=" + }, + "node_modules/classnames": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/classnames/download/classnames-2.3.1.tgz", + "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" + }, + "node_modules/clean-css": { + "version": "5.2.2", + "resolved": "https://registry.npmmirror.com/clean-css/download/clean-css-5.2.2.tgz?cache=0&sync_timestamp=1634992462165&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fclean-css%2Fdownload%2Fclean-css-5.2.2.tgz", + "integrity": "sha1-06fG7iURAR4FFxmDi9z4MU3EVI0=", + "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz?cache=0&sync_timestamp=1621915070206&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclean-stack%2Fdownload%2Fclean-stack-2.2.0.tgz", + "integrity": "sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npm.taobao.org/cli-boxes/download/cli-boxes-2.2.1.tgz", + "integrity": "sha1-3dUDXSUJT84iDpyrQKRYQKRAMY8=", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz?cache=0&sync_timestamp=1629747358529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcli-cursor%2Fdownload%2Fcli-cursor-3.1.0.tgz", + "integrity": "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-7.0.4.tgz?cache=0&sync_timestamp=1604880226973&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcliui%2Fdownload%2Fcliui-7.0.4.tgz", + "integrity": "sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08=", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/clone-response/download/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.nlark.com/co/download/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/coa/download/coa-2.0.2.tgz?cache=0&sync_timestamp=1636035838814&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcoa%2Fdownload%2Fcoa-2.0.2.tgz", + "integrity": "sha1-Q/bCEVG07yv1cYfbDXPeIp4+fsM=", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/collect-v8-coverage/download/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha1-zCyOlPwYu9/+ZNZTRXDIpnOyf1k=" + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmmirror.com/color/download/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-1.9.3.tgz", + "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/color-string": { + "version": "1.9.0", + "resolved": "https://registry.npmmirror.com/color-string/download/color-string-1.9.0.tgz", + "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/colord": { + "version": "2.9.2", + "resolved": "https://registry.npmmirror.com/colord/download/colord-2.9.2.tgz", + "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==" + }, + "node_modules/colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmmirror.com/colorette/download/colorette-2.0.16.tgz?cache=0&sync_timestamp=1633673060735&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcolorette%2Fdownload%2Fcolorette-2.0.16.tgz", + "integrity": "sha1-cTua+E/bAAE58EVGvUqT9ipQhdo=", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.nlark.com/combined-stream/download/combined-stream-1.0.8.tgz", + "integrity": "sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmmirror.com/commander/download/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/common-path-prefix/download/common-path-prefix-3.0.0.tgz", + "integrity": "sha1-fQB6fgfFjEtNX0MxMaGRQbKfEeA=" + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmmirror.com/common-tags/download/common-tags-1.8.2.tgz?cache=0&sync_timestamp=1637093345924&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcommon-tags%2Fdownload%2Fcommon-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/commondir/download/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.nlark.com/compressible/download/compressible-2.0.18.tgz", + "integrity": "sha1-r1PMprBw1MPAdQ+9dyhqbXzEb7o=", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.nlark.com/compression/download/compression-1.7.4.tgz?cache=0&sync_timestamp=1618846915701&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcompression%2Fdownload%2Fcompression-1.7.4.tgz", + "integrity": "sha1-lVI+/xcMpXwpoMpB5v4TH0Hlu48=", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/compute-scroll-into-view": { + "version": "1.0.17", + "resolved": "https://registry.nlark.com/compute-scroll-into-view/download/compute-scroll-into-view-1.0.17.tgz", + "integrity": "sha1-aojxis2dQunPS6pr7H4FImB6t6s=" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.nlark.com/concat-stream/download/concat-stream-1.6.2.tgz", + "integrity": "sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.nlark.com/readable-stream/download/readable-stream-2.3.7.tgz", + "integrity": "sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/string_decoder/download/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npm.taobao.org/configstore/download/configstore-5.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fconfigstore%2Fdownload%2Fconfigstore-5.0.1.tgz", + "integrity": "sha1-02UCG130uYzdGH1qOw4/anzF7ZY=", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmmirror.com/confusing-browser-globals/download/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/connect-pause": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/connect-pause/download/connect-pause-0.1.1.tgz", + "integrity": "sha1-smmyu4Ldsaw9tQmcD7WCq6mfs3o=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmmirror.com/content-disposition/download/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/safe-buffer/download/safe-buffer-5.2.1.tgz?cache=0&sync_timestamp=1618847044058&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsafe-buffer%2Fdownload%2Fsafe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=" + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/content-type/download/content-type-1.0.4.tgz", + "integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/contour_plot": { + "version": "0.0.1", + "resolved": "https://registry.npm.taobao.org/contour_plot/download/contour_plot-0.0.1.tgz", + "integrity": "sha1-R1hw8DK44zhBKqX8UHiA8L9JXHc=" + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.8.0.tgz", + "integrity": "sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k=", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/cookie/download/cookie-0.4.1.tgz", + "integrity": "sha1-r9cT/ibr0hupXOth+agRblClN9E=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/cookie-signature/download/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "node_modules/copy-anything": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/copy-anything/download/copy-anything-2.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcopy-anything%2Fdownload%2Fcopy-anything-2.0.3.tgz", + "integrity": "sha1-hCQHugJGaw34RIGbvjuuu+XUXYc=", + "dependencies": { + "is-what": "^3.12.0" + } + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/copy-to-clipboard/download/copy-to-clipboard-3.3.1.tgz", + "integrity": "sha1-EVqhqZmP+rYZb5MHatbaO5E2Yq4=", + "dependencies": { + "toggle-selection": "^1.0.6" + } + }, + "node_modules/core-js": { + "version": "3.20.1", + "resolved": "https://registry.npmmirror.com/core-js/download/core-js-3.20.1.tgz", + "integrity": "sha512-btdpStYFQScnNVQ5slVcr858KP0YWYjV16eGJQw8Gg7CWtu/2qNvIM3qVRIR3n1pK2R9NNOrTevbvAYxajwEjg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.20.2", + "resolved": "https://registry.npmmirror.com/core-js-compat/download/core-js-compat-3.20.2.tgz", + "integrity": "sha512-qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg==", + "dependencies": { + "browserslist": "^4.19.1", + "semver": "7.0.0" + } + }, + "node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/semver/download/semver-7.0.0.tgz", + "integrity": "sha1-XzyjV2HkfgWyBsba/yz4FPAxa44=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/core-js-pure": { + "version": "3.20.1", + "resolved": "https://registry.npmmirror.com/core-js-pure/download/core-js-pure-3.20.1.tgz", + "integrity": "sha512-yeNNr3L9cEBwNy6vhhIJ0nko7fE7uFO6PgawcacGt2VWep4WqQx0RiqlkgSP7kqUMC1IKdfO9qPeWXcUheHLVQ==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/core-util-is/download/core-util-is-1.0.3.tgz?cache=0&sync_timestamp=1630420577662&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-util-is%2Fdownload%2Fcore-util-is-1.0.3.tgz", + "integrity": "sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=" + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmmirror.com/cors/download/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "dev": true, + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-7.0.1.tgz", + "integrity": "sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz", + "integrity": "sha1-9zqFudXUHQRVUcF34ogtSshXKKY=", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/crypto-random-string/download/crypto-random-string-2.0.0.tgz?cache=0&sync_timestamp=1617610790785&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcrypto-random-string%2Fdownload%2Fcrypto-random-string-2.0.0.tgz", + "integrity": "sha1-7yp6lm7BEIM4g2m6oC6+rSKbMNU=", + "engines": { + "node": ">=8" + } + }, + "node_modules/css": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/css/download/css-3.0.0.tgz", + "integrity": "sha1-REek1Y/dAzZ8UWyp9krjZc7kql0=", + "dependencies": { + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/css-blank-pseudo/download/css-blank-pseudo-3.0.1.tgz", + "integrity": "sha512-ZGuwEmAZLsEHyKe/UVk+7Bj6Fl5nvxKAddxovyi5mI3jl4mFRqX7VW7M2ZejsE3XlWkL4GyVCifsKrmuxVdrcg==", + "dependencies": { + "postcss-selector-parser": "^6.0.8" + }, + "bin": { + "css-blank-pseudo": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.1.3", + "resolved": "https://registry.npmmirror.com/css-declaration-sorter/download/css-declaration-sorter-6.1.3.tgz", + "integrity": "sha1-6YUuTPlAunn1CdlCWxN9H5RDjcI=", + "dependencies": { + "timsort": "^0.3.0" + }, + "engines": { + "node": ">= 10" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/css-has-pseudo/download/css-has-pseudo-3.0.1.tgz", + "integrity": "sha512-yRZMyeJ8ebZAPuZmT66/2QjT0CR14qrQrbTSNc3cmTkVCKd/KkXcnO97WYWJlFQF6yzfNfOqG/9rISnrZ8SxZw==", + "dependencies": { + "postcss-selector-parser": "^6.0.8" + }, + "bin": { + "css-has-pseudo": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/css-in-js-utils": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/css-in-js-utils/download/css-in-js-utils-2.0.1.tgz", + "integrity": "sha1-O0crOYeHKRtHz+PkT+z92ekUupk=", + "dependencies": { + "hyphenate-style-name": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "node_modules/css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "dependencies": { + "utrie": "^1.0.2" + } + }, + "node_modules/css-loader": { + "version": "6.5.1", + "resolved": "https://registry.npmmirror.com/css-loader/download/css-loader-6.5.1.tgz?cache=0&sync_timestamp=1635967924209&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcss-loader%2Fdownload%2Fcss-loader-6.5.1.tgz", + "integrity": "sha1-DEPU++DZf2mckemBjLWFdZCR0bE=", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/css-minimizer-webpack-plugin/download/css-minimizer-webpack-plugin-3.3.1.tgz", + "integrity": "sha512-SHA7Hu/EiF0dOwdmV2+agvqYpG+ljlUa7Dvn1AVOmSH3N8KOERoaM9lGpstz9nGsoTjANGyUXdrxl/EwdMScRg==", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-5.1.0.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-4.0.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/css-prefers-color-scheme/download/css-prefers-color-scheme-6.0.1.tgz", + "integrity": "sha512-mTPYV3Ie8f0bw2ajimr4MOUDu5n5iYzhMrIOGN0zcwldAPYgdZc+xRMsSGhqQaNBZVNoxnoDr0m5icnqEyTtrA==", + "bin": { + "css-prefers-color-scheme": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/css-select": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/css-select/download/css-select-4.2.1.tgz", + "integrity": "sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^5.1.0", + "domhandler": "^4.3.0", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/css-select-base-adapter/download/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha1-Oy/0lyzDYquIVhUHqVQIoUMhNdc=" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmmirror.com/css-tree/download/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha1-mL69YsTB2flg7DQM+fdSLjBwmiI=", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/css-what/download/css-what-5.1.0.tgz", + "integrity": "sha1-P3tweq32M7r2LCzrhXm1RbtA9/4=", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npm.taobao.org/css.escape/download/css.escape-1.5.1.tgz", + "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" + }, + "node_modules/css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/csscolorparser": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/csscolorparser/download/csscolorparser-1.0.3.tgz", + "integrity": "sha1-s085HupNqPPpgjHizNjfnAQfFxs=" + }, + "node_modules/cssdb": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/cssdb/download/cssdb-5.0.0.tgz", + "integrity": "sha1-ltsj5w3aPQOjI0beYR8Oef7mi38=" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/cssesc/download/cssesc-3.0.0.tgz", + "integrity": "sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.0.14", + "resolved": "https://registry.npmmirror.com/cssnano/download/cssnano-5.0.14.tgz", + "integrity": "sha512-qzhRkFvBhv08tbyKCIfWbxBXmkIpLl1uNblt8SpTHkgLfON5OCPX/CCnkdNmEosvo8bANQYmTTMEgcVBlisHaw==", + "dependencies": { + "cssnano-preset-default": "^5.1.9", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.1.9", + "resolved": "https://registry.npmmirror.com/cssnano-preset-default/download/cssnano-preset-default-5.1.9.tgz", + "integrity": "sha512-RhkEucqlQ+OxEi14K1p8gdXcMQy1mSpo7P1oC44oRls7BYIj8p+cht4IFBFV3W4iOjTP8EUB33XV1fX9KhDzyA==", + "dependencies": { + "css-declaration-sorter": "^6.0.3", + "cssnano-utils": "^2.0.1", + "postcss-calc": "^8.0.0", + "postcss-colormin": "^5.2.2", + "postcss-convert-values": "^5.0.2", + "postcss-discard-comments": "^5.0.1", + "postcss-discard-duplicates": "^5.0.1", + "postcss-discard-empty": "^5.0.1", + "postcss-discard-overridden": "^5.0.1", + "postcss-merge-longhand": "^5.0.4", + "postcss-merge-rules": "^5.0.3", + "postcss-minify-font-values": "^5.0.1", + "postcss-minify-gradients": "^5.0.3", + "postcss-minify-params": "^5.0.2", + "postcss-minify-selectors": "^5.1.0", + "postcss-normalize-charset": "^5.0.1", + "postcss-normalize-display-values": "^5.0.1", + "postcss-normalize-positions": "^5.0.1", + "postcss-normalize-repeat-style": "^5.0.1", + "postcss-normalize-string": "^5.0.1", + "postcss-normalize-timing-functions": "^5.0.1", + "postcss-normalize-unicode": "^5.0.1", + "postcss-normalize-url": "^5.0.4", + "postcss-normalize-whitespace": "^5.0.1", + "postcss-ordered-values": "^5.0.2", + "postcss-reduce-initial": "^5.0.2", + "postcss-reduce-transforms": "^5.0.1", + "postcss-svgo": "^5.0.3", + "postcss-unique-selectors": "^5.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/cssnano-utils/download/cssnano-utils-2.0.1.tgz", + "integrity": "sha1-hmCqKzfthp0uLyKRgZapqLZJjOI=", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/csso/download/csso-4.2.0.tgz", + "integrity": "sha1-6jpWE0bo3J9UbW/r7dUBh884lSk=", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/css-tree/download/css-tree-1.1.3.tgz", + "integrity": "sha1-60hw+2/XcHMn7JXC/yqwm16NuR0=", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmmirror.com/mdn-data/download/mdn-data-2.0.14.tgz", + "integrity": "sha1-cRP8QoGRfWPOKbQ0RvcB5owlulA=" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz", + "integrity": "sha1-WmbPk9LQtmHYC/akT7ZfXC5OChA=" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/cssstyle/download/cssstyle-2.3.0.tgz", + "integrity": "sha1-/2ZaDdvcMYZLCWR/NBY0Q9kLCFI=", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz", + "integrity": "sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o=" + }, + "node_modules/csstype": { + "version": "3.0.10", + "resolved": "https://registry.npmmirror.com/csstype/download/csstype-3.0.10.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcsstype%2Fdownload%2Fcsstype-3.0.10.tgz", + "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==" + }, + "node_modules/d3-array": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/d3-array/download/d3-array-1.2.4.tgz", + "integrity": "sha1-Y1zk1e6nWfb2BYY9vPww7cc39x8=" + }, + "node_modules/d3-collection": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/d3-collection/download/d3-collection-1.0.7.tgz", + "integrity": "sha1-NJvSqpl32wcQkcExRNXk8WtbMQ4=" + }, + "node_modules/d3-color": { + "version": "1.4.1", + "resolved": "https://registry.nlark.com/d3-color/download/d3-color-1.4.1.tgz", + "integrity": "sha1-xSACv4hGraRCTVXZeYL+8m6zvIo=" + }, + "node_modules/d3-dispatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/d3-dispatch/download/d3-dispatch-2.0.0.tgz", + "integrity": "sha1-ihjhb3bdP8rvQhY8l7kmqptV588=" + }, + "node_modules/d3-dsv": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/d3-dsv/download/d3-dsv-1.2.0.tgz", + "integrity": "sha1-nV91w6X4q9YR900/WEew1DOLiFw=", + "dependencies": { + "commander": "2", + "iconv-lite": "0.4", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json", + "csv2tsv": "bin/dsv2dsv", + "dsv2dsv": "bin/dsv2dsv", + "dsv2json": "bin/dsv2json", + "json2csv": "bin/json2dsv", + "json2dsv": "bin/json2dsv", + "json2tsv": "bin/json2dsv", + "tsv2csv": "bin/dsv2dsv", + "tsv2json": "bin/dsv2json" + } + }, + "node_modules/d3-dsv/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmmirror.com/commander/download/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/d3-dsv/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/d3-ease": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/d3-ease/download/d3-ease-1.0.7.tgz", + "integrity": "sha1-moNIkO+LiujFWLL+Vb1X9Zk7heI=" + }, + "node_modules/d3-force": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/d3-force/download/d3-force-2.1.1.tgz", + "integrity": "sha1-8gzL8ebJ6ArdGSbwm1H2hqi8CTc=", + "dependencies": { + "d3-dispatch": "1 - 2", + "d3-quadtree": "1 - 2", + "d3-timer": "1 - 2" + } + }, + "node_modules/d3-format": { + "version": "1.4.5", + "resolved": "https://registry.npmmirror.com/d3-format/download/d3-format-1.4.5.tgz", + "integrity": "sha1-N08roTIONxfrdKk1bGfa7hen7bQ=" + }, + "node_modules/d3-hexbin": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/d3-hexbin/download/d3-hexbin-0.2.2.tgz", + "integrity": "sha1-nFg32s/UcasFM3qeke8Qv8T5iDE=" + }, + "node_modules/d3-hierarchy": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/d3-hierarchy/download/d3-hierarchy-2.0.0.tgz", + "integrity": "sha1-2riKWMo+ehvGyrOQ6JZn/MbSAhg=" + }, + "node_modules/d3-interpolate": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/d3-interpolate/download/d3-interpolate-1.4.0.tgz", + "integrity": "sha1-Um554tgNqjg/ngwcHH3MDwWD6Yc=", + "dependencies": { + "d3-color": "1" + } + }, + "node_modules/d3-polygon": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/d3-polygon/download/d3-polygon-1.0.6.tgz", + "integrity": "sha1-C/jLgYCm3BB/UY3feXXhKrv7044=" + }, + "node_modules/d3-quadtree": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/d3-quadtree/download/d3-quadtree-2.0.0.tgz", + "integrity": "sha1-7brQRc74hwH2/uOu6Ok/szLTD50=" + }, + "node_modules/d3-regression": { + "version": "1.3.9", + "resolved": "https://registry.nlark.com/d3-regression/download/d3-regression-1.3.9.tgz", + "integrity": "sha1-YcNKy5trvZFy7eifBdC3+9V8zcA=" + }, + "node_modules/d3-scale": { + "version": "2.2.2", + "resolved": "https://registry.npmmirror.com/d3-scale/download/d3-scale-2.2.2.tgz", + "integrity": "sha1-TogOCydFrKrd0+3iap6Qip4XuB8=", + "dependencies": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "node_modules/d3-time": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/d3-time/download/d3-time-1.1.0.tgz", + "integrity": "sha1-seGdMH2unJALflsl/8XcwkmooPE=" + }, + "node_modules/d3-time-format": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/d3-time-format/download/d3-time-format-2.3.0.tgz", + "integrity": "sha1-EHvcAoZneIqJJLoED68fvM1aeFA=", + "dependencies": { + "d3-time": "1" + } + }, + "node_modules/d3-timer": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/d3-timer/download/d3-timer-1.0.10.tgz", + "integrity": "sha1-3+dripF0iDGxO22ceT/71QjdneU=" + }, + "node_modules/dagre": { + "version": "0.8.5", + "resolved": "https://registry.nlark.com/dagre/download/dagre-0.8.5.tgz", + "integrity": "sha1-ujCwBV2sErbB/MJHgXRCd30Gr+4=", + "dependencies": { + "graphlib": "^2.1.8", + "lodash": "^4.17.15" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/damerau-levenshtein/download/damerau-levenshtein-1.0.7.tgz", + "integrity": "sha1-ZDaAA1EqGmmSWTdBoJqdMag29V0=" + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/data-urls/download/data-urls-2.0.0.tgz", + "integrity": "sha1-FWSFpyljqXD11YIar2Qr7yvy25s=", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/date-fns": { + "version": "2.28.0", + "resolved": "https://registry.npmmirror.com/date-fns/download/date-fns-2.28.0.tgz", + "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==", + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/dayjs": { + "version": "1.10.7", + "resolved": "https://registry.npmmirror.com/dayjs/download/dayjs-1.10.7.tgz", + "integrity": "sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig==" + }, + "node_modules/debug": { + "version": "4.3.3", + "resolved": "https://registry.npmmirror.com/debug/download/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/decamelize/download/decamelize-1.2.0.tgz?cache=0&sync_timestamp=1633055713394&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fdecamelize%2Fdownload%2Fdecamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.3.1", + "resolved": "https://registry.nlark.com/decimal.js/download/decimal.js-10.3.1.tgz", + "integrity": "sha1-2MOkRKnGd0umDKatcmHDqU/V54M=" + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/decode-uri-component/download/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/decompress-response/download/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.nlark.com/dedent/download/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/deep-equal/download/deep-equal-1.1.1.tgz", + "integrity": "sha1-tcmMlCzv+vfLBR4k4UNKJaLmB2o=", + "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" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.nlark.com/deep-extend/download/deep-extend-0.6.0.tgz", + "integrity": "sha1-xPp8lUBKF6nD6Mp+FTcxK3NjMKw=", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/deep-is/download/deep-is-0.1.4.tgz?cache=0&sync_timestamp=1630774538962&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdeep-is%2Fdownload%2Fdeep-is-0.1.4.tgz", + "integrity": "sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=" + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-4.2.2.tgz?cache=0&sync_timestamp=1622025358084&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdeepmerge%2Fdownload%2Fdeepmerge-4.2.2.tgz", + "integrity": "sha1-RNLqNnm49NT/ujPwPYZfwee/SVU=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/default-gateway/download/default-gateway-6.0.3.tgz", + "integrity": "sha1-gZSUyIgFO9t0PtvzQ9bN9/KUOnE=", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npm.taobao.org/defer-to-connect/download/defer-to-connect-1.1.3.tgz", + "integrity": "sha1-MxrgUMCNz3ifjIOnuB8O2U9KxZE=", + "dev": true + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/define-lazy-prop/download/define-lazy-prop-2.0.0.tgz?cache=0&sync_timestamp=1618388655514&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdefine-lazy-prop%2Fdownload%2Fdefine-lazy-prop-2.0.0.tgz", + "integrity": "sha1-P3rkIRKbyqrJvHSQXJigAJ7J7n8=", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "integrity": "sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/defined": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/defined/download/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" + }, + "node_modules/del": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/del/download/del-6.0.0.tgz", + "integrity": "sha1-C0DQMyzqdD8WFPgYvk/rcXcUyVI=", + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/delayed-stream/download/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "node_modules/detect-browser": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/detect-browser/download/detect-browser-5.3.0.tgz", + "integrity": "sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==" + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/detect-newline/download/detect-newline-3.1.0.tgz?cache=0&sync_timestamp=1634200380130&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fdetect-newline%2Fdownload%2Fdetect-newline-3.1.0.tgz", + "integrity": "sha1-V29d/GOuGhkv8ZLYrTr2MImRtlE=", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/detect-node/download/detect-node-2.1.0.tgz", + "integrity": "sha1-yccHdaScPQO8LAbZpzvlUPl4+LE=" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/detect-port-alt/download/detect-port-alt-1.1.6.tgz", + "integrity": "sha1-JHB96r6TLUo89iEwICfCsmZWgnU=", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/detective": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/detective/download/detective-5.2.0.tgz", + "integrity": "sha1-/rKnfoW5BOzepFmtiXzJCpm9Kns=", + "dependencies": { + "acorn-node": "^1.6.1", + "defined": "^1.0.0", + "minimist": "^1.1.1" + }, + "bin": { + "detective": "bin/detective.js" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/didyoumean/download/didyoumean-1.2.2.tgz?cache=0&sync_timestamp=1624543572474&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdidyoumean%2Fdownload%2Fdidyoumean-1.2.2.tgz", + "integrity": "sha1-mJNG/+noObRVXs9WZu3qDT6K0Dc=" + }, + "node_modules/diff-sequences": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/diff-sequences/download/diff-sequences-27.4.0.tgz", + "integrity": "sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/dir-glob/download/dir-glob-3.0.1.tgz", + "integrity": "sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npm.taobao.org/dlv/download/dlv-1.1.3.tgz", + "integrity": "sha1-XBmKihFFNZbnUUlNSYdLx3MvLnk=" + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/dns-equal/download/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmmirror.com/dns-packet/download/dns-packet-1.3.4.tgz", + "integrity": "sha1-40VQZYJKJQe6iGxVqJljuxB97G8=", + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/dns-txt/download/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz", + "integrity": "sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.10", + "resolved": "https://registry.npmmirror.com/dom-accessibility-api/download/dom-accessibility-api-0.5.10.tgz", + "integrity": "sha1-yqbQj2A4jQu0U53XX+RYqaHQAUw=", + "license": "MIT" + }, + "node_modules/dom-align": { + "version": "1.12.2", + "resolved": "https://registry.nlark.com/dom-align/download/dom-align-1.12.2.tgz", + "integrity": "sha1-D4Fk69DJwhsMeQMQSTzYVYkqzUs=" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/dom-converter/download/dom-converter-0.2.0.tgz", + "integrity": "sha1-ZyGp2u4uKTaClVtq/kFncWJ7t2g=", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz", + "integrity": "sha1-YgZDfTLO767HFhgDIwx6ILwbTZE=", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "node_modules/domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz", + "integrity": "sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc=" + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/domexception/download/domexception-2.0.1.tgz", + "integrity": "sha1-+0Su+6eT4VdLCvau0oAdBXUp8wQ=", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-5.0.0.tgz", + "integrity": "sha1-rlnIoAsSFUOirMZcBDT1ew/BGv8=", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/domhandler/download/domhandler-4.3.0.tgz", + "integrity": "sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-2.8.0.tgz?cache=0&sync_timestamp=1630106535879&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdomutils%2Fdownload%2Fdomutils-2.8.0.tgz", + "integrity": "sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/dot-case/download/dot-case-3.0.4.tgz", + "integrity": "sha1-mytnDQCkMWZ6inW6Kc0bmICc51E=", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npm.taobao.org/dot-prop/download/dot-prop-5.3.0.tgz?cache=0&sync_timestamp=1605778235569&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdot-prop%2Fdownload%2Fdot-prop-5.3.0.tgz", + "integrity": "sha1-kMzOcIzZzYLMTcjD3dmr3VWyDog=", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dot-prop/node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz", + "integrity": "sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.nlark.com/dotenv/download/dotenv-10.0.0.tgz?cache=0&sync_timestamp=1621633079842&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdotenv%2Fdownload%2Fdotenv-10.0.0.tgz", + "integrity": "sha1-PUInuPuV+BCWzdK2ZlP7LHCFuoE=", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/dotenv-expand/download/dotenv-expand-5.1.0.tgz?cache=0&sync_timestamp=1618847017659&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdotenv-expand%2Fdownload%2Fdotenv-expand-5.1.0.tgz", + "integrity": "sha1-P7rwIL/XlIhAcuomsel5HUWmKfA=" + }, + "node_modules/dotignore": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/dotignore/download/dotignore-0.1.2.tgz", + "integrity": "sha1-+ULyIA0ow6dvvdbw7p8yV8ii6QU=", + "dependencies": { + "minimatch": "^3.0.4" + }, + "bin": { + "ignored": "bin/ignored" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/duplexer/download/duplexer-0.1.2.tgz", + "integrity": "sha1-Or5DrvODX4rgd9E23c4PJ2sEAOY=" + }, + "node_modules/duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/duplexer3/download/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "node_modules/earcut": { + "version": "2.2.3", + "resolved": "https://registry.nlark.com/earcut/download/earcut-2.2.3.tgz", + "integrity": "sha1-1EztL/WhiFlWjjJ92cfUaxb1XPQ=" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/ee-first/download/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "node_modules/ejs": { + "version": "3.1.6", + "resolved": "https://registry.npmmirror.com/ejs/download/ejs-3.1.6.tgz", + "integrity": "sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==", + "dependencies": { + "jake": "^10.6.1" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.31", + "resolved": "https://registry.npmmirror.com/electron-to-chromium/download/electron-to-chromium-1.4.31.tgz", + "integrity": "sha512-t3XVQtk+Frkv6aTD4RRk0OqosU+VLe1dQFW83MDer78ZD6a52frgXuYOIsLYTQiH2Lm+JB2OKYcn7zrX+YGAiQ==" + }, + "node_modules/element-resize-event": { + "version": "3.0.6", + "resolved": "https://registry.nlark.com/element-resize-event/download/element-resize-event-3.0.6.tgz", + "integrity": "sha1-Ohjv1Iea1hXpef2Lvxc7AUmH65o=" + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.nlark.com/emittery/download/emittery-0.8.1.tgz", + "integrity": "sha1-uyPMhtA7MKp1p/c0gZ3uLhunCGA=", + "engines": { + "node": ">=10" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmmirror.com/emoji-regex/download/emoji-regex-9.2.2.tgz", + "integrity": "sha1-hAyIA7DYBH9P8M+WMXazLU7z7XI=" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz", + "integrity": "sha1-VXBmIEatKeLpFucariYKvf9Pang=", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "integrity": "sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.8.3", + "resolved": "https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-5.8.3.tgz?cache=0&sync_timestamp=1632130726633&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-5.8.3.tgz", + "integrity": "sha1-bVUtRlzOBCP1s9cYUR6lOCansvA=", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.nlark.com/enquirer/download/enquirer-2.3.6.tgz", + "integrity": "sha1-Kn/l3WNKHkElqXXsmU/1RW3Dc00=", + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz?cache=0&sync_timestamp=1628508126700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fentities%2Fdownload%2Fentities-2.2.0.tgz", + "integrity": "sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=" + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "integrity": "sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8=", + "optional": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npm.taobao.org/error-ex/download/error-ex-1.3.2.tgz", + "integrity": "sha1-tKxAZIEH/c3PriQvQovqihTU8b8=", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/error-stack-parser/download/error-stack-parser-2.0.6.tgz", + "integrity": "sha1-WpmnB716TFinl5AtSNgoA+3mqtg=", + "dependencies": { + "stackframe": "^1.1.1" + } + }, + "node_modules/errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/errorhandler/download/errorhandler-1.5.1.tgz", + "integrity": "sha1-ubpdF8+QdEzR6FE1em51v4BqmpE=", + "dev": true, + "dependencies": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmmirror.com/es-abstract/download/es-abstract-1.19.1.tgz?cache=0&sync_timestamp=1633234313248&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.19.1.tgz", + "integrity": "sha1-1IhXlodpFpWd547aoN9FZicRXsM=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmmirror.com/es-module-lexer/download/es-module-lexer-0.9.3.tgz", + "integrity": "sha1-bxPbAMw4QXE32vdDZvU1yOtDjxk=", + "license": "MIT" + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz", + "integrity": "sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npm.taobao.org/escalade/download/escalade-3.1.1.tgz", + "integrity": "sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/escape-goat/download/escape-goat-2.1.1.tgz", + "integrity": "sha1-Gy3HcANnbEV+x2Cy3GjttkgYhnU=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/escape-html/download/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/escodegen/download/escodegen-2.0.0.tgz", + "integrity": "sha1-XjKxKDPoqo+jXhvwvvqJOASEx90=", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/levn/download/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "integrity": "sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU=", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/prelude-ls/download/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/type-check/download/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.6.0", + "resolved": "https://registry.npmmirror.com/eslint/download/eslint-8.6.0.tgz", + "integrity": "sha512-UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw==", + "dependencies": { + "@eslint/eslintrc": "^1.0.5", + "@humanwhocodes/config-array": "^0.9.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.0", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.3.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.2.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-config-react-app": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/eslint-config-react-app/download/eslint-config-react-app-7.0.0.tgz", + "integrity": "sha512-xyymoxtIt1EOsSaGag+/jmcywRuieQoA2JbPCjnw9HukFj9/97aGPoZVFioaotzk1K5Qt9sHO5EutZbkrAXS0g==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/eslint-import-resolver-node/download/eslint-import-resolver-node-0.3.6.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-import-resolver-node%2Fdownload%2Feslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha1-QEi5WDldqJZoJSAB29nsprg7rL0=", + "dependencies": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmmirror.com/eslint-module-utils/download/eslint-module-utils-2.7.1.tgz", + "integrity": "sha1-tDUAHJ+N1Kt/bQ78rkuWltTCS3w=", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "find-up": "^2.1.0", + "pkg-dir": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-2.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-1.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-1.3.0.tgz", + "integrity": "sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-2.0.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/p-try/download/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmmirror.com/eslint-plugin-flowtype/download/eslint-plugin-flowtype-8.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-plugin-flowtype%2Fdownload%2Feslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha1-4VV+NxGPJHNKoxIudTagONNKSRI=", + "license": "BSD-3-Clause", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.25.3", + "resolved": "https://registry.npmmirror.com/eslint-plugin-import/download/eslint-plugin-import-2.25.3.tgz", + "integrity": "sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==", + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.1", + "has": "^1.0.3", + "is-core-module": "^2.8.0", + "is-glob": "^4.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.5", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.11.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/doctrine/download/doctrine-2.1.0.tgz", + "integrity": "sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/eslint-plugin-jest": { + "version": "25.3.3", + "resolved": "https://registry.npmmirror.com/eslint-plugin-jest/download/eslint-plugin-jest-25.3.3.tgz", + "integrity": "sha512-qi7aduaU4/oWegWo0zH4kbJbx8+Be+ABTr72OnO68zTMcJeeSuyH1CduTGF4ATyNFgpE1zp0u10/gIhe+QDSfg==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.5.1", + "resolved": "https://registry.npmmirror.com/eslint-plugin-jsx-a11y/download/eslint-plugin-jsx-a11y-6.5.1.tgz?cache=0&sync_timestamp=1636698418809&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-plugin-jsx-a11y%2Fdownload%2Feslint-plugin-jsx-a11y-6.5.1.tgz", + "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", + "dependencies": { + "@babel/runtime": "^7.16.3", + "aria-query": "^4.2.2", + "array-includes": "^3.1.4", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.3.5", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.7", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.2.1", + "language-tags": "^1.0.5", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.28.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-react/download/eslint-plugin-react-7.28.0.tgz", + "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" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-react-hooks/download/eslint-plugin-react-hooks-4.3.0.tgz", + "integrity": "sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/doctrine/download/doctrine-2.1.0.tgz", + "integrity": "sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.3", + "resolved": "https://registry.npm.taobao.org/resolve/download/resolve-2.0.0-next.3.tgz?cache=0&sync_timestamp=1613054862388&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-2.0.0-next.3.tgz", + "integrity": "sha1-1BAWKT1KhYajnKXZtfFcvqH1XkY=", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/eslint-plugin-testing-library/download/eslint-plugin-testing-library-5.0.1.tgz", + "integrity": "sha512-8ZV4HbbacvOwu+adNnGpYd8E64NRcil2a11aFAbc/TZDUB/xxK2c8Z+LoeoHUbxNBGbTUdpAE4YUugxK85pcwQ==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.5.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/eslint-scope/download/eslint-scope-7.1.0.tgz?cache=0&sync_timestamp=1637466831846&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-scope%2Fdownload%2Feslint-scope-7.1.0.tgz", + "integrity": "sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/eslint-utils/download/eslint-utils-3.0.0.tgz", + "integrity": "sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI=", + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz?cache=0&sync_timestamp=1636378420914&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-2.1.0.tgz", + "integrity": "sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-3.1.0.tgz?cache=0&sync_timestamp=1636378420914&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-3.1.0.tgz", + "integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/eslint-webpack-plugin/download/eslint-webpack-plugin-3.1.1.tgz?cache=0&sync_timestamp=1636733909551&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-webpack-plugin%2Fdownload%2Feslint-webpack-plugin-3.1.1.tgz", + "integrity": "sha512-xSucskTN9tOkfW7so4EaiFIkulWLXwCB/15H917lR6pTv0Zot6/fetFucmENRb7J5whVSFKIvwnrnsa78SG2yg==", + "dependencies": { + "@types/eslint": "^7.28.2", + "jest-worker": "^27.3.1", + "micromatch": "^4.0.4", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/argparse/download/argparse-2.0.1.tgz", + "integrity": "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=" + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz", + "integrity": "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.12.0", + "resolved": "https://registry.npmmirror.com/globals/download/globals-13.12.0.tgz", + "integrity": "sha1-TXM3YDBCMKAILtluIeXFZfiYCJ4=", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/download/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.20.2.tgz", + "integrity": "sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=", + "engines": { + "node": ">=10" + } + }, + "node_modules/espree": { + "version": "9.3.0", + "resolved": "https://registry.npmmirror.com/espree/download/espree-9.3.0.tgz", + "integrity": "sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==", + "dependencies": { + "acorn": "^8.7.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^3.1.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/esprima/download/esprima-4.0.1.tgz", + "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz", + "integrity": "sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "integrity": "sha1-eteWTWeauyi+5yzsY3WLHF0smSE=", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/download/estraverse-5.3.0.tgz?cache=0&sync_timestamp=1635237716974&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-5.3.0.tgz", + "integrity": "sha1-LupSkHAvJquP5TcDcP+GyWXSESM=", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/estree-walker/download/estree-walker-1.0.1.tgz", + "integrity": "sha1-MbxdYSyWtwQQa0d+bdXYqhOMtwA=" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz", + "integrity": "sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.nlark.com/etag/download/etag-1.8.1.tgz?cache=0&sync_timestamp=1618847044821&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fetag%2Fdownload%2Fetag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npm.taobao.org/eventemitter3/download/eventemitter3-4.0.7.tgz", + "integrity": "sha1-Lem2j2Uo1WRO9cWVJqG0oHMGFp8=" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/events/download/events-3.3.0.tgz?cache=0&sync_timestamp=1636449286836&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fevents%2Fdownload%2Fevents-3.3.0.tgz", + "integrity": "sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA=", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/execa/download/execa-5.1.1.tgz?cache=0&sync_timestamp=1637147254617&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fexeca%2Fdownload%2Fexeca-5.1.1.tgz", + "integrity": "sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0=", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/expect/download/expect-27.4.2.tgz", + "integrity": "sha512-BjAXIDC6ZOW+WBFNg96J22D27Nq5ohn+oGcuP2rtOtcjuxNoV9McpQ60PcQWhdFOSBIQdR72e+4HdnbZTFSTyg==", + "dependencies": { + "@jest/types": "^27.4.2", + "ansi-styles": "^5.0.0", + "jest-get-type": "^27.4.0", + "jest-matcher-utils": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-regex-util": "^27.4.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/expect/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-5.2.0.tgz", + "integrity": "sha1-B0SWkK1Fd30ZJKwquy/IiV26g2s=", + "engines": { + "node": ">=10" + } + }, + "node_modules/express": { + "version": "4.17.2", + "resolved": "https://registry.npmmirror.com/express/download/express-4.17.2.tgz", + "integrity": "sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg==", + "dependencies": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.4.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.9.6", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.17.2", + "serve-static": "1.14.2", + "setprototypeof": "1.2.0", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express-urlrewrite": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/express-urlrewrite/download/express-urlrewrite-1.4.0.tgz", + "integrity": "sha1-mF7gInc7rH7TISbxz57I7kjhKQo=", + "dev": true, + "dependencies": { + "debug": "*", + "path-to-regexp": "^1.0.3" + } + }, + "node_modules/express-urlrewrite/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/isarray/download/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "node_modules/express-urlrewrite/node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmmirror.com/path-to-regexp/download/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/safe-buffer/download/safe-buffer-5.2.1.tgz?cache=0&sync_timestamp=1618847044058&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsafe-buffer%2Fdownload%2Fsafe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=" + }, + "node_modules/extrude-polyline": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/extrude-polyline/download/extrude-polyline-1.0.6.tgz", + "integrity": "sha1-fmr+HzSaQYL6P2GgDZOXm5XxiyA=", + "dependencies": { + "as-number": "^1.0.0", + "gl-vec2": "^1.0.0", + "polyline-miter-util": "^1.0.1" + } + }, + "node_modules/falafel": { + "version": "2.2.4", + "resolved": "https://registry.npm.taobao.org/falafel/download/falafel-2.2.4.tgz", + "integrity": "sha1-tdhsBgwkEqQxZiQ8sbzkTRq9KBk=", + "dependencies": { + "acorn": "^7.1.1", + "foreach": "^2.0.5", + "isarray": "^2.0.1", + "object-keys": "^1.0.6" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/falafel/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/falafel/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/isarray/download/isarray-2.0.5.tgz", + "integrity": "sha1-ivHkwSISRMxiRZ+vOJQNTmRKVyM=" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz", + "integrity": "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=" + }, + "node_modules/fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.nlark.com/fast-glob/download/fast-glob-3.2.7.tgz", + "integrity": "sha1-/Wy3otfpqnp4RhEehaGW1rL3ZqE=", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/download/glob-parent-5.1.2.tgz", + "integrity": "sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz?cache=0&sync_timestamp=1618847186091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffast-json-stable-stringify%2Fdownload%2Ffast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "node_modules/fast-shallow-equal": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fast-shallow-equal/download/fast-shallow-equal-1.0.0.tgz", + "integrity": "sha1-1NyvZHJEDc76b4i5jjJR4n8lYos=" + }, + "node_modules/fastest-stable-stringify": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/fastest-stable-stringify/download/fastest-stable-stringify-2.0.2.tgz", + "integrity": "sha1-N1emd09uyN5AxOhuwo6gJBchTHY=" + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.nlark.com/fastq/download/fastq-1.13.0.tgz", + "integrity": "sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw=", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz?cache=0&sync_timestamp=1621895685919&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffaye-websocket%2Fdownload%2Ffaye-websocket-0.11.4.tgz", + "integrity": "sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo=", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "integrity": "sha1-/IT7OdJwnPP/bXQ3BhV7tXCKioU=", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fecha": { + "version": "4.2.1", + "resolved": "https://registry.npm.taobao.org/fecha/download/fecha-4.2.1.tgz?cache=0&sync_timestamp=1617642874416&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffecha%2Fdownload%2Ffecha-4.2.1.tgz", + "integrity": "sha1-CoOtj4bvYqCR4iu1oDnNA9I+7M4=" + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/figures/download/figures-3.2.0.tgz", + "integrity": "sha1-YlwYvSk8YE3EqN2y/r8MiDQXRq8=", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/file-entry-cache/download/file-entry-cache-6.0.1.tgz", + "integrity": "sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.nlark.com/file-loader/download/file-loader-6.2.0.tgz", + "integrity": "sha1-uu98+OGEDfMl5DkLRISHlIDuvk0=", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/filelist": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/filelist/download/filelist-1.0.2.tgz", + "integrity": "sha1-gCAvIUYtTRwuIUEZsYB8G8A4Dls=", + "dependencies": { + "minimatch": "^3.0.4" + } + }, + "node_modules/filesize": { + "version": "8.0.6", + "resolved": "https://registry.npmmirror.com/filesize/download/filesize-8.0.6.tgz?cache=0&sync_timestamp=1635763993879&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffilesize%2Fdownload%2Ffilesize-8.0.6.tgz", + "integrity": "sha1-XwwnqhtQf6fZ9yyRKndMpqRBEbE=", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz", + "integrity": "sha1-GRmmp8df44ssfHflGYU12prN2kA=", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.2.tgz", + "integrity": "sha1-t+fQAP/RGTjQ/bBTUG9uur6fWH0=", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.2.tgz?cache=0&sync_timestamp=1630260035189&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffind-cache-dir%2Fdownload%2Ffind-cache-dir-3.3.2.tgz", + "integrity": "sha1-swxbbv8HMHMa6pu9nb7L2AJW1ks=", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "integrity": "sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-5.0.0.tgz", + "integrity": "sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-4.1.0.tgz", + "integrity": "sha1-o0KLtwiLOmApL2aRkni3wpetTwc=", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "integrity": "sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/find-root/download/find-root-1.1.0.tgz", + "integrity": "sha1-q8/Iunb3CMQql7PWhbfpRQv7nOQ=" + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-5.0.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-5.0.0.tgz", + "integrity": "sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/flat-cache/download/flat-cache-3.0.4.tgz?cache=0&sync_timestamp=1604831825098&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fflat-cache%2Fdownload%2Fflat-cache-3.0.4.tgz", + "integrity": "sha1-YbAzgwKy/p+Vfcwy/CqH8cMEixE=", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.4", + "resolved": "https://registry.npmmirror.com/flatted/download/flatted-3.2.4.tgz?cache=0&sync_timestamp=1636473925233&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fflatted%2Fdownload%2Fflatted-3.2.4.tgz", + "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==" + }, + "node_modules/flubber": { + "version": "0.4.2", + "resolved": "https://registry.nlark.com/flubber/download/flubber-0.4.2.tgz", + "integrity": "sha1-FEUtSoOMw7ny+2F12pTjWs1V+6o=", + "dependencies": { + "d3-array": "^1.2.0", + "d3-polygon": "^1.0.3", + "earcut": "^2.1.1", + "svg-path-properties": "^0.2.1", + "svgpath": "^2.2.1", + "topojson-client": "^3.0.0" + } + }, + "node_modules/flubber/node_modules/svg-path-properties": { + "version": "0.2.2", + "resolved": "https://registry.npm.taobao.org/svg-path-properties/download/svg-path-properties-0.2.2.tgz", + "integrity": "sha1-sHPYG+cpLq4OIzq4qD9Y3CcRMpY=" + }, + "node_modules/fmin": { + "version": "0.0.2", + "resolved": "https://registry.nlark.com/fmin/download/fmin-0.0.2.tgz", + "integrity": "sha1-Wbu0DUP/3ByUzQClaMQflfGXMBc=", + "dependencies": { + "contour_plot": "^0.0.1", + "json2module": "^0.0.3", + "rollup": "^0.25.8", + "tape": "^4.5.1", + "uglify-js": "^2.6.2" + } + }, + "node_modules/fmin/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fmin/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fmin/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fmin/node_modules/rollup": { + "version": "0.25.8", + "resolved": "https://registry.npmmirror.com/rollup/download/rollup-0.25.8.tgz", + "integrity": "sha1-v2zoO4dRDRY0Ru6qV37WpvxYNeA=", + "dependencies": { + "chalk": "^1.1.1", + "minimist": "^1.2.0", + "source-map-support": "^0.3.2" + }, + "bin": { + "rollup": "bin/rollup" + } + }, + "node_modules/fmin/node_modules/source-map": { + "version": "0.1.32", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.1.32.tgz", + "integrity": "sha1-yLbBZ3l7pHQKjqMyUhYv8IWRsmY=", + "dependencies": { + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fmin/node_modules/source-map-support": { + "version": "0.3.3", + "resolved": "https://registry.npmmirror.com/source-map-support/download/source-map-support-0.3.3.tgz?cache=0&sync_timestamp=1637320322789&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsource-map-support%2Fdownload%2Fsource-map-support-0.3.3.tgz", + "integrity": "sha1-NJAJd9W6PwfHdX7nLnO7GptTdU8=", + "dependencies": { + "source-map": "0.1.32" + } + }, + "node_modules/fmin/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-3.0.1.tgz?cache=0&sync_timestamp=1632420562057&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fmin/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.14.6", + "resolved": "https://registry.npmmirror.com/follow-redirects/download/follow-redirects-1.14.6.tgz", + "integrity": "sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.nlark.com/for-each/download/for-each-0.3.3.tgz", + "integrity": "sha1-abRH6IoKXTLD5whPPxcQA0shN24=", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreach": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/foreach/download/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/fork-ts-checker-webpack-plugin/download/fork-ts-checker-webpack-plugin-6.5.0.tgz", + "integrity": "sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-6.0.0.tgz", + "integrity": "sha1-2k/uhTxS9rHmk19BwaL8UL1KmYI=", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.nlark.com/fs-extra/download/fs-extra-9.1.0.tgz", + "integrity": "sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0=", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-2.7.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-2.7.0.tgz", + "integrity": "sha1-FxUfdtjq5n+793lgwzxnatn078c=", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/tapable/download/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/form-data/download/form-data-3.0.1.tgz", + "integrity": "sha1-69U3kbeDVqma+aMA1CgsTV65dV8=", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/forwarded/download/forwarded-0.2.0.tgz?cache=0&sync_timestamp=1622503451002&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fforwarded%2Fdownload%2Fforwarded-0.2.0.tgz", + "integrity": "sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/fraction.js/download/fraction.js-4.1.2.tgz?cache=0&sync_timestamp=1636702916529&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffraction.js%2Fdownload%2Ffraction.js-4.1.2.tgz", + "integrity": "sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.nlark.com/fresh/download/fresh-0.5.2.tgz?cache=0&sync_timestamp=1618846949012&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffresh%2Fdownload%2Ffresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.nlark.com/fs-extra/download/fs-extra-10.0.0.tgz", + "integrity": "sha1-n/YbZV3eU/s0qC34S7IUzoAuF8E=", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/fs-monkey/download/fs-monkey-1.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffs-monkey%2Fdownload%2Ffs-monkey-1.0.3.tgz", + "integrity": "sha1-rjrJLVO7Mo7+DpodlUH2rY1I4tM=" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/fs.realpath/download/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmmirror.com/fsevents/download/fsevents-2.3.2.tgz", + "integrity": "sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz", + "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=" + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz", + "integrity": "sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/geojson-vt": { + "version": "3.2.1", + "resolved": "https://registry.npm.taobao.org/geojson-vt/download/geojson-vt-3.2.1.tgz", + "integrity": "sha1-+K22FNLB0/bufEJlytS7861gyLc=" + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz", + "integrity": "sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "integrity": "sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/get-own-enumerable-property-symbols/download/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha1-tf3nfyLL4185C04ImSLFC85u9mQ=" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/get-package-type/download/get-package-type-0.1.0.tgz", + "integrity": "sha1-jeLYA8/0TfO8bEVuZmizbDkm4Ro=", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-6.0.1.tgz", + "integrity": "sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=", + "engines": { + "node": ">=10" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/get-symbol-description/download/get-symbol-description-1.0.0.tgz", + "integrity": "sha1-f9uByQAQH71WTdXxowr1qtweWNY=", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gl-matrix": { + "version": "3.4.3", + "resolved": "https://registry.npmmirror.com/gl-matrix/download/gl-matrix-3.4.3.tgz", + "integrity": "sha1-/BGR6DIACf1NIOkzlZXGBB3cIsk=", + "license": "MIT" + }, + "node_modules/gl-vec2": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/gl-vec2/download/gl-vec2-1.3.0.tgz", + "integrity": "sha1-g9Ry7UYDTejgnLyFcSP7bIHFEZk=" + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/glob/download/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/glob-parent/download/glob-parent-6.0.2.tgz", + "integrity": "sha1-bSN9mQg5UMeSkPJMdkKj3poo+eM=", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/glob-to-regexp/download/glob-to-regexp-0.4.1.tgz", + "integrity": "sha1-x1KXCHyFG5pXi9IX3VmpL1n+VG4=" + }, + "node_modules/global-dirs": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/global-dirs/download/global-dirs-3.0.0.tgz?cache=0&sync_timestamp=1610454843389&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobal-dirs%2Fdownload%2Fglobal-dirs-3.0.0.tgz", + "integrity": "sha1-cKdv6E6jFas3sfVXbL3n1I73JoY=", + "dev": true, + "dependencies": { + "ini": "2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ini/download/ini-2.0.0.tgz?cache=0&sync_timestamp=1607907788001&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fini%2Fdownload%2Fini-2.0.0.tgz", + "integrity": "sha1-5f1Vbs3VcmvpePoQAYYurLCpS8U=", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/global-modules/download/global-modules-2.0.0.tgz", + "integrity": "sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/global-prefix/download/global-prefix-3.0.0.tgz", + "integrity": "sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmmirror.com/globals/download/globals-11.12.0.tgz", + "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=", + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.0.4", + "resolved": "https://registry.nlark.com/globby/download/globby-11.0.4.tgz?cache=0&sync_timestamp=1629801042235&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobby%2Fdownload%2Fglobby-11.0.4.tgz", + "integrity": "sha1-LLr/d8Lypi5x6bKBOme5ejowAaU=", + "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" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/globby/node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/ignore/download/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/got": { + "version": "9.6.0", + "resolved": "https://registry.npmmirror.com/got/download/got-9.6.0.tgz", + "integrity": "sha1-7fRefWf5lUVwXeH3u+7rEhdl7YU=", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/got/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz", + "integrity": "sha1-wbJVV189wh1Zv8ec09K0axw6VLU=", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmmirror.com/graceful-fs/download/graceful-fs-4.2.8.tgz", + "integrity": "sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo=" + }, + "node_modules/graphlib": { + "version": "2.1.8", + "resolved": "https://registry.npm.taobao.org/graphlib/download/graphlib-2.1.8.tgz", + "integrity": "sha1-V2HUFHN4cAhMkux7XbywWSydNdo=", + "dependencies": { + "lodash": "^4.17.15" + } + }, + "node_modules/grid-index": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/grid-index/download/grid-index-1.1.0.tgz", + "integrity": "sha1-l/giHt7BAmyDd7hkRqfHHnlSLqc=" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/gzip-size/download/gzip-size-6.0.0.tgz", + "integrity": "sha1-BlNn/VDCOcBnHLy61b4+LusQ5GI=", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hammerjs": { + "version": "2.0.8", + "resolved": "https://registry.npm.taobao.org/hammerjs/download/hammerjs-2.0.8.tgz", + "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/handle-thing/download/handle-thing-2.0.1.tgz", + "integrity": "sha1-hX95zjWVgMNA1DCBzGSJcNC7I04=" + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.nlark.com/harmony-reflect/download/harmony-reflect-1.6.2.tgz", + "integrity": "sha1-Mey9MuZIo00DDYattn1NR1R/5xA=" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/has/download/has-1.0.3.tgz", + "integrity": "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/has-ansi/download/has-ansi-2.0.0.tgz?cache=0&sync_timestamp=1631556941939&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhas-ansi%2Fdownload%2Fhas-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz", + "integrity": "sha1-ZP5qywIGc+O3jbA1pa9pqp0HsRM=" + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/has-symbols/download/has-symbols-1.0.2.tgz", + "integrity": "sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-tostringtag/download/has-tostringtag-1.0.0.tgz", + "integrity": "sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/has-yarn/download/has-yarn-2.1.0.tgz?cache=0&sync_timestamp=1631298711761&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhas-yarn%2Fdownload%2Fhas-yarn-2.1.0.tgz", + "integrity": "sha1-E34RNUp7W/EapctknPDG8/8rLnc=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/he/download/he-1.2.0.tgz", + "integrity": "sha1-hK5l+n6vsWX922FWauFLrwVmTw8=", + "bin": { + "he": "bin/he" + } + }, + "node_modules/heatmap.js": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/heatmap.js/-/heatmap.js-2.0.5.tgz", + "integrity": "sha512-CG2gYFP5Cv9IQCXEg3ZRxnJDyAilhWnQlAuHYGuWVzv6mFtQelS1bR9iN80IyDmFECbFPbg6I0LR5uAFHgCthw==" + }, + "node_modules/history": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/history/download/history-5.2.0.tgz", + "integrity": "sha512-uPSF6lAJb3nSePJ43hN3eKj1dTWpN9gMod0ZssbFTIsen+WehTmEadgL+kg78xLJFdRfrrC//SavDzmRVdE+Ig==", + "dependencies": { + "@babel/runtime": "^7.7.6" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.nlark.com/hoist-non-react-statics/download/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha1-7OCsr3HWLClpwuxZ/v9CpLGoW0U=", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz", + "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=" + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/hoopy/download/hoopy-0.1.4.tgz", + "integrity": "sha1-YJIH1mEQADOpqUAq096mdzgcGx0=", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npm.taobao.org/hpack.js/download/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.nlark.com/readable-stream/download/readable-stream-2.3.7.tgz", + "integrity": "sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/string_decoder/download/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-2.0.1.tgz?cache=0&sync_timestamp=1632005107907&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhtml-encoding-sniffer%2Fdownload%2Fhtml-encoding-sniffer-2.0.1.tgz", + "integrity": "sha1-QqbcT9M/ACgRduiyN1nKTk+hhfM=", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/html-entities/download/html-entities-2.3.2.tgz", + "integrity": "sha1-dgtARoXLHXlOT0t0QzLjsA3P5Ig=" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/html-escaper/download/html-escaper-2.0.2.tgz", + "integrity": "sha1-39YAJ9o2o238viNiYsAKWCJoFFM=" + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/html-minifier-terser/download/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/html-webpack-plugin/download/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "webpack": "^5.20.0" + } + }, + "node_modules/html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "dependencies": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/htmlparser2/download/htmlparser2-6.1.0.tgz?cache=0&sync_timestamp=1636640862971&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fhtmlparser2%2Fdownload%2Fhtmlparser2-6.1.0.tgz", + "integrity": "sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/http-cache-semantics/download/http-cache-semantics-4.1.0.tgz", + "integrity": "sha1-SekcXL82yblLz81xwj1SSex045A=", + "dev": true + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.nlark.com/http-deceiver/download/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "node_modules/http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/http-errors/download/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.5", + "resolved": "https://registry.npmmirror.com/http-parser-js/download/http-parser-js-0.5.5.tgz", + "integrity": "sha512-x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.nlark.com/http-proxy/download/http-proxy-1.18.1.tgz", + "integrity": "sha1-QBVB8FNIhLv5UmAzTnL4juOXZUk=", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/http-proxy-agent/download/http-proxy-agent-4.0.1.tgz", + "integrity": "sha1-ioyO9/WTLM+VPClsqCkblap0qjo=", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/http-proxy-middleware/download/http-proxy-middleware-2.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhttp-proxy-middleware%2Fdownload%2Fhttp-proxy-middleware-2.0.1.tgz", + "integrity": "sha1-fvNBekeft2ZqVx4Jlmxmo5vSwV8=", + "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" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/https-proxy-agent/download/https-proxy-agent-5.0.0.tgz", + "integrity": "sha1-4qkFQqu2inYuCghQ9sntrf2FBrI=", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/human-signals/download/human-signals-2.1.0.tgz", + "integrity": "sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/hyphenate-style-name": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/hyphenate-style-name/download/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha1-aRh5r44iCupXUOiCfbTvYqVONh0=" + }, + "node_modules/i18next": { + "version": "21.6.6", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-21.6.6.tgz", + "integrity": "sha512-K1Pw8K+nHVco56PO6UrqNq4K/ZVbb2eqBQwPqmzYDm4tGQYXBjdz8jrnvuNvV5STaE8oGpWKQMxHOvh2zhVE7Q==", + "dependencies": { + "@babel/runtime": "^7.12.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.6.3.tgz", + "integrity": "sha1-pS+AvzjaGVLrXGgXkHGYcaGnJQE=", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-5.1.0.tgz", + "integrity": "sha1-xr5oWKvQE9do6YNmrkfiXViHsa4=", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/idb": { + "version": "6.1.5", + "resolved": "https://registry.npmmirror.com/idb/download/idb-6.1.5.tgz", + "integrity": "sha1-28U+et8ax8Wfmyv1bgC06k/OjHs=", + "license": "ISC" + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/identity-obj-proxy/download/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/ieee754/download/ieee754-1.2.1.tgz", + "integrity": "sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=" + }, + "node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmmirror.com/ignore/download/ignore-4.0.6.tgz", + "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=", + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmmirror.com/image-size/download/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/immer": { + "version": "9.0.7", + "resolved": "https://registry.npmmirror.com/immer/download/immer-9.0.7.tgz", + "integrity": "sha512-KGllzpbamZDvOIxnmJ0jI840g7Oikx58lBPWV0hUh7dtAyZpFqqrBZdKka5GlTwMTZ1Tjc/bKKW4VSFAt6BqMA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/import-cwd/download/import-cwd-3.0.0.tgz", + "integrity": "sha1-IIRVR3GAFRJuqbNna3WS+4vUz5I=", + "dependencies": { + "import-from": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npm.taobao.org/import-fresh/download/import-fresh-3.3.0.tgz?cache=0&sync_timestamp=1608469520474&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fimport-fresh%2Fdownload%2Fimport-fresh-3.3.0.tgz", + "integrity": "sha1-NxYsJfy566oublPVtNiM4X2eDCs=", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz", + "integrity": "sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/import-from/download/import-from-3.0.0.tgz", + "integrity": "sha1-BVz+w4zVon2AV8pRN219O/CJGWY=", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/import-lazy/download/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/import-local/download/import-local-3.0.3.tgz", + "integrity": "sha1-TVHCxJXKk5PaJZ7Ga2LgIpICEeA=", + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "integrity": "sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-5.0.0.tgz", + "integrity": "sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-4.1.0.tgz", + "integrity": "sha1-o0KLtwiLOmApL2aRkni3wpetTwc=", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "integrity": "sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npm.taobao.org/imurmurhash/download/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz", + "integrity": "sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz", + "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npm.taobao.org/ini/download/ini-1.3.8.tgz?cache=0&sync_timestamp=1607907788001&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fini%2Fdownload%2Fini-1.3.8.tgz", + "integrity": "sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=" + }, + "node_modules/inline-style-prefixer": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/inline-style-prefixer/download/inline-style-prefixer-6.0.1.tgz", + "integrity": "sha1-xcDkO6iDFwevxfW7/Zft9Fwfp64=", + "license": "MIT", + "dependencies": { + "css-in-js-utils": "^2.0.0" + } + }, + "node_modules/insert-css": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/insert-css/download/insert-css-2.0.0.tgz", + "integrity": "sha1-610Ql7dUL0x56jBg067gfQU4gPQ=" + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/internal-slot/download/internal-slot-1.0.3.tgz", + "integrity": "sha1-c0fjB97uovqsKsYgXUvH00ln9Zw=", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "integrity": "sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/inversify": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/inversify/download/inversify-5.1.1.tgz?cache=0&sync_timestamp=1636450865053&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Finversify%2Fdownload%2Finversify-5.1.1.tgz", + "integrity": "sha1-b71mjFkTN0BOAFoZRr/g2ALAhzA=" + }, + "node_modules/inversify-inject-decorators": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/inversify-inject-decorators/download/inversify-inject-decorators-3.1.0.tgz", + "integrity": "sha1-2ZQQgLrXfOyKZe4p2QXk1dc+HpU=" + }, + "node_modules/ip": { + "version": "1.1.5", + "resolved": "https://registry.nlark.com/ip/download/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "node_modules/ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-2.0.1.tgz", + "integrity": "sha1-7KJWp6h36Reus2iwp0l930LvgcA=", + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-any-array": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/is-any-array/download/is-any-array-1.0.1.tgz", + "integrity": "sha1-Bf7ewaTc7RhUvSebLsXfQx5b6p4=" + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/is-arguments/download/is-arguments-1.1.1.tgz?cache=0&sync_timestamp=1628202633313&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-arguments%2Fdownload%2Fis-arguments-1.1.1.tgz", + "integrity": "sha1-FbP4j9oB8ql/7ITKdhpWDxI++ps=", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-bigint/download/is-bigint-1.0.4.tgz?cache=0&sync_timestamp=1628747504782&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-bigint%2Fdownload%2Fis-bigint-1.0.4.tgz", + "integrity": "sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM=", + "dependencies": { + "has-bigints": "^1.0.1" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz", + "integrity": "sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.2.tgz", + "integrity": "sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk=", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npm.taobao.org/is-buffer/download/is-buffer-1.1.6.tgz?cache=0&sync_timestamp=1604432327227&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-buffer%2Fdownload%2Fis-buffer-1.1.6.tgz", + "integrity": "sha1-76ouqdqg16suoTqXsritUf776L4=" + }, + "node_modules/is-callable": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.4.tgz", + "integrity": "sha1-RzAdWN0CWUB4ZVR4U99tYf5HGUU=", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/is-ci/download/is-ci-2.0.0.tgz?cache=0&sync_timestamp=1635261090481&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fis-ci%2Fdownload%2Fis-ci-2.0.0.tgz", + "integrity": "sha1-a8YzQYGBDgS1wis9WJ/cpVAmQEw=", + "dev": true, + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-ci/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ci-info/download/ci-info-2.0.0.tgz", + "integrity": "sha1-Z6npZL4xpR4V5QENWObxKDQAL0Y=", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmmirror.com/is-core-module/download/is-core-module-2.8.0.tgz?cache=0&sync_timestamp=1634236702465&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fis-core-module%2Fdownload%2Fis-core-module-2.8.0.tgz", + "integrity": "sha1-AyEzbD0JJeSX/Zf12VyxFKXM1Ug=", + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.5.tgz?cache=0&sync_timestamp=1628202499310&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-date-object%2Fdownload%2Fis-date-object-1.0.5.tgz", + "integrity": "sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8=", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/is-docker/download/is-docker-2.2.1.tgz", + "integrity": "sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao=", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/is-extglob/download/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-fullwidth-code-point%2Fdownload%2Fis-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz", + "integrity": "sha1-fRQK3DiarzARqPKipM+m+q3/sRg=", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/download/is-glob-4.0.3.tgz?cache=0&sync_timestamp=1632934586547&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fis-glob%2Fdownload%2Fis-glob-4.0.3.tgz", + "integrity": "sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/is-installed-globally/download/is-installed-globally-0.4.0.tgz", + "integrity": "sha1-mg/UB5ScMPhutpWe8beZTtC3tSA=", + "dev": true, + "dependencies": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-module/download/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/is-negative-zero/download/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-npm": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/is-npm/download/is-npm-5.0.0.tgz", + "integrity": "sha1-Q+jWXMVuG2f41HJiz2ZwmRk/Rag=", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz", + "integrity": "sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-number-object/download/is-number-object-1.0.6.tgz", + "integrity": "sha1-anqvg4x/BoalC0VT9+VKlklOifA=", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/is-obj/download/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-path-cwd/download/is-path-cwd-2.2.0.tgz", + "integrity": "sha1-Z9Q7gmZKe1GR/ZEZEn6zAASKn9s=", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/is-path-inside/download/is-path-inside-3.0.3.tgz?cache=0&sync_timestamp=1620047320094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-inside%2Fdownload%2Fis-path-inside-3.0.3.tgz", + "integrity": "sha1-0jE2LlOgf/Kw4Op/7QSRYf/RYoM=", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-plain-obj/download/is-plain-obj-3.0.0.tgz?cache=0&sync_timestamp=1618600554597&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-plain-obj%2Fdownload%2Fis-plain-obj-3.0.0.tgz", + "integrity": "sha1-r28uoUrFpkYYOlu9tbqrvBVq2dc=", + "engines": { + "node": ">=10" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/is-potential-custom-element-name/download/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha1-Fx7W8Z46xVQ5Tt94yqBXhKRb67U=" + }, + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/is-promise/download/is-promise-2.2.2.tgz", + "integrity": "sha1-OauVnMv5p3TPB597QMeib3YxNfE=", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.4.tgz?cache=0&sync_timestamp=1628221905423&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.4.tgz", + "integrity": "sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-regexp/download/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/is-root/download/is-root-2.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-root%2Fdownload%2Fis-root-2.1.0.tgz", + "integrity": "sha1-gJ4YEpzxEpZEMCpPhUQDXVGYSpw=", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/is-shared-array-buffer/download/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha1-l7DIX72stZycRG/mU7gs8rW3z+Y=" + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-2.0.1.tgz", + "integrity": "sha1-+sHj1TuXrVqdCunO8jifWBClwHc=", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.7.tgz", + "integrity": "sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "integrity": "sha1-ptrJO2NbBjymhyI23oiRClevE5w=", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-typedarray/download/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/is-weakref/download/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmmirror.com/is-what/download/is-what-3.14.1.tgz", + "integrity": "sha1-4SIvRt3ahd6tD9HJ3xMXYOd3VcE=" + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-2.2.0.tgz", + "integrity": "sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE=", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/is-yarn-global/download/is-yarn-global-0.3.0.tgz?cache=0&sync_timestamp=1619356554445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-yarn-global%2Fdownload%2Fis-yarn-global-0.3.0.tgz", + "integrity": "sha1-1QLTOCWQ6jAEiTdGdUyJE5lz4jI=", + "dev": true + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/isarray/download/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/isobject/download/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/istanbul-lib-coverage/download/istanbul-lib-coverage-3.2.0.tgz?cache=0&sync_timestamp=1634527300482&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fistanbul-lib-coverage%2Fdownload%2Fistanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha1-GJ55CdCjn6Wj361bA/cZR3cBkdM=", + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/istanbul-lib-instrument/download/istanbul-lib-instrument-5.1.0.tgz?cache=0&sync_timestamp=1635386650079&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fistanbul-lib-instrument%2Fdownload%2Fistanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha1-e0kZi2V7J6cwuOnLYB8eG/8kxZo=", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/istanbul-lib-report/download/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha1-dRj+UupE3jcvRgp2tezan/tz2KY=", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/istanbul-lib-source-maps/download/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha1-iV86cJ/PujTG3lpCk5Ai8+Q1hVE=", + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/istanbul-reports/download/istanbul-reports-3.1.3.tgz", + "integrity": "sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jake": { + "version": "10.8.2", + "resolved": "https://registry.nlark.com/jake/download/jake-10.8.2.tgz", + "integrity": "sha1-68nehVgWCmbYLQ6txqLlj7xQCns=", + "dependencies": { + "async": "0.9.x", + "chalk": "^2.4.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jake/node_modules/async": { + "version": "0.9.2", + "resolved": "https://registry.npmmirror.com/async/download/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" + }, + "node_modules/jest": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest/download/jest-27.4.5.tgz", + "integrity": "sha512-uT5MiVN3Jppt314kidCk47MYIRilJjA/l2mxwiuzzxGUeJIvA8/pDaJOAX5KWvjAo7SCydcW0/4WEtgbLMiJkg==", + "dependencies": { + "@jest/core": "^27.4.5", + "import-local": "^3.0.2", + "jest-cli": "^27.4.5" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-changed-files/download/jest-changed-files-27.4.2.tgz", + "integrity": "sha512-/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A==", + "dependencies": { + "@jest/types": "^27.4.2", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-circus/download/jest-circus-27.4.5.tgz", + "integrity": "sha512-eTNWa9wsvBwPykhMMShheafbwyakcdHZaEYh5iRrQ0PFJxkDP/e3U/FvzGuKWu2WpwUA3C3hPlfpuzvOdTVqnw==", + "dependencies": { + "@jest/environment": "^27.4.4", + "@jest/test-result": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.4.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.4.2", + "jest-matcher-utils": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-runtime": "^27.4.5", + "jest-snapshot": "^27.4.5", + "jest-util": "^27.4.2", + "pretty-format": "^27.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-cli/download/jest-cli-27.4.5.tgz", + "integrity": "sha512-hrky3DSgE0u7sQxaCL7bdebEPHx5QzYmrGuUjaPLmPE8jx5adtvGuOlRspvMoVLTTDOHRnZDoRLYJuA+VCI7Hg==", + "dependencies": { + "@jest/core": "^27.4.5", + "@jest/test-result": "^27.4.2", + "@jest/types": "^27.4.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "jest-config": "^27.4.5", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-config/download/jest-config-27.4.5.tgz", + "integrity": "sha512-t+STVJtPt+fpqQ8GBw850NtSQbnDOw/UzdPfzDaHQ48/AylQlW7LHj3dH+ndxhC1UxJ0Q3qkq7IH+nM1skwTwA==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^27.4.5", + "@jest/types": "^27.4.2", + "babel-jest": "^27.4.5", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-circus": "^27.4.5", + "jest-environment-jsdom": "^27.4.4", + "jest-environment-node": "^27.4.4", + "jest-get-type": "^27.4.0", + "jest-jasmine2": "^27.4.5", + "jest-regex-util": "^27.4.0", + "jest-resolve": "^27.4.5", + "jest-runner": "^27.4.5", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "micromatch": "^4.0.4", + "pretty-format": "^27.4.2", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-diff/download/jest-diff-27.4.2.tgz", + "integrity": "sha512-ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.4.0", + "jest-get-type": "^27.4.0", + "pretty-format": "^27.4.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/jest-docblock/download/jest-docblock-27.4.0.tgz", + "integrity": "sha512-7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-each/download/jest-each-27.4.2.tgz", + "integrity": "sha512-53V2MNyW28CTruB3lXaHNk6PkiIFuzdOC9gR3C6j8YE/ACfrPnz+slB0s17AgU1TtxNzLuHyvNlLJ+8QYw9nBg==", + "dependencies": { + "@jest/types": "^27.4.2", + "chalk": "^4.0.0", + "jest-get-type": "^27.4.0", + "jest-util": "^27.4.2", + "pretty-format": "^27.4.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.4.4", + "resolved": "https://registry.npmmirror.com/jest-environment-jsdom/download/jest-environment-jsdom-27.4.4.tgz", + "integrity": "sha512-cYR3ndNfHBqQgFvS1RL7dNqSvD//K56j/q1s2ygNHcfTCAp12zfIromO1w3COmXrxS8hWAh7+CmZmGCIoqGcGA==", + "dependencies": { + "@jest/environment": "^27.4.4", + "@jest/fake-timers": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "jest-mock": "^27.4.2", + "jest-util": "^27.4.2", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.4.4", + "resolved": "https://registry.npmmirror.com/jest-environment-node/download/jest-environment-node-27.4.4.tgz", + "integrity": "sha512-D+v3lbJ2GjQTQR23TK0kY3vFVmSeea05giInI41HHOaJnAwOnmUHTZgUaZL+VxUB43pIzoa7PMwWtCVlIUoVoA==", + "dependencies": { + "@jest/environment": "^27.4.4", + "@jest/fake-timers": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "jest-mock": "^27.4.2", + "jest-util": "^27.4.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/jest-get-type/download/jest-get-type-27.4.0.tgz", + "integrity": "sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-haste-map/download/jest-haste-map-27.4.5.tgz", + "integrity": "sha512-oJm1b5qhhPs78K24EDGifWS0dELYxnoBiDhatT/FThgB9yxqUm5F6li3Pv+Q+apMBmmPNzOBnZ7ZxWMB1Leq1Q==", + "dependencies": { + "@jest/types": "^27.4.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^27.4.0", + "jest-serializer": "^27.4.0", + "jest-util": "^27.4.2", + "jest-worker": "^27.4.5", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-jasmine2/download/jest-jasmine2-27.4.5.tgz", + "integrity": "sha512-oUnvwhJDj2LhOiUB1kdnJjkx8C5PwgUZQb9urF77mELH9DGR4e2GqpWQKBOYXWs5+uTN9BGDqRz3Aeg5Wts7aw==", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^27.4.4", + "@jest/source-map": "^27.4.0", + "@jest/test-result": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.4.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.4.2", + "jest-matcher-utils": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-runtime": "^27.4.5", + "jest-snapshot": "^27.4.5", + "jest-util": "^27.4.2", + "pretty-format": "^27.4.2", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-jasmine2/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-leak-detector/download/jest-leak-detector-27.4.2.tgz", + "integrity": "sha512-ml0KvFYZllzPBJWDei3mDzUhyp/M4ubKebX++fPaudpe8OsxUE+m+P6ciVLboQsrzOCWDjE20/eXew9QMx/VGw==", + "dependencies": { + "jest-get-type": "^27.4.0", + "pretty-format": "^27.4.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-matcher-utils/download/jest-matcher-utils-27.4.2.tgz", + "integrity": "sha512-jyP28er3RRtMv+fmYC/PKG8wvAmfGcSNproVTW2Y0P/OY7/hWUOmsPfxN1jOhM+0u2xU984u2yEagGivz9OBGQ==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.4.2", + "jest-get-type": "^27.4.0", + "pretty-format": "^27.4.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-message-util/download/jest-message-util-27.4.2.tgz", + "integrity": "sha512-OMRqRNd9E0DkBLZpFtZkAGYOXl6ZpoMtQJWTAREJKDOFa0M6ptB7L67tp+cszMBkvSgKOhNtQp2Vbcz3ZZKo/w==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.4.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "pretty-format": "^27.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-mock/download/jest-mock-27.4.2.tgz", + "integrity": "sha512-PDDPuyhoukk20JrQKeofK12hqtSka7mWH0QQuxSNgrdiPsrnYYLS6wbzu/HDlxZRzji5ylLRULeuI/vmZZDrYA==", + "dependencies": { + "@jest/types": "^27.4.2", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmmirror.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha1-twSsCuAoqJEIpNBAs/kZ393I4zw=", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/jest-regex-util/download/jest-regex-util-27.4.0.tgz", + "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-resolve/download/jest-resolve-27.4.5.tgz", + "integrity": "sha512-xU3z1BuOz/hUhVUL+918KqUgK+skqOuUsAi7A+iwoUldK6/+PW+utK8l8cxIWT9AW7IAhGNXjSAh1UYmjULZZw==", + "dependencies": { + "@jest/types": "^27.4.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.4.5", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-resolve-dependencies/download/jest-resolve-dependencies-27.4.5.tgz", + "integrity": "sha512-elEVvkvRK51y037NshtEkEnukMBWvlPzZHiL847OrIljJ8yIsujD2GXRPqDXC4rEVKbcdsy7W0FxoZb4WmEs7w==", + "dependencies": { + "@jest/types": "^27.4.2", + "jest-regex-util": "^27.4.0", + "jest-snapshot": "^27.4.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-runner/download/jest-runner-27.4.5.tgz", + "integrity": "sha512-/irauncTfmY1WkTaRQGRWcyQLzK1g98GYG/8QvIPviHgO1Fqz1JYeEIsSfF+9mc/UTA6S+IIHFgKyvUrtiBIZg==", + "dependencies": { + "@jest/console": "^27.4.2", + "@jest/environment": "^27.4.4", + "@jest/test-result": "^27.4.2", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-docblock": "^27.4.0", + "jest-environment-jsdom": "^27.4.4", + "jest-environment-node": "^27.4.4", + "jest-haste-map": "^27.4.5", + "jest-leak-detector": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-resolve": "^27.4.5", + "jest-runtime": "^27.4.5", + "jest-util": "^27.4.2", + "jest-worker": "^27.4.5", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-runtime/download/jest-runtime-27.4.5.tgz", + "integrity": "sha512-CIYqwuJQXHQtPd/idgrx4zgJ6iCb6uBjQq1RSAGQrw2S8XifDmoM1Ot8NRd80ooAm+ZNdHVwsktIMGlA1F1FAQ==", + "dependencies": { + "@jest/console": "^27.4.2", + "@jest/environment": "^27.4.4", + "@jest/globals": "^27.4.4", + "@jest/source-map": "^27.4.0", + "@jest/test-result": "^27.4.2", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.4.5", + "jest-message-util": "^27.4.2", + "jest-mock": "^27.4.2", + "jest-regex-util": "^27.4.0", + "jest-resolve": "^27.4.5", + "jest-snapshot": "^27.4.5", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^16.2.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-serializer": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/jest-serializer/download/jest-serializer-27.4.0.tgz", + "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-snapshot/download/jest-snapshot-27.4.5.tgz", + "integrity": "sha512-eCi/iM1YJFrJWiT9de4+RpWWWBqsHiYxFG9V9o/n0WXs6GpW4lUt4FAHAgFPTLPqCUVzrMQmSmTZSgQzwqR7IQ==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/parser": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.4.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^27.4.2", + "jest-get-type": "^27.4.0", + "jest-haste-map": "^27.4.5", + "jest-matcher-utils": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-resolve": "^27.4.5", + "jest-util": "^27.4.2", + "natural-compare": "^1.4.0", + "pretty-format": "^27.4.2", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-util/download/jest-util-27.4.2.tgz", + "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==", + "dependencies": { + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.4", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-validate/download/jest-validate-27.4.2.tgz", + "integrity": "sha512-hWYsSUej+Fs8ZhOm5vhWzwSLmVaPAxRy+Mr+z5MzeaHm9AxUpXdoVMEW4R86y5gOobVfBsMFLk4Rb+QkiEpx1A==", + "dependencies": { + "@jest/types": "^27.4.2", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.4.0", + "leven": "^3.1.0", + "pretty-format": "^27.4.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/jest-watch-typeahead/download/jest-watch-typeahead-1.0.0.tgz?cache=0&sync_timestamp=1632899984169&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-watch-typeahead%2Fdownload%2Fjest-watch-typeahead-1.0.0.tgz", + "integrity": "sha1-TeLKHrWWrLGIl1KvurhLdPzZkXM=", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^27.0.0", + "jest-watcher": "^27.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-6.0.1.tgz", + "integrity": "sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=", + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/char-regex": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/char-regex/download/char-regex-2.0.0.tgz", + "integrity": "sha1-FvmPP4dO3O3dMA/aXVjfOAp2QaY=", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-watch-typeahead/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/slash/download/slash-4.0.0.tgz", + "integrity": "sha1-JCI3IXbExsWt214q2oha+YSzlqc=", + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/string-length/download/string-length-5.0.1.tgz?cache=0&sync_timestamp=1631558154323&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstring-length%2Fdownload%2Fstring-length-5.0.1.tgz", + "integrity": "sha1-PWR/SXtujo1B5CL34LI7xTbIOB4=", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-7.0.1.tgz?cache=0&sync_timestamp=1632420562057&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-7.0.1.tgz", + "integrity": "sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I=", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-watch-typeahead/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-watcher/download/jest-watcher-27.4.2.tgz", + "integrity": "sha512-NJvMVyyBeXfDezhWzUOCOYZrUmkSCiatpjpm+nFUid74OZEHk6aMLrZAukIiFDwdbqp6mTM6Ui1w4oc+8EobQg==", + "dependencies": { + "@jest/test-result": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.4.2", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-worker/download/jest-worker-27.4.5.tgz", + "integrity": "sha512-f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-8.1.1.tgz", + "integrity": "sha1-zW/BfihQDP9WwbhsCn/UpUpzAFw=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/jju/download/jju-1.4.0.tgz", + "integrity": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=", + "dev": true + }, + "node_modules/jquery": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/jquery/download/jquery-3.6.0.tgz", + "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==" + }, + "node_modules/jquery-mousewheel": { + "version": "3.1.13", + "resolved": "https://registry.npm.taobao.org/jquery-mousewheel/download/jquery-mousewheel-3.1.13.tgz", + "integrity": "sha1-BvAzXxbjU6aV5yBr9QUDy1I6buU=" + }, + "node_modules/js-cookie": { + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/js-cookie/download/js-cookie-2.2.1.tgz", + "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==" + }, + "node_modules/js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npm.taobao.org/js-sha3/download/js-sha3-0.8.0.tgz", + "integrity": "sha1-ubel2nOvrX3t0PjEY5VMveaBiEA=" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz", + "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmmirror.com/js-yaml/download/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmmirror.com/jsdom/download/jsdom-16.7.0.tgz", + "integrity": "sha1-kYrnGWVCSxl8gZ+Bg6dU4Yl3txA=", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-2.5.2.tgz", + "integrity": "sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/json-buffer/download/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npm.taobao.org/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=" + }, + "node_modules/json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/json-parse-helpfulerror/download/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha1-E/FM4C7tTpgSl7ZOueO5MuLdE9w=", + "dev": true, + "dependencies": { + "jju": "^1.1.0" + } + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/json-schema/download/json-schema-0.4.0.tgz?cache=0&sync_timestamp=1636423528947&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjson-schema%2Fdownload%2Fjson-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz", + "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=" + }, + "node_modules/json-server": { + "version": "0.17.0", + "resolved": "https://registry.npmmirror.com/json-server/download/json-server-0.17.0.tgz", + "integrity": "sha1-bbPR0QKKkMRkL/XlYnTRBjSOxEw=", + "dev": true, + "license": "MIT", + "dependencies": { + "body-parser": "^1.19.0", + "chalk": "^4.1.2", + "compression": "^1.7.4", + "connect-pause": "^0.1.1", + "cors": "^2.8.5", + "errorhandler": "^1.5.1", + "express": "^4.17.1", + "express-urlrewrite": "^1.4.0", + "json-parse-helpfulerror": "^1.0.3", + "lodash": "^4.17.21", + "lodash-id": "^0.14.1", + "lowdb": "^1.0.0", + "method-override": "^3.0.0", + "morgan": "^1.10.0", + "nanoid": "^3.1.23", + "please-upgrade-node": "^3.2.0", + "pluralize": "^8.0.0", + "server-destroy": "^1.0.1", + "update-notifier": "^5.1.0", + "yargs": "^17.0.1" + }, + "bin": { + "json-server": "lib/cli/bin.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/json-server/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-server/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/json-server/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/json-server/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "node_modules/json-server/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-server/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-server/node_modules/yargs": { + "version": "17.3.1", + "resolved": "https://registry.npmmirror.com/yargs/download/yargs-17.3.1.tgz", + "integrity": "sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/json-server/node_modules/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmmirror.com/yargs-parser/download/yargs-parser-21.0.0.tgz?cache=0&sync_timestamp=1637030983058&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fyargs-parser%2Fdownload%2Fyargs-parser-21.0.0.tgz", + "integrity": "sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "node_modules/json2module": { + "version": "0.0.3", + "resolved": "https://registry.nlark.com/json2module/download/json2module-0.0.3.tgz", + "integrity": "sha1-APtfSpt638PwZHwpyxe80Zeb6bI=", + "dependencies": { + "rw": "^1.3.2" + }, + "bin": { + "json2module": "bin/json2module" + } + }, + "node_modules/json2mq": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/json2mq/download/json2mq-0.2.0.tgz", + "integrity": "sha1-tje9O6nqvhIsg+lyBIOusQ0skEo=", + "dependencies": { + "string-convert": "^0.2.0" + } + }, + "node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "integrity": "sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/jsonfile/download/jsonfile-6.1.0.tgz?cache=0&sync_timestamp=1618846895804&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjsonfile%2Fdownload%2Fjsonfile-6.1.0.tgz", + "integrity": "sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4=", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/jsonpointer/download/jsonpointer-5.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjsonpointer%2Fdownload%2Fjsonpointer-5.0.0.tgz", + "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/jsx-ast-utils/download/jsx-ast-utils-3.2.1.tgz?cache=0&sync_timestamp=1631856506022&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjsx-ast-utils%2Fdownload%2Fjsx-ast-utils-3.2.1.tgz", + "integrity": "sha1-cguXv+fZAbkn2Hw3c2N66OpIeBs=", + "dependencies": { + "array-includes": "^3.1.3", + "object.assign": "^4.1.2" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/kdbush": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/kdbush/download/kdbush-3.0.0.tgz", + "integrity": "sha1-+EhHlNRwBMwthe06eTU9vgq8K/A=" + }, + "node_modules/keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/keyv/download/keyv-3.1.0.tgz", + "integrity": "sha1-7MIoSG9pmR5J6UdkhaW+Ho/FxNk=", + "dev": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", + "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/kleur/download/kleur-3.0.3.tgz", + "integrity": "sha1-p5yezIbuHOP6YgbRIWxQHxR/wH4=", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/klona/download/klona-2.0.5.tgz?cache=0&sync_timestamp=1635385383825&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fklona%2Fdownload%2Fklona-2.0.5.tgz", + "integrity": "sha1-0WZXTZAHY5XZljqnqSj6u412r7w=", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/l7-tiny-sdf": { + "version": "0.0.2", + "resolved": "https://registry.npmmirror.com/l7-tiny-sdf/download/l7-tiny-sdf-0.0.2.tgz", + "integrity": "sha1-Qal6F5J5y9oJTlh0xhrYjRBWNHk=" + }, + "node_modules/l7eval5": { + "version": "0.0.3", + "resolved": "https://registry.npmmirror.com/l7eval5/download/l7eval5-0.0.3.tgz", + "integrity": "sha512-xnn9x/T0zawTM1L9DASmRXVMb5fTCib83FtGZQcn5ToM1lAo4dutNOK2JAC+jd3mEMWa9MMq188dyoQcqG2WOg==", + "dependencies": { + "@babel/runtime": "^7.8.4", + "@types/acorn": "^4.0.5", + "@types/estree": "0.0.41", + "acorn": "^7.1.0" + } + }, + "node_modules/l7eval5/node_modules/@types/estree": { + "version": "0.0.41", + "resolved": "https://registry.npmmirror.com/@types/estree/download/@types/estree-0.0.41.tgz", + "integrity": "sha1-/ZB1QVC1dDK3K/VgUwUAWX/wRCE=" + }, + "node_modules/l7eval5/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/l7hammerjs": { + "version": "0.0.6", + "resolved": "https://registry.npmmirror.com/l7hammerjs/download/l7hammerjs-0.0.6.tgz", + "integrity": "sha512-MwzZZibiwqHVq2AMJtXVGENvP03KAvhNtPwRUFszzSXe2Flt6mdrpv41TPHKOn5beYTcDL0iPQ+NvlSndkX6ag==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/l7regl": { + "version": "0.0.16", + "resolved": "https://registry.npmmirror.com/l7regl/download/l7regl-0.0.16.tgz", + "integrity": "sha512-sQjRezX2SN168K+NoE6MrDzehLEomD4KhDT8XdpU3mms8s7L4oOuWX0TslSXDMUPSBNrJRf0vGMdrouGRqvQZQ==", + "dependencies": { + "falafel": "^2.2.4", + "l7eval5": "^0.0.3" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.nlark.com/language-subtag-registry/download/language-subtag-registry-0.3.21.tgz", + "integrity": "sha1-BKwhi+pG8EywOQhGAsbanniN1Fo=" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/language-tags/download/language-tags-1.0.5.tgz", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/latest-version": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/latest-version/download/latest-version-5.1.0.tgz", + "integrity": "sha1-EZ3+kI/jjRXfpD7NE/oS7Igy+s4=", + "dev": true, + "dependencies": { + "package-json": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/lazy-cache/download/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/less": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/less/download/less-4.1.2.tgz", + "integrity": "sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==", + "dependencies": { + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^2.5.2", + "source-map": "~0.6.0" + } + }, + "node_modules/less-loader": { + "version": "10.2.0", + "resolved": "https://registry.npmmirror.com/less-loader/download/less-loader-10.2.0.tgz", + "integrity": "sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg==", + "dependencies": { + "klona": "^2.0.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "peerDependencies": { + "less": "^3.5.0 || ^4.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/less/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "integrity": "sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=", + "optional": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/less/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.nlark.com/semver/download/semver-5.7.1.tgz", + "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=", + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/less/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz?cache=0&sync_timestamp=1628597922950&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fleven%2Fdownload%2Fleven-3.1.0.tgz", + "integrity": "sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I=", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/levn/download/levn-0.4.1.tgz", + "integrity": "sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/lilconfig/download/lilconfig-2.0.4.tgz", + "integrity": "sha1-9FB9BD1wWLOAtqj1y3vNSzTO4II=", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/lines-and-columns/download/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npm.taobao.org/loader-runner/download/loader-runner-4.2.0.tgz?cache=0&sync_timestamp=1610027880902&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floader-runner%2Fdownload%2Floader-runner-4.2.0.tgz", + "integrity": "sha1-1wIjgNZtFMX7HUlriYZOvP1Hg4Q=", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/loader-utils/download/loader-utils-2.0.2.tgz", + "integrity": "sha1-1uO0+4GHByGuTghoqxHdY4NowSk=", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-6.0.0.tgz", + "integrity": "sha1-VTIeswn+u8WcSAHZMackUqaB0oY=", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/download/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash-es/download/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/lodash-id": { + "version": "0.14.1", + "resolved": "https://registry.nlark.com/lodash-id/download/lodash-id-0.14.1.tgz", + "integrity": "sha1-3/ofH4uQ0YA7sNcLfXVH4QdR6As=", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + }, + "node_modules/lodash.isarray": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/lodash.isarray/download/lodash.isarray-4.0.0.tgz", + "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=", + "deprecated": "This package is deprecated. Use Array.isArray." + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/lodash.isequal/download/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "node_modules/lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/lodash.isnil/download/lodash.isnil-4.0.0.tgz", + "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.nlark.com/lodash.isplainobject/download/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npm.taobao.org/lodash.memoize/download/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npm.taobao.org/lodash.merge/download/lodash.merge-4.6.2.tgz", + "integrity": "sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo=" + }, + "node_modules/lodash.mergewith": { + "version": "4.6.2", + "resolved": "https://registry.npmmirror.com/lodash.mergewith/download/lodash.mergewith-4.6.2.tgz", + "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmmirror.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/log-update/download/log-update-4.0.0.tgz?cache=0&sync_timestamp=1634542395049&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flog-update%2Fdownload%2Flog-update-4.0.0.tgz", + "integrity": "sha1-WJ7NNSRx8qHAxXAodUOmTf0g4KE=", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-update/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.nlark.com/wrap-ansi/download/wrap-ansi-6.2.0.tgz", + "integrity": "sha1-6Tk7oHEC5skaOyIUePAlfNKFblM=", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/longest": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/longest/download/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz", + "integrity": "sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lowdb": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/lowdb/download/lowdb-1.0.0.tgz?cache=0&sync_timestamp=1631543358836&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flowdb%2Fdownload%2Flowdb-1.0.0.tgz", + "integrity": "sha1-UkO+ayJ4bMzjDlDJoz6sNrIMgGQ=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.3", + "is-promise": "^2.1.0", + "lodash": "4", + "pify": "^3.0.0", + "steno": "^0.4.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lowdb/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/lower-case/download/lower-case-2.0.2.tgz", + "integrity": "sha1-b6I3xj29xKgsoP2ILkci3F5jTig=", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/lowercase-keys/download/lowercase-keys-1.0.1.tgz?cache=0&sync_timestamp=1634551808987&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flowercase-keys%2Fdownload%2Flowercase-keys-1.0.1.tgz", + "integrity": "sha1-b54wtHCE2XGnyCD/FabFFnt0wm8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/lru-cache/download/lru-cache-6.0.0.tgz", + "integrity": "sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lz-string": { + "version": "1.4.4", + "resolved": "https://registry.nlark.com/lz-string/download/lz-string-1.4.4.tgz", + "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.25.7", + "resolved": "https://registry.nlark.com/magic-string/download/magic-string-0.25.7.tgz", + "integrity": "sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE=", + "dependencies": { + "sourcemap-codec": "^1.4.4" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "integrity": "sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8=", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmmirror.com/makeerror/download/makeerror-1.0.12.tgz?cache=0&sync_timestamp=1635238291084&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmakeerror%2Fdownload%2Fmakeerror-1.0.12.tgz", + "integrity": "sha1-Pl3SB5qC6BLpg8xmEMSiyw6qgBo=", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/mana-common": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/mana-common/download/mana-common-0.1.0.tgz", + "integrity": "sha1-iM9tXUKlVGujGedH6HblDSRGmBU=", + "dependencies": { + "debug": "^4.3.1" + } + }, + "node_modules/mana-syringe": { + "version": "0.2.2", + "resolved": "https://registry.npmmirror.com/mana-syringe/download/mana-syringe-0.2.2.tgz", + "integrity": "sha512-Sv5r0/PrQRq4pW+9lDicGsEPzPLkd1PwjTs5zHUV1I293S3alkBNyuSjktVeBploofH8MAMLd4DS2crwct48wg==", + "dependencies": { + "inversify": "^5.0.1" + } + }, + "node_modules/mapbox-gl": { + "version": "1.13.2", + "resolved": "https://registry.npmmirror.com/mapbox-gl/download/mapbox-gl-1.13.2.tgz", + "integrity": "sha1-dmOcRPFB+N/3G32PFQTyrtEfdRc=", + "license": "SEE LICENSE IN LICENSE.txt", + "dependencies": { + "@mapbox/geojson-rewind": "^0.5.0", + "@mapbox/geojson-types": "^1.0.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^1.5.0", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^1.1.1", + "@mapbox/unitbezier": "^0.0.0", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "csscolorparser": "~1.0.3", + "earcut": "^2.2.2", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.2.1", + "grid-index": "^1.1.0", + "minimist": "^1.2.5", + "murmurhash-js": "^1.0.0", + "pbf": "^3.2.1", + "potpack": "^1.0.1", + "quickselect": "^2.0.0", + "rw": "^1.3.3", + "supercluster": "^7.1.0", + "tinyqueue": "^2.0.3", + "vt-pbf": "^3.1.1" + }, + "engines": { + "node": ">=6.4.0" + } + }, + "node_modules/mapbox-gl/node_modules/@mapbox/geojson-rewind": { + "version": "0.5.1", + "resolved": "https://registry.nlark.com/@mapbox/geojson-rewind/download/@mapbox/geojson-rewind-0.5.1.tgz", + "integrity": "sha1-rb4W3Gg+tA6Qk0xRpeKMe79E9OE=", + "dependencies": { + "get-stream": "^6.0.1", + "minimist": "^1.2.5" + }, + "bin": { + "geojson-rewind": "geojson-rewind" + } + }, + "node_modules/match-sorter": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/match-sorter/download/match-sorter-6.3.1.tgz", + "integrity": "sha1-mMw3/adWCTQk3fPLxiv+nHW5K9o=", + "dependencies": { + "@babel/runtime": "^7.12.5", + "remove-accents": "0.4.2" + } + }, + "node_modules/material-colors": { + "version": "1.2.6", + "resolved": "https://registry.npm.taobao.org/material-colors/download/material-colors-1.2.6.tgz", + "integrity": "sha1-bRlYhxEmmSzuzHL0vMTY8BCGX0Y=" + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/mdn-data/download/mdn-data-2.0.4.tgz", + "integrity": "sha1-aZs8OKxvHXKAkaZGULZdOIUC/Vs=" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.4.1", + "resolved": "https://registry.npmmirror.com/memfs/download/memfs-3.4.1.tgz", + "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==", + "dependencies": { + "fs-monkey": "1.0.3" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/memoize-one/download/memoize-one-6.0.0.tgz?cache=0&sync_timestamp=1634697208428&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmemoize-one%2Fdownload%2Fmemoize-one-6.0.0.tgz", + "integrity": "sha1-slkbhx7YKUiu5HJ9xqvO7qyMEEU=", + "license": "MIT" + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/merge-descriptors/download/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "node_modules/merge-json-schemas": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/merge-json-schemas/download/merge-json-schemas-1.0.0.tgz", + "integrity": "sha1-LWNeqoQBxfo9A/MPiTSfx8r+5i8=", + "dependencies": { + "lodash.isarray": "^4.0.0", + "lodash.isnil": "^4.0.0", + "lodash.isplainobject": "^4.0.6", + "lodash.mergewith": "^4.6.0", + "lodash.uniq": "^4.5.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz?cache=0&sync_timestamp=1622025345923&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmerge-stream%2Fdownload%2Fmerge-stream-2.0.0.tgz", + "integrity": "sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz", + "integrity": "sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=", + "engines": { + "node": ">= 8" + } + }, + "node_modules/method-override": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/method-override/download/method-override-3.0.0.tgz", + "integrity": "sha1-arDV1XTjII8VsMnPRatSAARo16I=", + "dev": true, + "dependencies": { + "debug": "3.1.0", + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/method-override/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/method-override/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/methods/download/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npm.taobao.org/micromatch/download/micromatch-4.0.4.tgz?cache=0&sync_timestamp=1618054841521&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmicromatch%2Fdownload%2Fmicromatch-4.0.4.tgz", + "integrity": "sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=", + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/microseconds": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/microseconds/download/microseconds-0.2.0.tgz", + "integrity": "sha1-Izsl9Qxipl2GH5eKSk+OwYeX3Dk=" + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/mime/download/mime-1.6.0.tgz", + "integrity": "sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmmirror.com/mime-db/download/mime-db-1.51.0.tgz?cache=0&sync_timestamp=1636426024486&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmime-db%2Fdownload%2Fmime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmmirror.com/mime-types/download/mime-types-2.1.34.tgz?cache=0&sync_timestamp=1636432244120&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmime-types%2Fdownload%2Fmime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "dependencies": { + "mime-db": "1.51.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-2.1.0.tgz?cache=0&sync_timestamp=1617823824094&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmimic-fn%2Fdownload%2Fmimic-fn-2.1.0.tgz", + "integrity": "sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/mimic-response/download/mimic-response-1.0.1.tgz", + "integrity": "sha1-SSNTiHju9CBjy4o+OweYeBSHqxs=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/min-indent/download/min-indent-1.0.1.tgz", + "integrity": "sha1-pj9oFnOzBXH76LwlaGrnRu76mGk=", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.4.5", + "resolved": "https://registry.npmmirror.com/mini-css-extract-plugin/download/mini-css-extract-plugin-2.4.5.tgz?cache=0&sync_timestamp=1637170563108&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmini-css-extract-plugin%2Fdownload%2Fmini-css-extract-plugin-2.4.5.tgz", + "integrity": "sha512-oEIhRucyn1JbT/1tU2BhnwO6ft1jjH1iCX9Gc59WFMg0n5773rQU0oyQ0zzeYFFuBfONaRbQJyGoPtuNseMxjA==", + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-5.1.0.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-4.0.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz", + "integrity": "sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc=" + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/minimatch/download/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.nlark.com/minimist/download/minimist-1.2.5.tgz", + "integrity": "sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=" + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmmirror.com/mkdirp/download/mkdirp-0.5.5.tgz?cache=0&sync_timestamp=1636300883420&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmkdirp%2Fdownload%2Fmkdirp-0.5.5.tgz", + "integrity": "sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8=", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ml-array-max": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/ml-array-max/download/ml-array-max-1.2.3.tgz", + "integrity": "sha1-ktH/72Z0MtFFHTWBenJ2xShjXmQ=", + "dependencies": { + "is-any-array": "^1.0.0" + } + }, + "node_modules/ml-array-min": { + "version": "1.2.2", + "resolved": "https://registry.npm.taobao.org/ml-array-min/download/ml-array-min-1.2.2.tgz", + "integrity": "sha1-q9aFEqV/6EmVE+byJlUzgH4rvms=", + "dependencies": { + "is-any-array": "^1.0.0" + } + }, + "node_modules/ml-array-rescale": { + "version": "1.3.6", + "resolved": "https://registry.nlark.com/ml-array-rescale/download/ml-array-rescale-1.3.6.tgz?cache=0&sync_timestamp=1630485037748&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fml-array-rescale%2Fdownload%2Fml-array-rescale-1.3.6.tgz", + "integrity": "sha1-Bg0cY2+7X4dyZfT8xODhV1IdYVo=", + "dependencies": { + "is-any-array": "^1.0.0", + "ml-array-max": "^1.2.3", + "ml-array-min": "^1.2.2" + } + }, + "node_modules/ml-matrix": { + "version": "6.8.2", + "resolved": "https://registry.npmmirror.com/ml-matrix/download/ml-matrix-6.8.2.tgz", + "integrity": "sha512-5o2gVLFyieDSgsStEU5mqty4MZqfeytYA/gJqBSw5/Xuob0X2UrFX/k7FDh+YAwjzG/1l8nYa0oDaJ0sGs/RlA==", + "dependencies": { + "ml-array-rescale": "^1.3.6" + } + }, + "node_modules/moment": { + "version": "2.29.1", + "resolved": "https://registry.npmmirror.com/moment/download/moment-2.29.1.tgz", + "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==", + "engines": { + "node": "*" + } + }, + "node_modules/morgan": { + "version": "1.10.0", + "resolved": "https://registry.nlark.com/morgan/download/morgan-1.10.0.tgz", + "integrity": "sha1-CRd4q8H8R801CYJGU9rh+qtrF9c=", + "dev": true, + "dependencies": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/morgan/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/morgan/node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-2.0.0.tgz", + "integrity": "sha1-tpYWPMdXVg0JzyLMj60Vcbeedt8=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/morgan/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/mousetrap": { + "version": "1.6.5", + "resolved": "https://registry.npmmirror.com/mousetrap/download/mousetrap-1.6.5.tgz", + "integrity": "sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==" + }, + "node_modules/mrmime": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/mrmime/download/mrmime-1.0.0.tgz", + "integrity": "sha1-FNOH8FhaUjPSkbq6M5sGN1KiOYs=", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.1.2.tgz", + "integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=" + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmmirror.com/multicast-dns/download/multicast-dns-6.2.3.tgz?cache=0&sync_timestamp=1633354851092&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmulticast-dns%2Fdownload%2Fmulticast-dns-6.2.3.tgz", + "integrity": "sha1-oOx72QVcQoL3kMPIL04o2zsxsik=", + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/multicast-dns-service-types/download/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "node_modules/murmurhash-js": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/murmurhash-js/download/murmurhash-js-1.0.0.tgz", + "integrity": "sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E=" + }, + "node_modules/nano-css": { + "version": "5.3.4", + "resolved": "https://registry.nlark.com/nano-css/download/nano-css-5.3.4.tgz", + "integrity": "sha1-QK9qg6dvhCBPNG6MyqkWnNrpFns=", + "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" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/nano-css/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/css-tree/download/css-tree-1.1.3.tgz", + "integrity": "sha1-60hw+2/XcHMn7JXC/yqwm16NuR0=", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/nano-css/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmmirror.com/mdn-data/download/mdn-data-2.0.14.tgz", + "integrity": "sha1-cRP8QoGRfWPOKbQ0RvcB5owlulA=" + }, + "node_modules/nano-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nano-time": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/nano-time/download/nano-time-1.0.0.tgz", + "integrity": "sha1-sFVPaa2J4i0JB/ehKwmTpdlhN+8=", + "dependencies": { + "big-integer": "^1.6.16" + } + }, + "node_modules/nanoid": { + "version": "3.1.30", + "resolved": "https://registry.npmmirror.com/nanoid/download/nanoid-3.1.30.tgz", + "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "node_modules/needle": { + "version": "2.9.1", + "resolved": "https://registry.nlark.com/needle/download/needle-2.9.1.tgz?cache=0&sync_timestamp=1630678823714&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fneedle%2Fdownload%2Fneedle-2.9.1.tgz", + "integrity": "sha1-ItHf++NJDCuD4wH3cJtnNs2PJoQ=", + "optional": true, + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "optional": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/needle/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz", + "integrity": "sha1-/qz3zPUlp3rpY0Q2pkiD/+yjRvs=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz", + "integrity": "sha1-tKr7k+OustgXTKU88WOrfXMIMF8=" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/no-case/download/no-case-3.0.4.tgz", + "integrity": "sha1-02H9XJgA9VhVGoNp/A3NRmK2Ek0=", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.nlark.com/node-forge/download/node-forge-0.10.0.tgz", + "integrity": "sha1-Mt6ir7Ppkm8C7lzoeUkCaRpna/M=", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/node-int64/download/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + }, + "node_modules/node-releases": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/node-releases/download/node-releases-2.0.1.tgz?cache=0&sync_timestamp=1634806914912&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnode-releases%2Fdownload%2Fnode-releases-2.0.1.tgz", + "integrity": "sha1-PR05XyBPHy8ppUNYuftnh2WtL8U=", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz", + "integrity": "sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/normalize-range/download/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-6.1.0.tgz", + "integrity": "sha1-QNCIW1Nd7/4/MUe+yHfQX+TFZoo=", + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/npm-run-path/download/npm-run-path-4.0.1.tgz?cache=0&sync_timestamp=1633420566316&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-4.0.1.tgz", + "integrity": "sha1-t+zR5e1T2o43pV4cImnguX7XSOo=", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-2.0.1.tgz", + "integrity": "sha1-Lv4WL1w9oGoolZ+9PbddvuqfD8I=", + "dependencies": { + "boolbase": "^1.0.0" + } + }, + "node_modules/nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz", + "integrity": "sha1-IEh5qePQaP8qVROcLHcngGgaOLc=" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/object-assign/download/object-assign-4.1.1.tgz?cache=0&sync_timestamp=1618846798176&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-assign%2Fdownload%2Fobject-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/object-hash/download/object-hash-2.2.0.tgz?cache=0&sync_timestamp=1622020508616&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-hash%2Fdownload%2Fobject-hash-2.2.0.tgz", + "integrity": "sha1-WtUYWB7vxEO9djRyuP8unCwNVKU=", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.0", + "resolved": "https://registry.npmmirror.com/object-inspect/download/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npm.taobao.org/object-is/download/object-is-1.1.5.tgz?cache=0&sync_timestamp=1613857744782&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fobject-is%2Fdownload%2Fobject-is-1.1.5.tgz", + "integrity": "sha1-ud7qpfx/GEag+uzc7sE45XePU6w=", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz", + "integrity": "sha1-HEfyct8nfzsdrwYWd9nILiMixg4=", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npm.taobao.org/object.assign/download/object.assign-4.1.2.tgz?cache=0&sync_timestamp=1604115300532&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fobject.assign%2Fdownload%2Fobject.assign-4.1.2.tgz", + "integrity": "sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA=", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmmirror.com/object.entries/download/object.entries-1.1.5.tgz", + "integrity": "sha1-4azdF8TeLNltWghIfPuduE2IGGE=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/object.fromentries/download/object.fromentries-2.0.5.tgz", + "integrity": "sha1-ezeyBRCcIedB5gVyf+iwrV+gglE=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.3.tgz?cache=0&sync_timestamp=1633321669707&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fobject.getownpropertydescriptors%2Fdownload%2Fobject.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha1-siPPOOF/77l6Y8EMkd9yzLOG354=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/object.hasown/download/object.hasown-1.1.0.tgz?cache=0&sync_timestamp=1633321914311&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fobject.hasown%2Fdownload%2Fobject.hasown-1.1.0.tgz", + "integrity": "sha1-cjLtJm800ZfRXKxYgCMvekeQr+U=", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmmirror.com/object.values/download/object.values-1.1.5.tgz", + "integrity": "sha1-lZ9j486e8QhyAzMIITHkpFm3Fqw=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/oblivious-set": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/oblivious-set/download/oblivious-set-1.0.0.tgz", + "integrity": "sha1-yDFvLC+2/3sRthWNsyNMSfczxWY=" + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/obuf/download/obuf-1.1.2.tgz", + "integrity": "sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4=" + }, + "node_modules/omit.js": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/omit.js/download/omit.js-2.0.2.tgz", + "integrity": "sha1-3ZuENvq5R6Xz/yFMslOGMeMT7C8=" + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/on-finished/download/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/on-headers/download/on-headers-1.0.2.tgz", + "integrity": "sha1-dysK5qqlJcOZ5Imt+tkMQD6zwo8=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/once/download/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "integrity": "sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/open": { + "version": "8.4.0", + "resolved": "https://registry.npmmirror.com/open/download/open-8.4.0.tgz?cache=0&sync_timestamp=1635048361939&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fopen%2Fdownload%2Fopen-8.4.0.tgz", + "integrity": "sha1-NFMhrhj4E4+CVlqRD9xrOejCRPg=", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/opener/download/opener-1.5.2.tgz", + "integrity": "sha1-XTfh81B3udysQwE3InGv3rKhNZg=", + "dev": true, + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.9.1.tgz", + "integrity": "sha1-TyNqY3Pa4FZqbUPhMmZ09QwpFJk=", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/p-cancelable/download/p-cancelable-1.1.0.tgz", + "integrity": "sha1-0HjRWjr0CSIMiG8dmgyi5EGrJsw=", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-3.1.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-3.1.0.tgz", + "integrity": "sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-5.0.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-5.0.0.tgz", + "integrity": "sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/p-map/download/p-map-4.0.0.tgz?cache=0&sync_timestamp=1635931916150&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fp-map%2Fdownload%2Fp-map-4.0.0.tgz", + "integrity": "sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs=", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/p-retry": { + "version": "4.6.1", + "resolved": "https://registry.npmmirror.com/p-retry/download/p-retry-4.6.1.tgz", + "integrity": "sha1-j83dXN96Z6CRGpzy7w5d9/YCMWw=", + "dependencies": { + "@types/retry": "^0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/p-try/download/p-try-2.2.0.tgz", + "integrity": "sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json": { + "version": "6.5.0", + "resolved": "https://registry.nlark.com/package-json/download/package-json-6.5.0.tgz?cache=0&sync_timestamp=1624550852446&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpackage-json%2Fdownload%2Fpackage-json-6.5.0.tgz", + "integrity": "sha1-b+7ayjXnVyWHbQsOZJdGl/7RRbA=", + "dev": true, + "dependencies": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/package-json/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/param-case/download/param-case-3.0.4.tgz", + "integrity": "sha1-fRf+SqEr3jTUp32RrPtiGcqtAcU=", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parent-module/download/parent-module-1.0.1.tgz?cache=0&sync_timestamp=1633337474992&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fparent-module%2Fdownload%2Fparent-module-1.0.1.tgz", + "integrity": "sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/parse-json/download/parse-json-5.2.0.tgz?cache=0&sync_timestamp=1637475717072&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fparse-json%2Fdownload%2Fparse-json-5.2.0.tgz", + "integrity": "sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parse-node-version/download/parse-node-version-1.0.1.tgz", + "integrity": "sha1-4rXb7eAOf6m8NjYH9TMn6LBzGJs=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/parse5/download/parse5-6.0.1.tgz", + "integrity": "sha1-4aHAhcVps9wIMhGE8Zo5zCf3wws=" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.nlark.com/parseurl/download/parseurl-1.3.3.tgz", + "integrity": "sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npm.taobao.org/pascal-case/download/pascal-case-3.1.2.tgz", + "integrity": "sha1-tI4O8rmOIF58Ha50fQsVCCN2YOs=", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/path-exists/download/path-exists-4.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-4.0.0.tgz", + "integrity": "sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npm.taobao.org/path-key/download/path-key-3.1.1.tgz?cache=0&sync_timestamp=1617971691339&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-key%2Fdownload%2Fpath-key-3.1.1.tgz", + "integrity": "sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz", + "integrity": "sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/path-type/download/path-type-4.0.0.tgz?cache=0&sync_timestamp=1611752074264&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-type%2Fdownload%2Fpath-type-4.0.0.tgz", + "integrity": "sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=", + "engines": { + "node": ">=8" + } + }, + "node_modules/pbf": { + "version": "3.2.1", + "resolved": "https://registry.npm.taobao.org/pbf/download/pbf-3.2.1.tgz", + "integrity": "sha1-tMG55yr5Zs2CxlMWkRFcwECf/io=", + "dependencies": { + "ieee754": "^1.1.12", + "resolve-protobuf-schema": "^2.1.0" + }, + "bin": { + "pbf": "bin/pbf" + } + }, + "node_modules/pdfast": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/pdfast/download/pdfast-0.2.0.tgz", + "integrity": "sha1-jLxVbhvyUiF3eHwN4uDUNzuohck=" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/performance-now/download/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/picocolors/download/picocolors-1.0.0.tgz?cache=0&sync_timestamp=1634093339035&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpicocolors%2Fdownload%2Fpicocolors-1.0.0.tgz", + "integrity": "sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz", + "integrity": "sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=", + "engines": { + "node": ">=8.6" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/pify/download/pify-4.0.1.tgz", + "integrity": "sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pirates": { + "version": "4.0.4", + "resolved": "https://registry.npmmirror.com/pirates/download/pirates-4.0.4.tgz", + "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/pkg-dir/download/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dependencies": { + "find-up": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-2.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-1.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-1.3.0.tgz", + "integrity": "sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-2.0.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/p-try/download/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/pkg-up/download/pkg-up-3.1.0.tgz?cache=0&sync_timestamp=1636035062199&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpkg-up%2Fdownload%2Fpkg-up-3.1.0.tgz", + "integrity": "sha1-EA7CNcwVDk/UJRlBJZaihRKg3vU=", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "integrity": "sha1-SRafHXmTQwZG2mHsxa41XCHJe3M=", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-3.0.0.tgz", + "integrity": "sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4=", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-3.0.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-3.0.0.tgz", + "integrity": "sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ=", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/please-upgrade-node/download/please-upgrade-node-3.2.0.tgz", + "integrity": "sha1-rt3T+ZTJM+StmLmdmlVu+g4v6UI=", + "dev": true, + "dependencies": { + "semver-compare": "^1.0.0" + } + }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.nlark.com/pluralize/download/pluralize-8.0.0.tgz", + "integrity": "sha1-Gm+hajjRKhkB4DIPoBcFHFOc47E=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/polyline-miter-util": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/polyline-miter-util/download/polyline-miter-util-1.0.1.tgz", + "integrity": "sha1-tpPyOJ6g3tNqa89ezS7OS2kX2Vc=", + "dependencies": { + "gl-vec2": "^1.0.0" + } + }, + "node_modules/polyline-normals": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/polyline-normals/download/polyline-normals-2.0.2.tgz", + "integrity": "sha1-oXN+ddjA3MsaWR+csn8J7vS30TU=", + "dependencies": { + "polyline-miter-util": "^1.0.1" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npm.taobao.org/portfinder/download/portfinder-1.0.28.tgz", + "integrity": "sha1-Z8RiKFK9U3TdHdkA93n1NGL6x3g=", + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/postcss": { + "version": "8.4.5", + "resolved": "https://registry.npmmirror.com/postcss/download/postcss-8.4.5.tgz", + "integrity": "sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==", + "dependencies": { + "nanoid": "^3.1.30", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/postcss-attribute-case-insensitive/download/postcss-attribute-case-insensitive-5.0.0.tgz", + "integrity": "sha1-Ocv2ur897R5KvzfQnW7aIcZEEFw=", + "dependencies": { + "postcss-selector-parser": "^6.0.2" + }, + "peerDependencies": { + "postcss": "^8.0.2" + } + }, + "node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/postcss-browser-comments/download/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha1-vPyGE031gH9dPA7voZHUITa15yo=", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "node_modules/postcss-calc": { + "version": "8.0.0", + "resolved": "https://registry.nlark.com/postcss-calc/download/postcss-calc-8.0.0.tgz", + "integrity": "sha1-oFuHqs0TJ0Cl2wlGKjYSRT5d+Qo=", + "dependencies": { + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/postcss-color-functional-notation/download/postcss-color-functional-notation-4.2.0.tgz", + "integrity": "sha512-ptwZWYEN2w/3z7HeWbWQRr/7MjJDf2zFO/6CdJ5gsQlC5O6kvjU0RAC3UeKCdxRS8+4bs17CMbTH+hlNs93q1Q==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "postcss-color-functional-notation": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.1", + "resolved": "https://registry.npmmirror.com/postcss-color-hex-alpha/download/postcss-color-hex-alpha-8.0.1.tgz", + "integrity": "sha512-kzp95xRLSFnFdmVIWwbWa3QohE3v/G/wNBvW4U66Lt4wq119I6Bz1EVErrARWZ5+7HskgQ6M4mpiwjo+jOdApA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "postcss-color-hex-alpha": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/postcss-color-rebeccapurple/download/postcss-color-rebeccapurple-7.0.1.tgz", + "integrity": "sha512-uA5MAOoCwCK32VgYXWwPD3vBDDOi1oMOkLnO+U1Af6ex7JOE0xHVJqnc9w5QS+fPJ9yveXeHKVtdVqzP2WiCsQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "postcss-color-rebeccapurple": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-colormin": { + "version": "5.2.2", + "resolved": "https://registry.npmmirror.com/postcss-colormin/download/postcss-colormin-5.2.2.tgz", + "integrity": "sha512-tSEe3NpqWARUTidDlF0LntPkdlhXqfDFuA1yslqpvvGAfpZ7oBaw+/QXd935NKm2U9p4PED0HDZlzmMk7fVC6g==", + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-convert-values/download/postcss-convert-values-5.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-convert-values%2Fdownload%2Fpostcss-convert-values-5.0.2.tgz", + "integrity": "sha1-h5uEncNnfH1ryUtqLBo/CAh5gFk=", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-custom-media": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-custom-media/download/postcss-custom-media-8.0.0.tgz?cache=0&sync_timestamp=1612199037468&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-custom-media%2Fdownload%2Fpostcss-custom-media-8.0.0.tgz", + "integrity": "sha1-G+av+L59yb8f4BS947cbkrtFUvE=", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.0.1", + "resolved": "https://registry.npmmirror.com/postcss-custom-properties/download/postcss-custom-properties-12.0.1.tgz", + "integrity": "sha512-Z3WjuML7qn6ehesWD4vDqOmM5CZO/qfVknpI9/gDOwMNhcLg3OSgT5wENR4kFDZtCricAE7cxL97bsj5lFnuZQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "postcss-custom-properties": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/postcss-custom-selectors/download/postcss-custom-selectors-6.0.0.tgz?cache=0&sync_timestamp=1618846905419&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-custom-selectors%2Fdownload%2Fpostcss-custom-selectors-6.0.0.tgz", + "integrity": "sha1-Aig55B+/ccR65uMWyw5iEwEt9e8=", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.2" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/postcss-dir-pseudo-class/download/postcss-dir-pseudo-class-6.0.1.tgz", + "integrity": "sha512-nA6+XVUc5VDe6LrJ5KWFqJ05dxZXzoYiUQJFZSuwLW/8aI462w7gCEhB+RnOA+N3dtrj8B2WTSfcjCac6RJW0A==", + "dependencies": { + "postcss-selector-parser": "^6.0.7" + }, + "bin": { + "postcss-dir-pseudo-class": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-comments/download/postcss-discard-comments-5.0.1.tgz", + "integrity": "sha1-nq5LdHz3YNMfJEfCfwYZ1XGJAf4=", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-duplicates/download/postcss-discard-duplicates-5.0.1.tgz", + "integrity": "sha1-aPfMZFj+a6suRsn1WuUoafaA5m0=", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-empty/download/postcss-discard-empty-5.0.1.tgz", + "integrity": "sha1-7hNsOeJ9XS7U2g7l7QK8ip+L9tg=", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-overridden/download/postcss-discard-overridden-5.0.1.tgz", + "integrity": "sha1-RUtB9wcwC5gQmnUAXKSrD/J0OsY=", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/postcss-double-position-gradients/download/postcss-double-position-gradients-3.0.3.tgz", + "integrity": "sha512-x3DYDhCsKS/sjH6t+sM9R+pq4lCwdHGVeUOpE/gDybfY33acJJie+NzRigKJVze7E/jH/1WGl/qPRV90Lso7Mg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "postcss-double-position-gradients": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-env-function": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/postcss-env-function/download/postcss-env-function-4.0.3.tgz", + "integrity": "sha512-RQ0CwXX161FLuC525Lx7VqsHXSPQvgErgOMcbfuAKPq1hgHDPJLemowVaPuWF4E3IO8rgUbStaRLGTM5VlN/vw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "postcss-env-function": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.nlark.com/postcss-flexbugs-fixes/download/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha1-ICjhRTEwdPyavidst8oU5UAetJ0=", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-focus-visible": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/postcss-focus-visible/download/postcss-focus-visible-6.0.2.tgz", + "integrity": "sha512-KYztrdQRRr+pPJQRAyr9HAEr8I8TUfpSyqOo8qddrjtMLap7Ud1FAF8szi4ZWrhMmch3EwL4RQMqsneOByWZIA==", + "dependencies": { + "postcss-selector-parser": "^6.0.7" + }, + "bin": { + "postcss-focus-visible": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-focus-within": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-focus-within/download/postcss-focus-within-5.0.2.tgz", + "integrity": "sha512-0zm8gM/fpFZtWM8drbj5M6HKVztHgLqtHygCMB494SOkudtnePpq5nv0ie2Jx/BrD+A5nhj0uK3tuMnEpjKonA==", + "dependencies": { + "postcss-selector-parser": "^6.0.7" + }, + "bin": { + "postcss-focus-within": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-font-variant/download/postcss-font-variant-5.0.0.tgz", + "integrity": "sha1-79WbS36ouwYSfy0DG/u38k0y+mY=", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/postcss-gap-properties/download/postcss-gap-properties-3.0.1.tgz", + "integrity": "sha512-t7ztwUmG17KQRTHDWeekeSQ41ZsjYK+OJagee3E3hFS46n9RD5QcT/NRxwbc2DWjVSL5GQf46al3wEiH6FRSKg==", + "bin": { + "postcss-gap-properties": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-image-set-function": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/postcss-image-set-function/download/postcss-image-set-function-4.0.3.tgz", + "integrity": "sha512-+EZRaCg/MzsKW2ggTy26mG/uoHnEAjCcGICCkUYgg2PPguZaRjSBKY4KHiWcdH6ydsR7enlnO3i7bQ+Fpbx7vQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "postcss-image-set-function": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/postcss-initial/download/postcss-initial-4.0.1.tgz", + "integrity": "sha1-Up9zX3LFckoPswUn32+3rFTX3kI=", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "3.0.3", + "resolved": "https://registry.npm.taobao.org/postcss-js/download/postcss-js-3.0.3.tgz", + "integrity": "sha1-LwvTcKLoWZ1FQ59pcEA7WHOr2jM=", + "dependencies": { + "camelcase-css": "^2.0.1", + "postcss": "^8.1.6" + }, + "engines": { + "node": ">=10.0" + } + }, + "node_modules/postcss-lab-function": { + "version": "4.0.2", + "resolved": "https://registry.npmmirror.com/postcss-lab-function/download/postcss-lab-function-4.0.2.tgz", + "integrity": "sha512-IkX1S1CROQF9uCu5F4/Ib5SRFDJXlJg3ig9x4OJkKIF16y0o7WRKfFje2ym+yThfwYjozwHZgf37Xwbnscpipg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "postcss-lab-function": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-load-config": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/postcss-load-config/download/postcss-load-config-3.1.0.tgz", + "integrity": "sha1-05xHCRxK7Df1AnI3OmpkjvXpeCk=", + "dependencies": { + "import-cwd": "^3.0.0", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/postcss-loader/download/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-logical": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/postcss-logical/download/postcss-logical-5.0.1.tgz", + "integrity": "sha512-cKekWCoZrxdQktbj8PyCOqQWxsYAPyHjoeBPedkQzfWuEqRm0KVFRHypsHAiH2dDVUae52yx8PBtWS+V3BqT5w==", + "bin": { + "postcss-logical": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-media-minmax/download/postcss-media-minmax-5.0.0.tgz?cache=0&sync_timestamp=1610466339723&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-media-minmax%2Fdownload%2Fpostcss-media-minmax-5.0.0.tgz", + "integrity": "sha1-cUC93sFz4tbWV+29hVSlV5TipbU=", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.0.4", + "resolved": "https://registry.npmmirror.com/postcss-merge-longhand/download/postcss-merge-longhand-5.0.4.tgz?cache=0&sync_timestamp=1637084921462&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-merge-longhand%2Fdownload%2Fpostcss-merge-longhand-5.0.4.tgz", + "integrity": "sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==", + "dependencies": { + "postcss-value-parser": "^4.1.0", + "stylehacks": "^5.0.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.0.3", + "resolved": "https://registry.npmmirror.com/postcss-merge-rules/download/postcss-merge-rules-5.0.3.tgz?cache=0&sync_timestamp=1637085409669&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-merge-rules%2Fdownload%2Fpostcss-merge-rules-5.0.3.tgz", + "integrity": "sha512-cEKTMEbWazVa5NXd8deLdCnXl+6cYG7m2am+1HzqH0EnTdy8fRysatkaXb2dEnR+fdaDxTvuZ5zoBdv6efF6hg==", + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^2.0.1", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-minify-font-values/download/postcss-minify-font-values-5.0.1.tgz", + "integrity": "sha1-qQzvv9qgdb09uqGzNYi7TcJord8=", + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.0.3", + "resolved": "https://registry.npmmirror.com/postcss-minify-gradients/download/postcss-minify-gradients-5.0.3.tgz?cache=0&sync_timestamp=1635856917388&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-minify-gradients%2Fdownload%2Fpostcss-minify-gradients-5.0.3.tgz", + "integrity": "sha1-+XChHMceCOkJXnjsOms0uRwZVQ4=", + "license": "MIT", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-minify-params/download/postcss-minify-params-5.0.2.tgz?cache=0&sync_timestamp=1637084921655&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-minify-params%2Fdownload%2Fpostcss-minify-params-5.0.2.tgz", + "integrity": "sha512-qJAPuBzxO1yhLad7h2Dzk/F7n1vPyfHfCCh5grjGfjhi1ttCnq4ZXGIW77GSrEbh9Hus9Lc/e/+tB4vh3/GpDg==", + "dependencies": { + "alphanum-sort": "^1.0.2", + "browserslist": "^4.16.6", + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/postcss-minify-selectors/download/postcss-minify-selectors-5.1.0.tgz", + "integrity": "sha1-Q4XIRdOXn/FgKRd0Uj/6VOr9WlQ=", + "dependencies": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-modules-extract-imports/download/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha1-zaHwR8CugMl9vijD52pDuIAldB0=", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha1-67tU+uFZjuz99pGgKz/zs5ClpRw=", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-modules-scope/download/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha1-nvMVFFbTu/oSDKRImN/Kby+gHwY=", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-4.0.0.tgz", + "integrity": "sha1-18Xn5ow7s8myfL9Iyguz/7RgLJw=", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "5.0.6", + "resolved": "https://registry.nlark.com/postcss-nested/download/postcss-nested-5.0.6.tgz", + "integrity": "sha1-RmND9/yNPUavPn26P81H0FKpRbw=", + "dependencies": { + "postcss-selector-parser": "^6.0.6" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nesting": { + "version": "10.1.0", + "resolved": "https://registry.npmmirror.com/postcss-nesting/download/postcss-nesting-10.1.0.tgz", + "integrity": "sha512-HQ8kc/kLid2YjTOjlUC2Lk9JCGTJ/WDqRtEbJWWTQNs0KObgp3a1DFQhS19toVK8d/2q2YmVasjdQaWqZhotPg==", + "dependencies": { + "postcss-selector-parser": "^6.0.7" + }, + "bin": { + "postcss-nesting": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize/download/postcss-normalize-10.0.1.tgz", + "integrity": "sha1-RkaSZ2tSeSoGsGiAoXYnkhZUDdc=", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-charset/download/postcss-normalize-charset-5.0.1.tgz", + "integrity": "sha1-EhVZ0b68VayNJK839nvU2p79kdA=", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-display-values/download/postcss-normalize-display-values-5.0.1.tgz", + "integrity": "sha1-YmULllmBqVXf/ugzY0U9uC9q0f0=", + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-positions/download/postcss-normalize-positions-5.0.1.tgz", + "integrity": "sha1-ho9q8Xlf36hvu+lg3OtH5flJL+U=", + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-repeat-style/download/postcss-normalize-repeat-style-5.0.1.tgz", + "integrity": "sha1-y8DeE4O1f1u2Hd1qhGU7XoZlsrU=", + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-string/download/postcss-normalize-string-5.0.1.tgz", + "integrity": "sha1-2er6pN94x6O5c640bvDkfFVJhbA=", + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-timing-functions/download/postcss-normalize-timing-functions-5.0.1.tgz", + "integrity": "sha1-juQRA7kTBCnGy7pzaTK3XF4ssIw=", + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-unicode/download/postcss-normalize-unicode-5.0.1.tgz", + "integrity": "sha1-gtZy1kikEYFKpb865WU3nM2fXjc=", + "dependencies": { + "browserslist": "^4.16.0", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.0.4", + "resolved": "https://registry.npmmirror.com/postcss-normalize-url/download/postcss-normalize-url-5.0.4.tgz", + "integrity": "sha512-cNj3RzK2pgQQyNp7dzq0dqpUpQ/wYtdDZM3DepPmFjCmYIfceuD9VIAcOdvrNetjIU65g1B4uwdP/Krf6AFdXg==", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-whitespace/download/postcss-normalize-whitespace-5.0.1.tgz", + "integrity": "sha1-sLQLW8rINYX/B+rS2vLc++7vjpo=", + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.0.2", + "resolved": "https://registry.nlark.com/postcss-ordered-values/download/postcss-ordered-values-5.0.2.tgz", + "integrity": "sha1-HzUUJpd74A4PdlsxZK11PayO0EQ=", + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/postcss-overflow-shorthand/download/postcss-overflow-shorthand-3.0.1.tgz", + "integrity": "sha512-/ajDNoTF+LiuhIZjenjb/ndBoKP/WYy/dTT8BCCtLU1wrezkax+lXw5r3c5qR4cadNNMbksAnhWJXNjd9xNTHA==", + "bin": { + "postcss-overflow-shorthand": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/postcss-page-break/download/postcss-page-break-3.0.4.tgz", + "integrity": "sha1-f790HCM2IWIraNQ1ur+3DdjB7l8=", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "7.0.2", + "resolved": "https://registry.npmmirror.com/postcss-place/download/postcss-place-7.0.2.tgz", + "integrity": "sha512-XsZCU8X8M9dHKGlxdycihxPajSkRd4u+cIUJz/FgC61Mr/swStI3xAvsYai9Fh22kU+VVAn7ihoZk8h9pQhDfA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "postcss-place": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-preset-env": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/postcss-preset-env/download/postcss-preset-env-7.1.0.tgz", + "integrity": "sha512-YZI44uxVJQQu18TeHEoDtdLsjKLQpCpzt/4FAzadIcnNYwvKSQqvxaHE6uWobEWQrcfU42zIddMPUKgYQxZs8g==", + "dependencies": { + "autoprefixer": "^10.4.0", + "browserslist": "^4.19.1", + "caniuse-lite": "^1.0.30001291", + "css-blank-pseudo": "^3.0.0", + "css-has-pseudo": "^3.0.0", + "css-prefers-color-scheme": "^6.0.0", + "cssdb": "^5.0.0", + "postcss-attribute-case-insensitive": "^5.0.0", + "postcss-color-functional-notation": "^4.1.0", + "postcss-color-hex-alpha": "^8.0.1", + "postcss-color-rebeccapurple": "^7.0.1", + "postcss-custom-media": "^8.0.0", + "postcss-custom-properties": "^12.0.1", + "postcss-custom-selectors": "^6.0.0", + "postcss-dir-pseudo-class": "^6.0.1", + "postcss-double-position-gradients": "^3.0.3", + "postcss-env-function": "^4.0.3", + "postcss-focus-visible": "^6.0.2", + "postcss-focus-within": "^5.0.2", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.1", + "postcss-image-set-function": "^4.0.3", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.0.2", + "postcss-logical": "^5.0.1", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.0.3", + "postcss-overflow-shorthand": "^3.0.1", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.2", + "postcss-pseudo-class-any-link": "^7.0.1", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^5.0.0" + }, + "bin": { + "postcss-preset-env": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/postcss-pseudo-class-any-link/download/postcss-pseudo-class-any-link-7.0.1.tgz", + "integrity": "sha512-Zt+VMw9qX7Um/cYOaywOQvXipDw/U3U83L6MFHocbjVIhLd+x5G4SSDmKm8sW2/HlaTno2Cazub8USrDvJ4DLA==", + "dependencies": { + "postcss-selector-parser": "^6.0.7" + }, + "bin": { + "postcss-pseudo-class-any-link": "dist/cli.mjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-reduce-initial/download/postcss-reduce-initial-5.0.2.tgz", + "integrity": "sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw==", + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-reduce-transforms/download/postcss-reduce-transforms-5.0.1.tgz", + "integrity": "sha1-k8EvahWUdKpxHVJpkj4jg87c9kA=", + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/postcss-replace-overflow-wrap/download/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha1-0t9r7RC0d7+cUvqyjFaLSynKQxk=", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/postcss-selector-not/download/postcss-selector-not-5.0.0.tgz", + "integrity": "sha1-rF/FBvdWXdhy+C9TFMD4GgVjDcc=", + "dependencies": { + "balanced-match": "^1.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.8", + "resolved": "https://registry.npmmirror.com/postcss-selector-parser/download/postcss-selector-parser-6.0.8.tgz", + "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.0.3", + "resolved": "https://registry.npmmirror.com/postcss-svgo/download/postcss-svgo-5.0.3.tgz", + "integrity": "sha1-2UUYV1bl36rgf57bDTyuf/efmzA=", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.1.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/commander/download/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/css-tree/download/css-tree-1.1.3.tgz", + "integrity": "sha1-60hw+2/XcHMn7JXC/yqwm16NuR0=", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmmirror.com/mdn-data/download/mdn-data-2.0.14.tgz", + "integrity": "sha1-cRP8QoGRfWPOKbQ0RvcB5owlulA=" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmmirror.com/svgo/download/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-unique-selectors/download/postcss-unique-selectors-5.0.2.tgz?cache=0&sync_timestamp=1637084921567&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-unique-selectors%2Fdownload%2Fpostcss-unique-selectors-5.0.2.tgz", + "integrity": "sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==", + "dependencies": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/postcss-value-parser/download/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/potpack": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/potpack/download/potpack-1.0.2.tgz?cache=0&sync_timestamp=1635501196917&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpotpack%2Fdownload%2Fpotpack-1.0.2.tgz", + "integrity": "sha1-I7meZOt09XQf/nZWtbXE3c6N/BQ=", + "license": "ISC" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/prelude-ls/download/prelude-ls-1.2.1.tgz", + "integrity": "sha1-3rxkidem5rDnYRiIzsiAM30xY5Y=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/prepend-http/download/prepend-http-2.0.0.tgz?cache=0&sync_timestamp=1628547565904&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprepend-http%2Fdownload%2Fprepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.nlark.com/pretty-bytes/download/pretty-bytes-5.6.0.tgz", + "integrity": "sha1-NWJW9kOAR3PIL2RyP+eMksYr6us=", + "engines": { + "node": ">=6" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/pretty-error/download/pretty-error-4.0.0.tgz", + "integrity": "sha1-kKcD9G3XI0rbRtD4SCPp0cuPENY=", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/pretty-format": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/pretty-format/download/pretty-format-27.4.2.tgz", + "integrity": "sha512-p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw==", + "dependencies": { + "@jest/types": "^27.4.2", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-5.2.0.tgz", + "integrity": "sha1-B0SWkK1Fd30ZJKwquy/IiV26g2s=", + "engines": { + "node": ">=10" + } + }, + "node_modules/probe.gl": { + "version": "3.5.0", + "resolved": "https://registry.npmmirror.com/probe.gl/download/probe.gl-3.5.0.tgz", + "integrity": "sha512-KWj8u0PNytr/rVwcQFcN7O8SK7n/ITOsUZ91l4fSX95oHhKvVCI7eadrzFUzFRlXkFfBWpMWZXFHITsHHHUctw==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@probe.gl/env": "3.5.0", + "@probe.gl/log": "3.5.0", + "@probe.gl/stats": "3.5.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/process-nextick-args/download/process-nextick-args-2.0.1.tgz", + "integrity": "sha1-eCDZsWEgzFXKmud5JoCufbptf+I=" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/progress/download/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "8.1.0", + "resolved": "https://registry.nlark.com/promise/download/promise-8.1.0.tgz", + "integrity": "sha1-aXwlw9/nQ13Xn81Yw4oTWIjq8F4=", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/prompts/download/prompts-2.4.2.tgz?cache=0&sync_timestamp=1633642460453&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fprompts%2Fdownload%2Fprompts-2.4.2.tgz", + "integrity": "sha1-e1fnOzpIAprRDr1E90sBcipMsGk=", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.0", + "resolved": "https://registry.npmmirror.com/prop-types/download/prop-types-15.8.0.tgz", + "integrity": "sha512-fDGekdaHh65eI3lMi5OnErU6a8Ighg2KjcjQxO7m8VHyWjcPyj5kiOgV1LQDOOOgVy3+5FgjXvdSSX7B8/5/4g==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz", + "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=" + }, + "node_modules/protocol-buffers-schema": { + "version": "3.6.0", + "resolved": "https://registry.nlark.com/protocol-buffers-schema/download/protocol-buffers-schema-3.6.0.tgz", + "integrity": "sha1-d7x1pIsv8ULBrVtbkMlM0Pou/QM=" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.nlark.com/proxy-addr/download/proxy-addr-2.0.7.tgz", + "integrity": "sha1-8Z/mnOqzEe65S0LnDowgcPm6ECU=", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz", + "integrity": "sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/prr/download/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "optional": true + }, + "node_modules/psl": { + "version": "1.8.0", + "resolved": "https://registry.nlark.com/psl/download/psl-1.8.0.tgz", + "integrity": "sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ=" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pump/download/pump-3.0.0.tgz", + "integrity": "sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/punycode/download/punycode-2.1.1.tgz", + "integrity": "sha1-tYsBCsQMIsVldhbI0sLALHv0eew=", + "engines": { + "node": ">=6" + } + }, + "node_modules/pupa": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/pupa/download/pupa-2.1.1.tgz", + "integrity": "sha1-9ej9SvwsXZeCj6pSNUnth0SiDWI=", + "dev": true, + "dependencies": { + "escape-goat": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/q/download/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.9.6", + "resolved": "https://registry.npmmirror.com/qs/download/qs-6.9.6.tgz", + "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/queue-microtask/download/queue-microtask-1.2.3.tgz", + "integrity": "sha1-SSkii7xyTfrEPg77BYyve2z7YkM=" + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/quick-lru/download/quick-lru-5.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fquick-lru%2Fdownload%2Fquick-lru-5.1.1.tgz", + "integrity": "sha1-NmST5rPkKjpoheLpnRj4D7eoyTI=", + "engines": { + "node": ">=10" + } + }, + "node_modules/quickselect": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/quickselect/download/quickselect-2.0.0.tgz", + "integrity": "sha1-8ZaApIal7vtYEwPgI+mPqvJd0Bg=" + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.nlark.com/raf/download/raf-3.4.1.tgz", + "integrity": "sha1-B0LpmkplUvRF1z4+4DKK8P8e3jk=", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "integrity": "sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo=", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz", + "integrity": "sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/raw-body/download/raw-body-2.4.2.tgz?cache=0&sync_timestamp=1637116849434&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fraw-body%2Fdownload%2Fraw-body-2.4.2.tgz", + "integrity": "sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ==", + "dependencies": { + "bytes": "3.1.1", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/bytes/download/bytes-3.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbytes%2Fdownload%2Fbytes-3.1.1.tgz", + "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.nlark.com/rc/download/rc-1.2.8.tgz?cache=0&sync_timestamp=1628478870081&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frc%2Fdownload%2Frc-1.2.8.tgz", + "integrity": "sha1-zZJL9SAKB1uDwYjNa54hG3/A0+0=", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc-align": { + "version": "4.0.11", + "resolved": "https://registry.nlark.com/rc-align/download/rc-align-4.0.11.tgz", + "integrity": "sha1-gZjGLbJmvBuO8F5WwTJ1v3Jiil4=", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "dom-align": "^1.7.0", + "lodash": "^4.17.21", + "rc-util": "^5.3.0", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-cascader": { + "version": "3.0.0-alpha.7", + "resolved": "https://registry.npmmirror.com/rc-cascader/download/rc-cascader-3.0.0-alpha.7.tgz", + "integrity": "sha512-hHhPJW9ll41vMd36gmZWYem9749KI9cW51tPQWCp/AS98wgdz/m71y0eXzHIsiVrsIq54sAvccmHK/ZwrRi13Q==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "classnames": "^2.3.1", + "rc-select": "~14.0.0-alpha.8", + "rc-tree": "~5.3.4", + "rc-util": "^5.6.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-checkbox": { + "version": "2.3.2", + "resolved": "https://registry.npm.taobao.org/rc-checkbox/download/rc-checkbox-2.3.2.tgz", + "integrity": "sha1-+Rs2eMftsrqoEhyUg8Zk+m8K78E=", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-collapse": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/rc-collapse/download/rc-collapse-3.1.2.tgz?cache=0&sync_timestamp=1630552186473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frc-collapse%2Fdownload%2Frc-collapse-3.1.2.tgz", + "integrity": "sha1-dgKKgRuEXQPZRgzMQJx+qK0J2xQ=", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.3.4", + "rc-util": "^5.2.1", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-dialog": { + "version": "8.6.0", + "resolved": "https://registry.nlark.com/rc-dialog/download/rc-dialog-8.6.0.tgz", + "integrity": "sha1-OyKNrAhd5e7YxiN/MRYhBGh0Quc=", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-motion": "^2.3.0", + "rc-util": "^5.6.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-drawer": { + "version": "4.4.3", + "resolved": "https://registry.npmmirror.com/rc-drawer/download/rc-drawer-4.4.3.tgz?cache=0&sync_timestamp=1637134392366&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frc-drawer%2Fdownload%2Frc-drawer-4.4.3.tgz", + "integrity": "sha512-FYztwRs3uXnFOIf1hLvFxIQP9MiZJA+0w+Os8dfDh/90X7z/HqP/Yg+noLCIeHEbKln1Tqelv8ymCAN24zPcfQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.7.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-dropdown": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/rc-dropdown/download/rc-dropdown-3.2.2.tgz", + "integrity": "sha512-oA9VYYg+jQaPRdFoYFfBn5EAQk2NlL6H0vR2v6JG/8i4HEfUq8p1TTt6HyQ/dGxLe8lpnK+nM7WCjgZT/cpSRQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-trigger": "^5.0.4" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-field-form": { + "version": "1.22.1", + "resolved": "https://registry.npmmirror.com/rc-field-form/download/rc-field-form-1.22.1.tgz", + "integrity": "sha512-LweU7nBeqmC5r3HDUjRprcOXXobHXp/TGIxD7ppBq5FX6Iptt3ibdpRVg4RSyNulBNGHOuknHlRcguuIpvVMVg==", + "dependencies": { + "@babel/runtime": "^7.8.4", + "async-validator": "^4.0.2", + "rc-util": "^5.8.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">= 16.9.0", + "react-dom": ">= 16.9.0" + } + }, + "node_modules/rc-image": { + "version": "5.2.5", + "resolved": "https://registry.nlark.com/rc-image/download/rc-image-5.2.5.tgz?cache=0&sync_timestamp=1627892899241&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frc-image%2Fdownload%2Frc-image-5.2.5.tgz", + "integrity": "sha1-ROb/yEJiaCeWDnq3LhwNbzqM5EA=", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-dialog": "~8.6.0", + "rc-util": "^5.0.6" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-input-number": { + "version": "7.3.4", + "resolved": "https://registry.npmmirror.com/rc-input-number/download/rc-input-number-7.3.4.tgz", + "integrity": "sha512-W9uqSzuvJUnz8H8vsVY4kx+yK51SsAxNTwr8SNH4G3XqQNocLVmKIibKFRjocnYX1RDHMND9FFbgj2h7E7nvGA==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.9.8" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-mentions": { + "version": "1.6.1", + "resolved": "https://registry.nlark.com/rc-mentions/download/rc-mentions-1.6.1.tgz", + "integrity": "sha1-RgNQJ9ZKoz74QLoPvUEYceNGF64=", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-menu": "^9.0.0", + "rc-textarea": "^0.3.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-menu": { + "version": "9.2.1", + "resolved": "https://registry.npmmirror.com/rc-menu/download/rc-menu-9.2.1.tgz", + "integrity": "sha512-UbEtn3rflJ8zS+etYGTVQuzy7Fm+yWXR5c0Rl6ecNTS/dPknRyWAyhJcbeR0Hu1+RdQT+0VCqrUPrgKnm4iY+w==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.4.3", + "rc-overflow": "^1.2.0", + "rc-trigger": "^5.1.2", + "rc-util": "^5.12.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-motion": { + "version": "2.4.4", + "resolved": "https://registry.nlark.com/rc-motion/download/rc-motion-2.4.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frc-motion%2Fdownload%2Frc-motion-2.4.4.tgz", + "integrity": "sha1-6ZXV+iT8kwZcJPcUhXzyZ31lW7A=", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-notification": { + "version": "4.5.7", + "resolved": "https://registry.nlark.com/rc-notification/download/rc-notification-4.5.7.tgz", + "integrity": "sha1-Jl5uagwaD6xj1qvU2DLrj/MVIvE=", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.2.0", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-overflow": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/rc-overflow/download/rc-overflow-1.2.2.tgz", + "integrity": "sha1-lbAiIBbAzb3A24X1acJi53BqXyI=", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-pagination": { + "version": "3.1.15", + "resolved": "https://registry.npmmirror.com/rc-pagination/download/rc-pagination-3.1.15.tgz", + "integrity": "sha512-4L3fot8g4E+PjWEgoVGX0noFCg+8ZFZmeLH4vsnZpB3O2T2zThtakjNxG+YvSaYtyMVT4B+GLayjKrKbXQpdAg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-picker": { + "version": "2.5.19", + "resolved": "https://registry.npmmirror.com/rc-picker/download/rc-picker-2.5.19.tgz", + "integrity": "sha1-c9B1RvrDmS8L+r8niWVKyto55G8=", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "date-fns": "2.x", + "dayjs": "1.x", + "moment": "^2.24.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.4.0", + "shallowequal": "^1.1.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-progress": { + "version": "3.2.4", + "resolved": "https://registry.npmmirror.com/rc-progress/download/rc-progress-3.2.4.tgz", + "integrity": "sha512-M9WWutRaoVkPUPIrTpRIDpX0SPSrVHzxHdCRCbeoBFrd9UFWTYNWRlHsruJM5FH1AZI+BwB4wOJUNNylg/uFSw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.16.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-rate": { + "version": "2.9.1", + "resolved": "https://registry.nlark.com/rc-rate/download/rc-rate-2.9.1.tgz", + "integrity": "sha1-5Dy5XE65CiweCxbsZhTYxDUwpzE=", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-resize-observer": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/rc-resize-observer/download/rc-resize-observer-1.2.0.tgz", + "integrity": "sha512-6W+UzT3PyDM0wVCEHfoW3qTHPTvbdSgiA43buiy8PzmeMnfgnDeb9NjdimMXMl3/TcrvvWl5RRVdp+NqcR47pQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.15.0", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-select": { + "version": "14.0.0-alpha.22", + "resolved": "https://registry.npmmirror.com/rc-select/download/rc-select-14.0.0-alpha.22.tgz", + "integrity": "sha512-ScNdwUPMgXQbHlk5EisZchrs+HiqdBLzSh/hcjJh2dOA56DhawcZOGn8URS0rJSW4V3IbE26SVYBH60jV56SwQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-overflow": "^1.0.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.16.1", + "rc-virtual-list": "^3.2.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-slider": { + "version": "9.7.5", + "resolved": "https://registry.npmmirror.com/rc-slider/download/rc-slider-9.7.5.tgz", + "integrity": "sha512-LV/MWcXFjco1epPbdw1JlLXlTgmWpB9/Y/P2yinf8Pg3wElHxA9uajN21lJiWtZjf5SCUekfSP6QMJfDo4t1hg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-tooltip": "^5.0.1", + "rc-util": "^5.16.1", + "shallowequal": "^1.1.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-steps": { + "version": "4.1.4", + "resolved": "https://registry.npmmirror.com/rc-steps/download/rc-steps-4.1.4.tgz?cache=0&sync_timestamp=1632734183540&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frc-steps%2Fdownload%2Frc-steps-4.1.4.tgz", + "integrity": "sha1-C6gtsgLVnKUtBpPcmIDdFFsZ3CM=", + "dependencies": { + "@babel/runtime": "^7.10.2", + "classnames": "^2.2.3", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-switch": { + "version": "3.2.2", + "resolved": "https://registry.npm.taobao.org/rc-switch/download/rc-switch-3.2.2.tgz", + "integrity": "sha1-0AH3fxJmTVJZW09vtCXdnmb7qOg=", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-table": { + "version": "7.22.2", + "resolved": "https://registry.npmmirror.com/rc-table/download/rc-table-7.22.2.tgz", + "integrity": "sha512-Ng2gNkGi6ybl6dzneRn2H4Gp8XhIbRa5rXQ7ZhZcgWVmfVMok70UHGPXcf68tXW6O0/qckTf/eOVsoviSvK4sw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-resize-observer": "^1.1.0", + "rc-util": "^5.14.0", + "shallowequal": "^1.1.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tabs": { + "version": "11.10.5", + "resolved": "https://registry.npmmirror.com/rc-tabs/download/rc-tabs-11.10.5.tgz", + "integrity": "sha512-DDuUdV6b9zGRYLtjI5hyejWLKoz1QiLWNgMeBzc3aMeQylZFhTYnFGdDc6HRqj5IYearNTsFPVSA+6VIT8g5cg==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "2.x", + "rc-dropdown": "^3.2.0", + "rc-menu": "^9.0.0", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-textarea": { + "version": "0.3.7", + "resolved": "https://registry.npmmirror.com/rc-textarea/download/rc-textarea-0.3.7.tgz", + "integrity": "sha512-yCdZ6binKmAQB13hc/oehh0E/QRwoPP1pjF21aHBxlgXO3RzPF6dUu4LG2R4FZ1zx/fQd2L1faktulrXOM/2rw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.7.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tooltip": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/rc-tooltip/download/rc-tooltip-5.1.1.tgz", + "integrity": "sha1-lBeO0WLQJSvEmTtyX13CrA/M8VQ=", + "dependencies": { + "@babel/runtime": "^7.11.2", + "rc-trigger": "^5.0.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tree": { + "version": "5.3.8", + "resolved": "https://registry.npmmirror.com/rc-tree/download/rc-tree-5.3.8.tgz", + "integrity": "sha512-YuobEryPymqPmHFUOvsoOrYdm24psaj0CrGEUuDUQUeG/nNcTGw6FA2YmF4NsEaNBvNSJUSzwfZnFHrKa/xv0A==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-util": "^5.16.1", + "rc-virtual-list": "^3.4.1" + }, + "engines": { + "node": ">=10.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-tree-select": { + "version": "5.0.0-alpha.4", + "resolved": "https://registry.npmmirror.com/rc-tree-select/download/rc-tree-select-5.0.0-alpha.4.tgz", + "integrity": "sha512-jKM8XoN3W/7cQmOP+Ypqcu2b2aa7GS8ZIzbAvdLzHt0h0/pTTuyzsNDpejgrX0+S0D0VkpYaZ1dxJQQ7Tinc1Q==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-select": "~14.0.0-alpha.8", + "rc-tree": "~5.3.3", + "rc-util": "^5.16.1" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-trigger": { + "version": "5.2.10", + "resolved": "https://registry.nlark.com/rc-trigger/download/rc-trigger-5.2.10.tgz", + "integrity": "sha1-igBXqUCxuQJ+qjO+7IpuzYXM4rE=", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-align": "^4.0.0", + "rc-motion": "^2.0.0", + "rc-util": "^5.5.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tween-one": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/rc-tween-one/download/rc-tween-one-3.0.3.tgz", + "integrity": "sha512-sU4Ci6sgN9Rglsctdk2C3G7r0bWcOv/4l3xBWfrBoTTV8c3Qsoch8a7oBR7ZRovW2PyzdPnCmM08byEYwHbPDQ==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "style-utils": "^0.3.4", + "tween-one": "^1.0.50" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-upload": { + "version": "4.3.3", + "resolved": "https://registry.npmmirror.com/rc-upload/download/rc-upload-4.3.3.tgz", + "integrity": "sha512-YoJ0phCRenMj1nzwalXzciKZ9/FAaCrFu84dS5pphwucTC8GUWClcDID/WWNGsLFcM97NqIboDqrV82rVRhW/w==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.2.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-util": { + "version": "5.16.1", + "resolved": "https://registry.npmmirror.com/rc-util/download/rc-util-5.16.1.tgz", + "integrity": "sha512-kSCyytvdb3aRxQacS/71ta6c+kBWvM1v8/2h9d/HaNWauc3qB8pLnF20PJ8NajkNN8gb+rR1l0eWO+D4Pz+LLQ==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "react-is": "^16.12.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-util/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz", + "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=" + }, + "node_modules/rc-virtual-list": { + "version": "3.4.2", + "resolved": "https://registry.npmmirror.com/rc-virtual-list/download/rc-virtual-list-3.4.2.tgz?cache=0&sync_timestamp=1634880957545&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frc-virtual-list%2Fdownload%2Frc-virtual-list-3.4.2.tgz", + "integrity": "sha1-EHgyeqcjC15FbWee0s6Z88A269E=", + "license": "MIT", + "dependencies": { + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.0.7" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-2.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-json-comments%2Fdownload%2Fstrip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "17.0.2", + "resolved": "https://registry.npmmirror.com/react/download/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/react-app-polyfill/download/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-color": { + "version": "2.17.3", + "resolved": "https://registry.npmmirror.com/react-color/download/react-color-2.17.3.tgz", + "integrity": "sha1-uFVtdE+VGTRoxwYdKqGRgBGNSkg=", + "dependencies": { + "@icons/material": "^0.2.4", + "lodash": "^4.17.11", + "material-colors": "^1.2.1", + "prop-types": "^15.5.10", + "reactcss": "^1.2.0", + "tinycolor2": "^1.4.1" + } + }, + "node_modules/react-content-loader": { + "version": "5.1.4", + "resolved": "https://registry.npmmirror.com/react-content-loader/download/react-content-loader-5.1.4.tgz", + "integrity": "sha1-hUuv5EFd2d4HF0YhN1vDCO3Q67U=", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": ">=16.0.0" + } + }, + "node_modules/react-dev-utils": { + "version": "12.0.0", + "resolved": "https://registry.npmmirror.com/react-dev-utils/download/react-dev-utils-12.0.0.tgz", + "integrity": "sha512-xBQkitdxozPxt1YZ9O1097EJiVpwHr9FoAuEVURCKV0Av8NBERovJauzP7bo1ThvuhZ4shsQ1AJiu4vQpoT1AQ==", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.10", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz", + "integrity": "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=", + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/loader-utils/download/loader-utils-3.2.0.tgz", + "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmmirror.com/react-dom/download/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + }, + "peerDependencies": { + "react": "17.0.2" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.10", + "resolved": "https://registry.npmmirror.com/react-error-overlay/download/react-error-overlay-6.0.10.tgz", + "integrity": "sha512-mKR90fX7Pm5seCOfz8q9F+66VCc1PGsWSBxKbITjfKVQHMNF2zudxHnMdJiB1fRCb+XsbQV9sO9DCkgsMQgBIA==" + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-17.0.2.tgz", + "integrity": "sha1-5pHUqOnHiTZWVVOas3J2Kw77VPA=" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/react-lifecycles-compat/download/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha1-TxonOv38jzSIqMUWv9p4+HI1I2I=" + }, + "node_modules/react-query": { + "version": "3.34.8", + "resolved": "https://registry.npmmirror.com/react-query/download/react-query-3.34.8.tgz", + "integrity": "sha512-pl9e2VmVbgKf29Qn/WpmFVtB2g17JPqLLyOQg3GfSs/S2WABvip5xlT464vfXtilLPcJVg9bEHHlqmC38/nvDw==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "broadcast-channel": "^3.4.1", + "match-sorter": "^6.0.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/react-redux": { + "version": "7.2.6", + "resolved": "https://registry.npmmirror.com/react-redux/download/react-redux-7.2.6.tgz", + "integrity": "sha512-10RPdsz0UUrRL1NZE0ejTkucnclYSgXp5q+tB5SWx2qeG2ZJQJyymgAhwKy73yiL/13btfB6fPr+rgbMAaZIAQ==", + "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" + }, + "peerDependencies": { + "react": "^16.8.3 || ^17" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmmirror.com/react-refresh/download/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-resize-detector": { + "version": "6.7.8", + "resolved": "https://registry.npmmirror.com/react-resize-detector/download/react-resize-detector-6.7.8.tgz", + "integrity": "sha512-0FaEcUBAbn+pq3PT5a9hHRebUfuS1SRLGLpIw8LydU7zX429I6XJgKerKAMPsJH0qWAl6o5bVKNqFJqr6tGPYw==", + "dependencies": { + "@types/resize-observer-browser": "^0.1.6", + "lodash": "^4.17.21", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0", + "react-dom": "^16.0.0 || ^17.0.0" + } + }, + "node_modules/react-router": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/react-router/download/react-router-6.2.1.tgz", + "integrity": "sha512-2fG0udBtxou9lXtK97eJeET2ki5//UWfQSl1rlJ7quwe6jrktK9FCCc8dQb5QY6jAv3jua8bBQRhhDOM/kVRsg==", + "dependencies": { + "history": "^5.2.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/react-router-dom/download/react-router-dom-6.2.1.tgz", + "integrity": "sha512-I6Zax+/TH/cZMDpj3/4Fl2eaNdcvoxxHoH1tYOREsQ22OKDYofGebrNm6CTPUcvLvZm63NL/vzCYdjf9CUhqmA==", + "dependencies": { + "history": "^5.2.0", + "react-router": "6.2.1" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/react-sortable-hoc": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/react-sortable-hoc/download/react-sortable-hoc-2.0.0.tgz", + "integrity": "sha1-9ngNiqS5IqIfPnVK9ULwMmdweLc=", + "dependencies": { + "@babel/runtime": "^7.2.0", + "invariant": "^2.2.4", + "prop-types": "^15.5.7" + }, + "peerDependencies": { + "prop-types": "^15.5.7", + "react": "^16.3.0 || ^17.0.0", + "react-dom": "^16.3.0 || ^17.0.0" + } + }, + "node_modules/react-universal-interface": { + "version": "0.6.2", + "resolved": "https://registry.npm.taobao.org/react-universal-interface/download/react-universal-interface-0.6.2.tgz", + "integrity": "sha1-Xo1DigFymk27y+7OsLhr4Ub+Kzs=", + "peerDependencies": { + "react": "*", + "tslib": "*" + } + }, + "node_modules/react-use": { + "version": "17.3.1", + "resolved": "https://registry.npmmirror.com/react-use/download/react-use-17.3.1.tgz", + "integrity": "sha1-ErJIVVd1UZqiuQCyLxko0Cm/mdE=", + "dependencies": { + "@types/js-cookie": "^2.2.6", + "@xobotyi/scrollbar-width": "^1.9.5", + "copy-to-clipboard": "^3.3.1", + "fast-deep-equal": "^3.1.3", + "fast-shallow-equal": "^1.0.0", + "js-cookie": "^2.2.1", + "nano-css": "^5.3.1", + "react-universal-interface": "^0.6.2", + "resize-observer-polyfill": "^1.5.1", + "screenfull": "^5.1.0", + "set-harmonic-interval": "^1.0.1", + "throttle-debounce": "^3.0.1", + "ts-easing": "^0.2.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/reactcss": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/reactcss/download/reactcss-1.2.3.tgz", + "integrity": "sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==", + "dependencies": { + "lodash": "^4.0.1" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.nlark.com/readable-stream/download/readable-stream-3.6.0.tgz", + "integrity": "sha1-M3u9o63AcGvT4CRCaihtS0sskZg=", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.nlark.com/readdirp/download/readdirp-3.6.0.tgz", + "integrity": "sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/recursive-readdir/download/recursive-readdir-2.2.2.tgz", + "integrity": "sha1-mUb7MnThYo3m42svZxSVO0hFCU8=", + "dependencies": { + "minimatch": "3.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/redent/download/redent-3.0.0.tgz?cache=0&sync_timestamp=1620071175005&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fredent%2Fdownload%2Fredent-3.0.0.tgz", + "integrity": "sha1-5Ve3mYMWu1PJ8fVvpiY1LGljBZ8=", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/redeyed": { + "version": "0.4.4", + "resolved": "https://registry.npm.taobao.org/redeyed/download/redeyed-0.4.4.tgz", + "integrity": "sha1-N+mQpvKyGyoRwuakj9QTVpjLqX8=", + "dependencies": { + "esprima": "~1.0.4" + } + }, + "node_modules/redeyed/node_modules/esprima": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/esprima/download/esprima-1.0.4.tgz", + "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/redux": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/redux/download/redux-4.1.2.tgz", + "integrity": "sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw==", + "dependencies": { + "@babel/runtime": "^7.9.2" + } + }, + "node_modules/redux-thunk": { + "version": "2.4.1", + "resolved": "https://registry.npmmirror.com/redux-thunk/download/redux-thunk-2.4.1.tgz", + "integrity": "sha512-OOYGNY5Jy2TWvTL1KgAlVy6dcx3siPJ1wTq741EPyUKfn6W6nChdICjZwCd0p8AZBs5kWpZlbkXW2nE/zjUa+Q==", + "peerDependencies": { + "redux": "^4" + } + }, + "node_modules/reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npm.taobao.org/reflect-metadata/download/reflect-metadata-0.1.13.tgz", + "integrity": "sha1-Z648pXyXKiqhZCsQ/jY/4y1J3Ag=" + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz", + "integrity": "sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=" + }, + "node_modules/regenerate-unicode-properties": { + "version": "9.0.0", + "resolved": "https://registry.npmmirror.com/regenerate-unicode-properties/download/regenerate-unicode-properties-9.0.0.tgz", + "integrity": "sha1-VNCccRXh9T3CMUqXSzLBw0Tv4yY=", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.9.tgz", + "integrity": "sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I=" + }, + "node_modules/regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.nlark.com/regenerator-transform/download/regenerator-transform-0.14.5.tgz?cache=0&sync_timestamp=1627057533376&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregenerator-transform%2Fdownload%2Fregenerator-transform-0.14.5.tgz", + "integrity": "sha1-yY2hVGg2ccnE3LFuznNlF+G3/rQ=", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.nlark.com/regex-parser/download/regex-parser-2.2.11.tgz", + "integrity": "sha1-OzfskEnhlHmAboeMq+fByoPM/lg=" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npm.taobao.org/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz?cache=0&sync_timestamp=1610725711521&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregexp.prototype.flags%2Fdownload%2Fregexp.prototype.flags-1.3.1.tgz", + "integrity": "sha1-fvNSro0VnnWMDq3Kb4/LTu8HviY=", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/regexpp/download/regexpp-3.2.0.tgz?cache=0&sync_timestamp=1623668905417&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregexpp%2Fdownload%2Fregexpp-3.2.0.tgz", + "integrity": "sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=", + "engines": { + "node": ">=8" + } + }, + "node_modules/regexpu-core": { + "version": "4.8.0", + "resolved": "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.8.0.tgz?cache=0&sync_timestamp=1631619113277&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregexpu-core%2Fdownload%2Fregexpu-core-4.8.0.tgz", + "integrity": "sha1-5WBbo2G2excYR4UBMnUC9EeamPA=", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/registry-auth-token": { + "version": "4.2.1", + "resolved": "https://registry.npm.taobao.org/registry-auth-token/download/registry-auth-token-4.2.1.tgz?cache=0&sync_timestamp=1605012436264&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregistry-auth-token%2Fdownload%2Fregistry-auth-token-4.2.1.tgz", + "integrity": "sha1-bXtABkQZGJcszV/tzUHcMix5slA=", + "dev": true, + "dependencies": { + "rc": "^1.2.8" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npm.taobao.org/registry-url/download/registry-url-5.1.0.tgz?cache=0&sync_timestamp=1618681920538&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregistry-url%2Fdownload%2Fregistry-url-5.1.0.tgz", + "integrity": "sha1-6YM0tQ1UNLgRNrROxjjZwgCcUAk=", + "dev": true, + "dependencies": { + "rc": "^1.2.8" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/regjsgen/download/regjsgen-0.5.2.tgz", + "integrity": "sha1-kv8pX7He7L9uzaslQ9IH6RqjNzM=" + }, + "node_modules/regjsparser": { + "version": "0.7.0", + "resolved": "https://registry.npmmirror.com/regjsparser/download/regjsparser-0.7.0.tgz", + "integrity": "sha1-prZntUyIXhi1JVTLSWDvcRh+mWg=", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/regl": { + "version": "1.7.0", + "resolved": "https://registry.npm.taobao.org/regl/download/regl-1.7.0.tgz", + "integrity": "sha1-DRhUMQRKNWv4Dpt3WxG5Ne8nRtM=" + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npm.taobao.org/relateurl/download/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-accents": { + "version": "0.4.2", + "resolved": "https://registry.nlark.com/remove-accents/download/remove-accents-0.4.2.tgz", + "integrity": "sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U=" + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/renderkid/download/renderkid-3.0.0.tgz", + "integrity": "sha1-X9gj5NaVHTc1jsyaWLHwaDa2Joo=", + "license": "MIT", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npm.taobao.org/repeat-string/download/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/require-from-string/download/require-from-string-2.0.2.tgz", + "integrity": "sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/requires-port/download/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "node_modules/reselect": { + "version": "4.1.5", + "resolved": "https://registry.npmmirror.com/reselect/download/reselect-4.1.5.tgz", + "integrity": "sha512-uVdlz8J7OO+ASpBYoz1Zypgx0KasCY20H+N8JD13oUMtPvSHQuscrHop4KbXrbsBcdB9Ds7lVK7eRkBIfO43vQ==" + }, + "node_modules/resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz?cache=0&sync_timestamp=1618847256390&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresize-observer-polyfill%2Fdownload%2Fresize-observer-polyfill-1.5.1.tgz", + "integrity": "sha1-DpAg3T0hAkRY1OvSfiPkAmmBBGQ=" + }, + "node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npm.taobao.org/resolve/download/resolve-1.20.0.tgz?cache=0&sync_timestamp=1613054862388&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.20.0.tgz", + "integrity": "sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/resolve-cwd/download/resolve-cwd-3.0.0.tgz", + "integrity": "sha1-DwB18bslRHZs9zumpuKt/ryxPy0=", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-5.0.0.tgz", + "integrity": "sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-protobuf-schema": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/resolve-protobuf-schema/download/resolve-protobuf-schema-2.1.0.tgz", + "integrity": "sha1-nKmp5pzxkrva8QBuwZc5SKpKN1g=", + "dependencies": { + "protocol-buffers-schema": "^3.3.1" + } + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/resolve-url-loader/download/resolve-url-loader-4.0.0.tgz", + "integrity": "sha1-1Q1N3HRrsQRoRDFnrPgA3NbDrVc=", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmmirror.com/picocolors/download/picocolors-0.2.1.tgz?cache=0&sync_timestamp=1634093339035&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpicocolors%2Fdownload%2Fpicocolors-0.2.1.tgz", + "integrity": "sha1-VwZw95NkaFHRuhNZlpYqutWHhZ8=", + "license": "ISC" + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmmirror.com/postcss/download/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/resolve.exports/download/resolve.exports-1.1.0.tgz", + "integrity": "sha1-XOhCuUsFFGwOAwdphdHQ5+SMkMk=", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/responselike/download/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz?cache=0&sync_timestamp=1629747087185&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frestore-cursor%2Fdownload%2Frestore-cursor-3.1.0.tgz", + "integrity": "sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resumer": { + "version": "0.0.0", + "resolved": "https://registry.nlark.com/resumer/download/resumer-0.0.0.tgz", + "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", + "dependencies": { + "through": "~2.3.4" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.nlark.com/retry/download/retry-0.13.1.tgz", + "integrity": "sha1-GFsVh6z2eRnWOzVzSeA1N7JIRlg=", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/reusify/download/reusify-1.0.4.tgz", + "integrity": "sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/right-align": { + "version": "0.1.3", + "resolved": "https://registry.nlark.com/right-align/download/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "dependencies": { + "align-text": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/rimraf/download/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/rollup": { + "version": "2.62.0", + "resolved": "https://registry.npmmirror.com/rollup/download/rollup-2.62.0.tgz", + "integrity": "sha512-cJEQq2gwB0GWMD3rYImefQTSjrPYaC6s4J9pYqnstVLJ1CHa/aZNVkD4Epuvg4iLeMA4KRiq7UM7awKK6j7jcw==", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.nlark.com/rollup-plugin-terser/download/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha1-6Pu6SGmYGy3DWufopQLVxsBNMk0=", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmmirror.com/jest-worker/download/jest-worker-26.6.2.tgz", + "integrity": "sha1-f3LLxNZDw2Xie5/XdfnQ6qnHqO0=", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "integrity": "sha1-tSXhI4SJpez8Qq+sw/6Z5mb0sao=", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/rtl-css-js": { + "version": "1.15.0", + "resolved": "https://registry.npmmirror.com/rtl-css-js/download/rtl-css-js-1.15.0.tgz", + "integrity": "sha512-99Cu4wNNIhrI10xxUaABHsdDqzalrSRTie4GeCmbGVuehm4oj+fIy8fTzB+16pmKe8Bv9rl+hxIBez6KxExTew==", + "dependencies": { + "@babel/runtime": "^7.1.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/run-parallel/download/run-parallel-1.2.0.tgz?cache=0&sync_timestamp=1612925912322&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frun-parallel%2Fdownload%2Frun-parallel-1.2.0.tgz", + "integrity": "sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmmirror.com/rw/download/rw-1.3.3.tgz", + "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=" + }, + "node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmmirror.com/rxjs/download/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmmirror.com/tslib/download/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/safe-buffer/download/safe-buffer-5.1.2.tgz?cache=0&sync_timestamp=1618847044058&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsafe-buffer%2Fdownload%2Fsafe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz", + "integrity": "sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=" + }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.nlark.com/sanitize.css/download/sanitize.css-13.0.0.tgz", + "integrity": "sha1-JnVVOXSyeWTHVWKt472F15h58XM=" + }, + "node_modules/sass-loader": { + "version": "12.4.0", + "resolved": "https://registry.npmmirror.com/sass-loader/download/sass-loader-12.4.0.tgz", + "integrity": "sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz", + "integrity": "sha1-KBYjTiN4vdxOU1T6tcqold9xANk=" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/saxes/download/saxes-5.0.1.tgz?cache=0&sync_timestamp=1636312060591&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsaxes%2Fdownload%2Fsaxes-5.0.1.tgz", + "integrity": "sha1-7rq5U/o7dgjb6U5drbFciI+maW0=", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/scheduler/download/scheduler-0.20.2.tgz", + "integrity": "sha1-S67jlDbjSqk7SHS93L8P6Li1DpE=", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-3.1.1.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-3.1.1.tgz", + "integrity": "sha1-vHTEtraZXB2I92qLd76nIZ4MgoE=", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/screenfull": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/screenfull/download/screenfull-5.2.0.tgz", + "integrity": "sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/scroll-into-view-if-needed": { + "version": "2.2.28", + "resolved": "https://registry.npmmirror.com/scroll-into-view-if-needed/download/scroll-into-view-if-needed-2.2.28.tgz", + "integrity": "sha1-WhWy9YpSZCyIyOylhGROAXA9ZFo=", + "dependencies": { + "compute-scroll-into-view": "^1.0.17" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/select-hose/download/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "node_modules/selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.nlark.com/selfsigned/download/selfsigned-1.10.11.tgz?cache=0&sync_timestamp=1620160245612&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fselfsigned%2Fdownload%2Fselfsigned-1.10.11.tgz", + "integrity": "sha1-JJKc2Qb+D0S20B+yOZmnOVN6y+k=", + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.nlark.com/semver/download/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/semver-compare/download/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true + }, + "node_modules/semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/semver-diff/download/semver-diff-3.1.1.tgz", + "integrity": "sha1-Bfd85Z8yXgDicGr9Z7tQbdscoys=", + "dev": true, + "dependencies": { + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/semver-diff/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.17.2", + "resolved": "https://registry.npmmirror.com/send/download/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "1.8.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.1.3.tgz", + "integrity": "sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=" + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-6.0.0.tgz", + "integrity": "sha1-765diPRdeSQUHai1w6en5mP+/rg=", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/serve-index/download/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmmirror.com/http-errors/download/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/setprototypeof/download/setprototypeof-1.1.0.tgz", + "integrity": "sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY=" + }, + "node_modules/serve-static": { + "version": "1.14.2", + "resolved": "https://registry.npmmirror.com/serve-static/download/serve-static-1.14.2.tgz", + "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/server-destroy/download/server-destroy-1.0.1.tgz", + "integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=", + "dev": true + }, + "node_modules/set-harmonic-interval": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/set-harmonic-interval/download/set-harmonic-interval-1.0.1.tgz", + "integrity": "sha1-4Xc3BVOc37gM4cPZnn8pi7OZUkk=", + "engines": { + "node": ">=6.9" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/setprototypeof/download/setprototypeof-1.2.0.tgz", + "integrity": "sha1-ZsmiSnP5/CjL5msJ/tPTPcrxtCQ=" + }, + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/shallowequal/download/shallowequal-1.1.0.tgz", + "integrity": "sha1-GI1SHelbkIdAT9TctosT3wrk5/g=" + }, + "node_modules/sharkdown": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/sharkdown/download/sharkdown-0.1.1.tgz", + "integrity": "sha1-ZEhL0PCPNH+DGen/lHpnD2tIsbI=", + "dependencies": { + "cardinal": "~0.4.2", + "minimist": "0.0.5", + "split": "~0.2.10" + }, + "bin": { + "sharkdown": "sharkdown" + } + }, + "node_modules/sharkdown/node_modules/minimist": { + "version": "0.0.5", + "resolved": "https://registry.nlark.com/minimist/download/minimist-0.0.5.tgz", + "integrity": "sha1-16oye87PUY+RBqxrjwA/o7zqhWY=" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/shebang-command/download/shebang-command-2.0.0.tgz", + "integrity": "sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz?cache=0&sync_timestamp=1628896304371&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fshebang-regex%2Fdownload%2Fshebang-regex-3.0.0.tgz", + "integrity": "sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.7.3", + "resolved": "https://registry.npmmirror.com/shell-quote/download/shell-quote-1.7.3.tgz?cache=0&sync_timestamp=1634798222474&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fshell-quote%2Fdownload%2Fshell-quote-1.7.3.tgz", + "integrity": "sha1-qkDtrBcERbmkMeF7tiwLiBucQSM=", + "license": "MIT" + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/side-channel/download/side-channel-1.0.4.tgz", + "integrity": "sha1-785cj9wQTudRslxY1CkAEfpeos8=", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "node_modules/signal-exit": { + "version": "3.0.6", + "resolved": "https://registry.npmmirror.com/signal-exit/download/signal-exit-3.0.6.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsignal-exit%2Fdownload%2Fsignal-exit-3.0.6.tgz", + "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" + }, + "node_modules/simple-progress-webpack-plugin": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/simple-progress-webpack-plugin/download/simple-progress-webpack-plugin-2.0.0.tgz", + "integrity": "sha1-LVGmPiZgcM3RgSFaZmXinqboIFU=", + "dev": true, + "dependencies": { + "chalk": "4.1.x", + "figures": "3.2.x", + "log-update": "4.0.x" + }, + "peerDependencies": { + "webpack": ">=2.0.0" + } + }, + "node_modules/simple-progress-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/simple-progress-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/simple-progress-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/simple-progress-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "node_modules/simple-progress-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/simple-progress-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmmirror.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.3.2.tgz", + "integrity": "sha1-RXSirlb3qyBolvtDHq7tBm/fjwM=" + }, + "node_modules/sirv": { + "version": "1.0.19", + "resolved": "https://registry.npmmirror.com/sirv/download/sirv-1.0.19.tgz", + "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", + "dev": true, + "dependencies": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^1.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/sisteransi/download/sisteransi-1.0.5.tgz", + "integrity": "sha1-E01oEpd1ZDfMBcoBNw06elcQde0=" + }, + "node_modules/size-sensor": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/size-sensor/download/size-sensor-1.0.1.tgz", + "integrity": "sha1-+E5GIG0+JZ+v8dVI5LO+ypMhnbs=" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/slash/download/slash-3.0.0.tgz", + "integrity": "sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/slice-ansi/download/slice-ansi-4.0.0.tgz", + "integrity": "sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmmirror.com/sockjs/download/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz", + "integrity": "sha1-OZO9hzv8SEecyp6jpUeDXHwVSzQ=" + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/source-map-js/download/source-map-js-1.0.1.tgz?cache=0&sync_timestamp=1636400915509&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsource-map-js%2Fdownload%2Fsource-map-js-1.0.1.tgz", + "integrity": "sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/source-map-loader/download/source-map-loader-3.0.0.tgz", + "integrity": "sha1-8qBO4oCK0Bx3TeprfSY5g587MEk=", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.2", + "source-map-js": "^0.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-loader/node_modules/source-map-js": { + "version": "0.6.2", + "resolved": "https://registry.npmmirror.com/source-map-js/download/source-map-js-0.6.2.tgz?cache=0&sync_timestamp=1636400915509&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsource-map-js%2Fdownload%2Fsource-map-js-0.6.2.tgz", + "integrity": "sha1-C7XeYxtBz72mz7qL0FqA79/SOF4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.6.0.tgz", + "integrity": "sha1-PZ34fiNrU/FtAeWBUPx3EROOXtI=", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmmirror.com/source-map-support/download/source-map-support-0.5.21.tgz?cache=0&sync_timestamp=1637320322789&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsource-map-support%2Fdownload%2Fsource-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/source-map-url/download/source-map-url-0.4.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map-url%2Fdownload%2Fsource-map-url-0.4.1.tgz", + "integrity": "sha1-CvZmBadFpaL5HPG7+KevvCg97FY=" + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.nlark.com/sourcemap-codec/download/sourcemap-codec-1.4.8.tgz", + "integrity": "sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/spdy/download/spdy-4.0.2.tgz", + "integrity": "sha1-t09GYgOj7aRSwCSSuR+56EonZ3s=", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/spdy-transport/download/spdy-transport-3.0.0.tgz", + "integrity": "sha1-ANSGOmQArXXfkzYaFghgXl3NzzE=", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/split": { + "version": "0.2.10", + "resolved": "https://registry.nlark.com/split/download/split-0.2.10.tgz", + "integrity": "sha1-Zwl8YB1pfOE2j0GPBs0gHPBSGlc=", + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/sprintf-js/download/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmmirror.com/stable/download/stable-0.1.8.tgz", + "integrity": "sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88=" + }, + "node_modules/stack-generator": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/stack-generator/download/stack-generator-2.0.5.tgz", + "integrity": "sha1-+wDltO6X3mA+B3PqeM6UTYFZbDY=", + "dependencies": { + "stackframe": "^1.1.1" + } + }, + "node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-2.0.5.tgz?cache=0&sync_timestamp=1631896396458&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstack-utils%2Fdownload%2Fstack-utils-2.0.5.tgz", + "integrity": "sha1-0lJl/KmVFUZZ27+6O0klR3jS/dU=", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz", + "integrity": "sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q=", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/stackframe/download/stackframe-1.2.0.tgz", + "integrity": "sha1-UkKUktY8YuuYmATBFVLj0i53kwM=" + }, + "node_modules/stacktrace-gps": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/stacktrace-gps/download/stacktrace-gps-3.0.4.tgz", + "integrity": "sha1-dojcL8Cf+zoTFl6+DbyvQbzwxpo=", + "dependencies": { + "source-map": "0.5.6", + "stackframe": "^1.1.1" + } + }, + "node_modules/stacktrace-gps/node_modules/source-map": { + "version": "0.5.6", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stacktrace-js": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/stacktrace-js/download/stacktrace-js-2.0.2.tgz?cache=0&sync_timestamp=1609348415805&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstacktrace-js%2Fdownload%2Fstacktrace-js-2.0.2.tgz", + "integrity": "sha1-TKk+qfSUdS1VcJoIHUAP2uvuiXs=", + "dependencies": { + "error-stack-parser": "^2.0.6", + "stack-generator": "^2.0.5", + "stacktrace-gps": "^3.0.4" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.nlark.com/statuses/download/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/steno": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/steno/download/steno-0.4.4.tgz", + "integrity": "sha1-BxEFvfwobmYVwEA8J+nXtdy4Vcs=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.3" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/string_decoder/download/string_decoder-1.3.0.tgz", + "integrity": "sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/safe-buffer/download/safe-buffer-5.2.1.tgz?cache=0&sync_timestamp=1618847044058&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsafe-buffer%2Fdownload%2Fsafe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=" + }, + "node_modules/string-convert": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/string-convert/download/string-convert-0.2.1.tgz", + "integrity": "sha1-aYLMMEn7tM2F+LJFaLnZvznu/5c=" + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/string-length/download/string-length-4.0.2.tgz?cache=0&sync_timestamp=1631558154323&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstring-length%2Fdownload%2Fstring-length-4.0.2.tgz", + "integrity": "sha1-qKjce9XBqCubPIuH4SX2aHG25Xo=", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/string-natural-compare/download/string-natural-compare-3.0.1.tgz", + "integrity": "sha1-ekLVhHRFSWN1no6LeuY9ccHn/fQ=" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/string-width/download/string-width-4.2.3.tgz", + "integrity": "sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/download/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=" + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.6", + "resolved": "https://registry.npmmirror.com/string.prototype.matchall/download/string.prototype.matchall-4.0.6.tgz?cache=0&sync_timestamp=1633405409079&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstring.prototype.matchall%2Fdownload%2Fstring.prototype.matchall-4.0.6.tgz", + "integrity": "sha1-Wrtdq8lMew6iOA9lumELOlRLFfo=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/string.prototype.trim/download/string.prototype.trim-1.2.5.tgz?cache=0&sync_timestamp=1633325929200&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstring.prototype.trim%2Fdownload%2Fstring.prototype.trim-1.2.5.tgz", + "integrity": "sha1-pYe8yL+tjLmCmld/XeMN0XDBaCw=", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha1-51rpDClCxjUEaGwYsoe0oLGkX4A=", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha1-s2OZr0qymZtMnGSL16P7K7Jv7u0=", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/stringify-object/download/stringify-object-3.3.0.tgz", + "integrity": "sha1-cDBlrvyhkwDTzoivT1s5VtdVZik=", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-6.0.1.tgz?cache=0&sync_timestamp=1632420562057&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-4.0.0.tgz", + "integrity": "sha1-nDUFwdtFvO3KPZz3oW9cWqOQGHg=", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/strip-comments/download/strip-comments-2.0.1.tgz", + "integrity": "sha1-StEcP7ysF3pnpArCJMoznKHBups=", + "engines": { + "node": ">=10" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/strip-final-newline/download/strip-final-newline-2.0.0.tgz?cache=0&sync_timestamp=1620047319874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-final-newline%2Fdownload%2Fstrip-final-newline-2.0.0.tgz", + "integrity": "sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-indent/download/strip-indent-3.0.0.tgz", + "integrity": "sha1-wy4c7pQLazQyx3G8LFS8znPNMAE=", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-json-comments%2Fdownload%2Fstrip-json-comments-3.1.1.tgz", + "integrity": "sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=", + "engines": { + "node": ">=8" + } + }, + "node_modules/style-loader": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/style-loader/download/style-loader-3.3.1.tgz", + "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", + "engines": { + "node": ">= 12.13.0" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/style-utils": { + "version": "0.3.4", + "resolved": "https://registry.nlark.com/style-utils/download/style-utils-0.3.4.tgz", + "integrity": "sha1-/0B8Ng07XBoJcSeVhuOc4nJRBk8=" + }, + "node_modules/stylehacks": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/stylehacks/download/stylehacks-5.0.1.tgz", + "integrity": "sha1-Mj7FVBmFIJhoBjiMf9rrw40sBvs=", + "dependencies": { + "browserslist": "^4.16.0", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/stylis": { + "version": "4.0.13", + "resolved": "https://registry.npmmirror.com/stylis/download/stylis-4.0.13.tgz", + "integrity": "sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==" + }, + "node_modules/supercluster": { + "version": "7.1.4", + "resolved": "https://registry.npmmirror.com/supercluster/download/supercluster-7.1.4.tgz", + "integrity": "sha1-Z2Kqv9mF0zkLSfE7gVVn1RFqgoo=", + "license": "ISC", + "dependencies": { + "kdbush": "^3.0.0" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-5.5.0.tgz", + "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/supports-hyperlinks/download/supports-hyperlinks-2.2.0.tgz", + "integrity": "sha1-T3e0JIh2WJF3S3DHm6vYf5vVlLs=", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/svg-parser/download/svg-parser-2.0.4.tgz", + "integrity": "sha1-/cLinhOVFzYUC3bLEiyO5mMOtrU=" + }, + "node_modules/svg-path-properties": { + "version": "1.0.11", + "resolved": "https://registry.npm.taobao.org/svg-path-properties/download/svg-path-properties-1.0.11.tgz", + "integrity": "sha1-2AS3feoobd1WvRglSLnE9ZgNz4M=" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmmirror.com/svgo/download/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/css-select/download/css-select-2.1.0.tgz", + "integrity": "sha1-ajRlM1ZjWTSoG6ymjQJVQyEF2+8=", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmmirror.com/css-what/download/css-what-3.4.2.tgz", + "integrity": "sha1-6nAm/LAXd+295SEk4h8yfnrpUOQ=", + "engines": { + "node": ">= 6" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-0.2.2.tgz", + "integrity": "sha1-GvuB9TNxcXXUeGVd68XjMtn5u1E=", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-1.7.0.tgz?cache=0&sync_timestamp=1630106535879&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdomutils%2Fdownload%2Fdomutils-1.7.0.tgz", + "integrity": "sha1-Vuo0HoNOBuZ0ivehyyXaZ+qfjCo=", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz", + "integrity": "sha1-0EjESzew0Qp/Kj1f7j9DM9eQSB8=" + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-1.0.2.tgz", + "integrity": "sha1-sr0pXDfj3VijvwcAN2Zjuk2c8Fw=", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/svgpath": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/svgpath/download/svgpath-2.5.0.tgz", + "integrity": "sha512-o/vohwqjUO9nDAh4rcjE3KaW/v//At8UJu2LJMybXidf5QLQLVA4bxH0//4YCsr+1H4Gw1Wi/Jc62ynzSBYidw==" + }, + "node_modules/swr": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/swr/download/swr-1.1.0.tgz", + "integrity": "sha512-MFL3mkl752Uap81nLA1tEu7vQmikPamSziW+6dBidYKAo4oLOlUx/x5GZy4ZCkCwfZe2uedylkz1UMGnatUX4g==", + "peerDependencies": { + "react": "^16.11.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz", + "integrity": "sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I=" + }, + "node_modules/tailwindcss": { + "version": "3.0.8", + "resolved": "https://registry.npmmirror.com/tailwindcss/download/tailwindcss-3.0.8.tgz", + "integrity": "sha512-Yww1eRYO1AxITJmW/KduZPxNvYdHuedeKwPju9Oakp7MdiixRi5xkpLhirsc81QCxHL0eoce6qKmxXwYGt4Cjw==", + "dependencies": { + "arg": "^5.0.1", + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "color-name": "^1.1.4", + "cosmiconfig": "^7.0.1", + "detective": "^5.2.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "normalize-path": "^3.0.0", + "object-hash": "^2.2.0", + "postcss-js": "^3.0.3", + "postcss-load-config": "^3.1.0", + "postcss-nested": "5.0.6", + "postcss-selector-parser": "^6.0.7", + "postcss-value-parser": "^4.2.0", + "quick-lru": "^5.1.1", + "resolve": "^1.20.0", + "tmp": "^0.2.1" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "autoprefixer": "^10.0.2", + "postcss": "^8.0.9" + } + }, + "node_modules/tailwindcss/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tailwindcss/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tailwindcss/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/tailwindcss/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/tailwindcss/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "engines": { + "node": ">=8" + } + }, + "node_modules/tailwindcss/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/tapable/download/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tape": { + "version": "4.14.0", + "resolved": "https://registry.npmmirror.com/tape/download/tape-4.14.0.tgz", + "integrity": "sha1-5NRgl+EpgXF1uQkl8jhfaxvPqCY=", + "dependencies": { + "call-bind": "~1.0.2", + "deep-equal": "~1.1.1", + "defined": "~1.0.0", + "dotignore": "~0.1.2", + "for-each": "~0.3.3", + "glob": "~7.1.7", + "has": "~1.0.3", + "inherits": "~2.0.4", + "is-regex": "~1.1.3", + "minimist": "~1.2.5", + "object-inspect": "~1.11.0", + "resolve": "~1.20.0", + "resumer": "~0.0.0", + "string.prototype.trim": "~1.2.4", + "through": "~2.3.8" + }, + "bin": { + "tape": "bin/tape" + } + }, + "node_modules/tape/node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmmirror.com/glob/download/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tape/node_modules/object-inspect": { + "version": "1.11.1", + "resolved": "https://registry.npmmirror.com/object-inspect/download/object-inspect-1.11.1.tgz", + "integrity": "sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/temp-dir/download/temp-dir-2.0.0.tgz", + "integrity": "sha1-vekrBb3+sVFugEycAK1FF38xMh4=", + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.nlark.com/tempy/download/tempy-0.6.0.tgz?cache=0&sync_timestamp=1629290366852&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftempy%2Fdownload%2Ftempy-0.6.0.tgz", + "integrity": "sha1-ZeLDWrwG8RJKl/OHsIMDRCveWfM=", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.16.0.tgz", + "integrity": "sha1-MkC4kaeLDerpENvrhlU+VSoUiGA=", + "engines": { + "node": ">=10" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/terminal-link/download/terminal-link-2.1.1.tgz", + "integrity": "sha1-FKZKJ6s8Dfkz6lRvulXy0HjtyZQ=", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser": { + "version": "5.10.0", + "resolved": "https://registry.npmmirror.com/terser/download/terser-5.10.0.tgz?cache=0&sync_timestamp=1636988125723&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fterser%2Fdownload%2Fterser-5.10.0.tgz", + "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "acorn": "^8.5.0" + }, + "peerDependenciesMeta": { + "acorn": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/terser-webpack-plugin/download/terser-webpack-plugin-5.3.0.tgz", + "integrity": "sha512-LPIisi3Ol4chwAaPP8toUJ3L4qCM1G0wao7L3qNv57Drezxj6+VEyySpPw4B1HSO2Eg/hDY/MNF5XihCAoqnsQ==", + "dependencies": { + "jest-worker": "^27.4.1", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmmirror.com/commander/download/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.7.3.tgz", + "integrity": "sha1-UwL4FpAxc1ImVECS5kmB91F1A4M=", + "engines": { + "node": ">= 8" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/test-exclude/download/test-exclude-6.0.0.tgz", + "integrity": "sha1-BKhphmHYBepvopO2y55jrARO8V4=", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "dependencies": { + "utrie": "^1.0.2" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "node_modules/three": { + "version": "0.137.5", + "resolved": "https://registry.npmmirror.com/three/-/three-0.137.5.tgz", + "integrity": "sha512-rTyr+HDFxjnN8+N/guZjDgfVxgHptZQpf6xfL/Mo7a5JYIFwK6tAq3bzxYYB4Ae0RosDZlDuP+X5aXDXz+XnHQ==" + }, + "node_modules/throat": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/throat/download/throat-6.0.1.tgz", + "integrity": "sha1-1RT+2tlXQMEsLX/HDqhj61Gt43U=" + }, + "node_modules/throttle-debounce": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/throttle-debounce/download/throttle-debounce-3.0.1.tgz", + "integrity": "sha1-MvlNhN+olPeGyaHykOemRbahmrs=", + "engines": { + "node": ">=10" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.nlark.com/through/download/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/thunky/download/thunky-1.1.0.tgz", + "integrity": "sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30=" + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/timsort/download/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + }, + "node_modules/tinycolor2": { + "version": "1.4.2", + "resolved": "https://registry.npm.taobao.org/tinycolor2/download/tinycolor2-1.4.2.tgz", + "integrity": "sha1-P2pNEHGtB2dtf6Ry4frECnGdiAM=", + "engines": { + "node": "*" + } + }, + "node_modules/tinyqueue": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/tinyqueue/download/tinyqueue-2.0.3.tgz", + "integrity": "sha1-ZNhJLr8554Ade9NAYuKbRbIDXwg=" + }, + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npm.taobao.org/tmp/download/tmp-0.2.1.tgz", + "integrity": "sha1-hFf8MDfc9HGcJRNnoa9lAO4czxQ=", + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/tmpl/download/tmpl-1.0.5.tgz?cache=0&sync_timestamp=1630997259079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftmpl%2Fdownload%2Ftmpl-1.0.5.tgz", + "integrity": "sha1-hoPguQK7nCDE9ybjwLafNlGMB8w=" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1628418855671&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/to-readable-stream/download/to-readable-stream-1.0.0.tgz?cache=0&sync_timestamp=1619072466944&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fto-readable-stream%2Fdownload%2Fto-readable-stream-1.0.0.tgz", + "integrity": "sha1-zgqgwvPfat+FLvtASng+d8BHV3E=", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz", + "integrity": "sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/toggle-selection/download/toggle-selection-1.0.6.tgz", + "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/toidentifier/download/toidentifier-1.0.1.tgz?cache=0&sync_timestamp=1636938515603&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftoidentifier%2Fdownload%2Ftoidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/topojson-client": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/topojson-client/download/topojson-client-3.1.0.tgz", + "integrity": "sha1-Iuix7QiiuSL+60r29Ttu8JpGe5k=", + "dependencies": { + "commander": "2" + }, + "bin": { + "topo2geo": "bin/topo2geo", + "topomerge": "bin/topomerge", + "topoquantize": "bin/topoquantize" + } + }, + "node_modules/topojson-client/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmmirror.com/commander/download/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/toposort": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/toposort/download/toposort-2.0.2.tgz", + "integrity": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=" + }, + "node_modules/totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/totalist/download/totalist-1.1.0.tgz", + "integrity": "sha1-pNZaPlRlF3AePlw3pHpwrJf+Vt8=", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-4.0.0.tgz", + "integrity": "sha1-2CIjTuyogvmR8PkIgkrSYi3b7OQ=", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz", + "integrity": "sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/tr46/download/tr46-2.1.0.tgz?cache=0&sync_timestamp=1633302360065&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftr46%2Fdownload%2Ftr46-2.1.0.tgz", + "integrity": "sha1-+oeqgcpdWUHajL8fm3SdyWmk4kA=", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/tryer/download/tryer-1.0.1.tgz", + "integrity": "sha1-8shUBoALmw90yfdGW4HqrSQSUvg=" + }, + "node_modules/ts-easing": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/ts-easing/download/ts-easing-0.2.0.tgz", + "integrity": "sha1-yKijUCUQVWZYjYfb2gXdf7+lpOw=" + }, + "node_modules/tsconfig-paths": { + "version": "3.12.0", + "resolved": "https://registry.npmmirror.com/tsconfig-paths/download/tsconfig-paths-3.12.0.tgz?cache=0&sync_timestamp=1637404842509&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftsconfig-paths%2Fdownload%2Ftsconfig-paths-3.12.0.tgz", + "integrity": "sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.3.1", + "resolved": "https://registry.nlark.com/tslib/download/tslib-2.3.1.tgz?cache=0&sync_timestamp=1628722580350&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftslib%2Fdownload%2Ftslib-2.3.1.tgz", + "integrity": "sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.nlark.com/tsutils/download/tsutils-3.21.0.tgz", + "integrity": "sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.nlark.com/tslib/download/tslib-1.14.1.tgz?cache=0&sync_timestamp=1628722580350&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftslib%2Fdownload%2Ftslib-1.14.1.tgz", + "integrity": "sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=" + }, + "node_modules/tween-functions": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/tween-functions/download/tween-functions-1.2.0.tgz", + "integrity": "sha1-GuOlDnxguz3vd06scHrLynO7w/8=" + }, + "node_modules/tween-one": { + "version": "1.0.57", + "resolved": "https://registry.npmmirror.com/tween-one/download/tween-one-1.0.57.tgz?cache=0&sync_timestamp=1637219643902&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftween-one%2Fdownload%2Ftween-one-1.0.57.tgz", + "integrity": "sha512-TlK4RMISb3UCXq/wlk+yghWLQeybEi3Ktu8efGOzIy201urhAkdrXO2nyuIgaIQQa8v27Nkmh5DhBEFx211+Dw==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "flubber": "^0.4.2", + "raf": "^3.4.1", + "style-utils": "^0.3.0", + "svg-path-properties": "^1.0.4", + "tween-functions": "^1.2.0" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/type-check/download/type-check-0.4.0.tgz", + "integrity": "sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npm.taobao.org/type-detect/download/type-detect-4.0.8.tgz", + "integrity": "sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw=", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.21.3.tgz", + "integrity": "sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=", + "engines": { + "node": ">=10" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.nlark.com/type-is/download/type-is-1.6.18.tgz", + "integrity": "sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.nlark.com/typedarray/download/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.nlark.com/typedarray-to-buffer/download/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha1-qX7nqf9CaRufeD/xvFES/j/KkIA=", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.5.4", + "resolved": "https://registry.npmmirror.com/typescript/download/typescript-4.5.4.tgz", + "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/ua-parser-js": { + "version": "0.7.31", + "resolved": "https://registry.npmmirror.com/ua-parser-js/download/ua-parser-js-0.7.31.tgz", + "integrity": "sha1-ZJplaxkd/6tPIdXgU+J8oXy/9cY=", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + } + ], + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmmirror.com/uglify-js/download/uglify-js-2.8.29.tgz", + "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "dependencies": { + "source-map": "~0.5.1", + "yargs": "~3.10.0" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + }, + "optionalDependencies": { + "uglify-to-browserify": "~1.0.0" + } + }, + "node_modules/uglify-js/node_modules/camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/camelcase/download/camelcase-1.2.1.tgz", + "integrity": "sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uglify-js/node_modules/cliui": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-2.1.0.tgz?cache=0&sync_timestamp=1604880226973&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcliui%2Fdownload%2Fcliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "dependencies": { + "center-align": "^0.1.1", + "right-align": "^0.1.1", + "wordwrap": "0.0.2" + } + }, + "node_modules/uglify-js/node_modules/yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmmirror.com/yargs/download/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "dependencies": { + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", + "window-size": "0.1.0" + } + }, + "node_modules/uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/uglify-to-browserify/download/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "optional": true + }, + "node_modules/unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/unbox-primitive/download/unbox-primitive-1.0.1.tgz", + "integrity": "sha1-CF4hViXsMWJXTciFmr7nilmxRHE=", + "dependencies": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-2.0.0.tgz?cache=0&sync_timestamp=1631618607567&other_urls=https%3A%2F%2Fregistry.nlark.com%2Funicode-match-property-ecmascript%2Fdownload%2Funicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-2.0.0.tgz?cache=0&sync_timestamp=1631618097559&other_urls=https%3A%2F%2Fregistry.nlark.com%2Funicode-match-property-value-ecmascript%2Fdownload%2Funicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha1-GgGqVyR8FMVouJd1pUk4eIGJpxQ=", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-2.0.0.tgz?cache=0&sync_timestamp=1631609471881&other_urls=https%3A%2F%2Fregistry.nlark.com%2Funicode-property-aliases-ecmascript%2Fdownload%2Funicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha1-CjbLmlhcT2q9Ua0d7dsoXBZSl8g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/unique-string/download/unique-string-2.0.0.tgz", + "integrity": "sha1-OcZFH4GvsnSd4rIz4/fF6IQ72J0=", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/universalify/download/universalify-2.0.0.tgz", + "integrity": "sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unload": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/unload/download/unload-2.2.0.tgz", + "integrity": "sha1-zMiP3K00X6oGqSA57A+AtIiIDvc=", + "dependencies": { + "@babel/runtime": "^7.6.2", + "detect-node": "^2.0.4" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/unpipe/download/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/unquote/download/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "node_modules/unstated-next": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/unstated-next/download/unstated-next-1.1.0.tgz", + "integrity": "sha1-e7SRGhL988yK0+sRoLMV5KhoXqg=" + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/upath/download/upath-1.2.0.tgz", + "integrity": "sha1-j2bbzVWog6za5ECK+LA1pQRMGJQ=", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/update-notifier/download/update-notifier-5.1.0.tgz", + "integrity": "sha1-SrDXx/NqIx3XMWz3cpMT8CFNmtk=", + "dev": true, + "dependencies": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/update-notifier/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/update-notifier/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/update-notifier/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/update-notifier/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "node_modules/update-notifier/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/update-notifier/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.nlark.com/uri-js/download/uri-js-4.4.1.tgz", + "integrity": "sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/url-parse-lax/download/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "dev": true, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/use-json-comparison": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/use-json-comparison/download/use-json-comparison-1.0.6.tgz", + "integrity": "sha1-oBK7wljOdF2x9WdF3GU/V1ImyyE=", + "peerDependencies": { + "react": ">=16.9.0" + } + }, + "node_modules/use-media-antd-query": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/use-media-antd-query/download/use-media-antd-query-1.1.0.tgz", + "integrity": "sha1-8IOtfiksHAJhtrv6rA7cPgkg2F0=", + "peerDependencies": { + "react": ">=16.9.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.1.tgz", + "integrity": "sha1-a693dLgO6w91INi4HQeYKlmruu4=", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npm.taobao.org/utila/download/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + }, + "node_modules/utility-types": { + "version": "3.10.0", + "resolved": "https://registry.nlark.com/utility-types/download/utility-types-3.10.0.tgz", + "integrity": "sha1-6kFI+adBAV8F7XT9YV4dIOa+2Cs=", + "engines": { + "node": ">= 4" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "dependencies": { + "base64-arraybuffer": "^1.0.2" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmmirror.com/uuid/download/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz", + "integrity": "sha1-LeGWGMZtwkfc+2+ZM4A12CRaLO4=" + }, + "node_modules/v8-to-istanbul": { + "version": "8.1.0", + "resolved": "https://registry.npmmirror.com/v8-to-istanbul/download/v8-to-istanbul-8.1.0.tgz", + "integrity": "sha1-Cut2OJTxoKFnat+Ki3YSo4kCRGw=", + "license": "ISC", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.7.3.tgz", + "integrity": "sha1-UwL4FpAxc1ImVECS5kmB91F1A4M=", + "engines": { + "node": ">= 8" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/vary/download/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/viewport-mercator-project": { + "version": "6.2.3", + "resolved": "https://registry.nlark.com/viewport-mercator-project/download/viewport-mercator-project-6.2.3.tgz?cache=0&sync_timestamp=1630867671298&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fviewport-mercator-project%2Fdownload%2Fviewport-mercator-project-6.2.3.tgz", + "integrity": "sha1-QSIED1HvlVP6QaRrzGUCl3s5CcY=", + "dependencies": { + "@babel/runtime": "^7.0.0", + "gl-matrix": "^3.0.0" + } + }, + "node_modules/vt-pbf": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/vt-pbf/download/vt-pbf-3.1.3.tgz?cache=0&sync_timestamp=1623057849875&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvt-pbf%2Fdownload%2Fvt-pbf-3.1.3.tgz", + "integrity": "sha1-aP0VB1ZGXi7a4cxcBI4GORbc+qw=", + "dependencies": { + "@mapbox/point-geometry": "0.1.0", + "@mapbox/vector-tile": "^1.3.1", + "pbf": "^3.2.1" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz", + "integrity": "sha1-ConN9cwVgi35w2BUNnaWPgzDCM0=", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/w3c-xmlserializer/download/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha1-PnEEoFt1FGzGD1ZDgLf2g6zxAgo=", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/walker/download/walker-1.0.8.tgz?cache=0&sync_timestamp=1635238315480&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwalker%2Fdownload%2Fwalker-1.0.8.tgz", + "integrity": "sha1-vUmNtHev5XPcBBhfAR06uKjXZT8=", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/warning/download/warning-4.0.3.tgz", + "integrity": "sha1-Fungd+uKhtavfWSqHgX9hbRnjKM=", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/watchpack": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/watchpack/download/watchpack-2.3.1.tgz", + "integrity": "sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "integrity": "sha1-wdjRSTFtPqhShIiVy2oL/oh7h98=", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/web-vitals": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/web-vitals/download/web-vitals-2.1.2.tgz", + "integrity": "sha1-OmyPrr+Ql6bM0X9fRclIXY1i2rE=", + "license": "Apache-2.0" + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-6.1.0.tgz", + "integrity": "sha1-kRG01+qArNQPUnDWZmIa+ni2lRQ=", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.65.0", + "resolved": "https://registry.npmmirror.com/webpack/download/webpack-5.65.0.tgz", + "integrity": "sha512-Q5or2o6EKs7+oKmJo7LaqZaMOlDWQse9Tm5l1WAfU/ujLGN5Pb0SqGeVkN/4bpPmEqEP5RnVhiqsOtWtUVwGRw==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.0", + "@types/estree": "^0.0.50", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.8.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.4", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.2" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-bundle-analyzer": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/webpack-bundle-analyzer/download/webpack-bundle-analyzer-4.5.0.tgz", + "integrity": "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==", + "dev": true, + "dependencies": { + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "opener": "^1.5.2", + "sirv": "^1.0.7", + "ws": "^7.3.1" + }, + "bin": { + "webpack-bundle-analyzer": "lib/bin/analyzer.js" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-8.2.0.tgz?cache=0&sync_timestamp=1630916588767&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-8.2.0.tgz", + "integrity": "sha1-dBIQ8uJCZFRQiFOi9E0KuDt/acE=", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "node_modules/webpack-bundle-analyzer/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/commander/download/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/webpack-dev-middleware/download/webpack-dev-middleware-5.3.0.tgz", + "integrity": "sha512-MouJz+rXAm9B1OTOYaJnn6rtD/lWZPy2ufQCH3BPs8Rloh/Du6Jze4p7AeLYHkVi0giJnYLaSGDC7S+GM9arhg==", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.2.2", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-5.1.0.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-4.0.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.7.2", + "resolved": "https://registry.npmmirror.com/webpack-dev-server/download/webpack-dev-server-4.7.2.tgz", + "integrity": "sha512-s6yEOSfPpB6g1T2+C5ZOUt5cQOMhjI98IVmmvMNb5cdiqHoxSUfACISHqU/wZy+q4ar/A9jW0pbNj7sa50XRVA==", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/serve-index": "^1.9.1", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.2.2", + "ansi-html-community": "^0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^3.5.2", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "default-gateway": "^6.0.3", + "del": "^6.0.0", + "express": "^4.17.1", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.0", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "portfinder": "^1.0.28", + "schema-utils": "^4.0.0", + "selfsigned": "^1.10.11", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "spdy": "^4.0.2", + "strip-ansi": "^7.0.0", + "webpack-dev-middleware": "^5.3.0", + "ws": "^8.1.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-5.1.0.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-6.0.1.tgz", + "integrity": "sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=", + "engines": { + "node": ">=12" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-4.0.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-7.0.1.tgz?cache=0&sync_timestamp=1632420562057&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-7.0.1.tgz", + "integrity": "sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I=", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.4.0", + "resolved": "https://registry.npmmirror.com/ws/download/ws-8.4.0.tgz", + "integrity": "sha512-IHVsKe2pjajSUIl4KYMQOdlyliovpEPquKkqbwswulszzI7r0SfQrxnXdWAEqOlDCLrVSJzo+O1hAwdog2sKSQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webpack-manifest-plugin/download/webpack-manifest-plugin-4.0.2.tgz?cache=0&sync_timestamp=1627559799242&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebpack-manifest-plugin%2Fdownload%2Fwebpack-manifest-plugin-4.0.2.tgz", + "integrity": "sha1-p+5GIZpsggpc2uD33bfLBIN0SPs=", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/webpack-sources/download/webpack-sources-2.3.1.tgz?cache=0&sync_timestamp=1636982683302&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwebpack-sources%2Fdownload%2Fwebpack-sources-2.3.1.tgz", + "integrity": "sha1-Vw3grxY5Sf4nIjPCzv4bVvdFEf0=", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/webpack-sources/download/webpack-sources-3.2.2.tgz?cache=0&sync_timestamp=1636982683302&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwebpack-sources%2Fdownload%2Fwebpack-sources-3.2.2.tgz", + "integrity": "sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1637466831846&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz", + "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz?cache=0&sync_timestamp=1635237716974&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npm.taobao.org/websocket-driver/download/websocket-driver-0.7.4.tgz", + "integrity": "sha1-ia1Slbv2S0gKvLox5JU6ynBvV2A=", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npm.taobao.org/websocket-extensions/download/websocket-extensions-0.1.4.tgz", + "integrity": "sha1-f4RzvIOd/YdgituV1+sHUhFXikI=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/wgs84": { + "version": "0.0.0", + "resolved": "https://registry.npm.taobao.org/wgs84/download/wgs84-0.0.0.tgz", + "integrity": "sha1-NP3FVZF7blfPKigu0ENxDASc3HY=" + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "integrity": "sha1-WrrPd3wyFmpR0IXWtPPn0nET3bA=", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.nlark.com/whatwg-fetch/download/whatwg-fetch-3.6.2.tgz", + "integrity": "sha1-3O0k838mJO0CgXJdUdDi4/5nf4w=" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz?cache=0&sync_timestamp=1631993408310&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwhatwg-mimetype%2Fdownload%2Fwhatwg-mimetype-2.3.0.tgz", + "integrity": "sha1-PUseAxLSB5h5+Cav8Y2+7KWWD78=" + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmmirror.com/whatwg-url/download/whatwg-url-8.7.0.tgz", + "integrity": "sha1-ZWp45RD/jzk3vAvL6fXArDWUG3c=", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/which/download/which-2.0.2.tgz", + "integrity": "sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha1-E3V7yJsgmwSf5dhkMOIc9AqJqOY=", + "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" + } + }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/widest-line/download/widest-line-3.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwidest-line%2Fdownload%2Fwidest-line-3.1.0.tgz", + "integrity": "sha1-gpIzO79my0X/DeFgOxNreuFJbso=", + "dev": true, + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/window-size": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/window-size/download/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz", + "integrity": "sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npm.taobao.org/wordwrap/download/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-background-sync/download/workbox-background-sync-6.4.2.tgz", + "integrity": "sha512-P7c8uG5X2k+DMICH9xeSA9eUlCOjHHYoB42Rq+RtUpuwBxUOflAXR1zdsMWj81LopE4gjKXlTw7BFd1BDAHo7g==", + "dependencies": { + "idb": "^6.1.4", + "workbox-core": "6.4.2" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-broadcast-update/download/workbox-broadcast-update-6.4.2.tgz", + "integrity": "sha512-qnBwQyE0+PWFFc/n4ISXINE49m44gbEreJUYt2ldGH3+CNrLmJ1egJOOyUqqu9R4Eb7QrXcmB34ClXG7S37LbA==", + "dependencies": { + "workbox-core": "6.4.2" + } + }, + "node_modules/workbox-build": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-build/download/workbox-build-6.4.2.tgz", + "integrity": "sha512-WMdYLhDIsuzViOTXDH+tJ1GijkFp5khSYolnxR/11zmfhNDtuo7jof72xPGFy+KRpsz6tug39RhivCj77qqO0w==", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "source-map-url": "^0.4.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.4.2", + "workbox-broadcast-update": "6.4.2", + "workbox-cacheable-response": "6.4.2", + "workbox-core": "6.4.2", + "workbox-expiration": "6.4.2", + "workbox-google-analytics": "6.4.2", + "workbox-navigation-preload": "6.4.2", + "workbox-precaching": "6.4.2", + "workbox-range-requests": "6.4.2", + "workbox-recipes": "6.4.2", + "workbox-routing": "6.4.2", + "workbox-strategies": "6.4.2", + "workbox-streams": "6.4.2", + "workbox-sw": "6.4.2", + "workbox-window": "6.4.2" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.2", + "resolved": "https://registry.npmmirror.com/@apideck/better-ajv-errors/download/@apideck/better-ajv-errors-0.3.2.tgz", + "integrity": "sha512-JdEazx7qiVqTBzzBl5rolRwl5cmhihjfIcpqRzIZjtT6b18liVmDn/VlWpqW4C/qP2hrFFMLRV1wlex8ZVBPTg==", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.nlark.com/fs-extra/download/fs-extra-9.1.0.tgz", + "integrity": "sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0=", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.8.0-beta.0.tgz", + "integrity": "sha1-1MG7QsP37pJfAFknuhBwng0dHxE=", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/tr46/download/tr46-1.0.1.tgz?cache=0&sync_timestamp=1633302360065&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftr46%2Fdownload%2Ftr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz", + "integrity": "sha1-qFWYCx8LazWbodXZ+zmulB+qY60=" + }, + "node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "integrity": "sha1-wsSS8eymEpiO/T0iZr4bn8YXDQY=", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-cacheable-response/download/workbox-cacheable-response-6.4.2.tgz", + "integrity": "sha512-9FE1W/cKffk1AJzImxgEN0ceWpyz1tqNjZVtA3/LAvYL3AC5SbIkhc7ZCO82WmO9IjTfu8Vut2X/C7ViMSF7TA==", + "dependencies": { + "workbox-core": "6.4.2" + } + }, + "node_modules/workbox-core": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-core/download/workbox-core-6.4.2.tgz", + "integrity": "sha512-1U6cdEYPcajRXiboSlpJx6U7TvhIKbxRRerfepAJu2hniKwJ3DHILjpU/zx3yvzSBCWcNJDoFalf7Vgd7ey/rw==" + }, + "node_modules/workbox-expiration": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-expiration/download/workbox-expiration-6.4.2.tgz", + "integrity": "sha512-0hbpBj0tDnW+DZOUmwZqntB/8xrXOgO34i7s00Si/VlFJvvpRKg1leXdHHU8ykoSBd6+F2KDcMP3swoCi5guLw==", + "dependencies": { + "idb": "^6.1.4", + "workbox-core": "6.4.2" + } + }, + "node_modules/workbox-google-analytics": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-google-analytics/download/workbox-google-analytics-6.4.2.tgz", + "integrity": "sha512-u+gxs3jXovPb1oul4CTBOb+T9fS1oZG+ZE6AzS7l40vnyfJV79DaLBvlpEZfXGv3CjMdV1sT/ltdOrKzo7HcGw==", + "dependencies": { + "workbox-background-sync": "6.4.2", + "workbox-core": "6.4.2", + "workbox-routing": "6.4.2", + "workbox-strategies": "6.4.2" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-navigation-preload/download/workbox-navigation-preload-6.4.2.tgz", + "integrity": "sha512-viyejlCtlKsbJCBHwhSBbWc57MwPXvUrc8P7d+87AxBGPU+JuWkT6nvBANgVgFz6FUhCvRC8aYt+B1helo166g==", + "dependencies": { + "workbox-core": "6.4.2" + } + }, + "node_modules/workbox-precaching": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-precaching/download/workbox-precaching-6.4.2.tgz", + "integrity": "sha512-CZ6uwFN/2wb4noHVlALL7UqPFbLfez/9S2GAzGAb0Sk876ul9ukRKPJJ6gtsxfE2HSTwqwuyNVa6xWyeyJ1XSA==", + "dependencies": { + "workbox-core": "6.4.2", + "workbox-routing": "6.4.2", + "workbox-strategies": "6.4.2" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-range-requests/download/workbox-range-requests-6.4.2.tgz", + "integrity": "sha512-SowF3z69hr3Po/w7+xarWfzxJX/3Fo0uSG72Zg4g5FWWnHpq2zPvgbWerBZIa81zpJVUdYpMa3akJJsv+LaO1Q==", + "dependencies": { + "workbox-core": "6.4.2" + } + }, + "node_modules/workbox-recipes": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-recipes/download/workbox-recipes-6.4.2.tgz", + "integrity": "sha512-/oVxlZFpAjFVbY+3PoGEXe8qyvtmqMrTdWhbOfbwokNFtUZ/JCtanDKgwDv9x3AebqGAoJRvQNSru0F4nG+gWA==", + "dependencies": { + "workbox-cacheable-response": "6.4.2", + "workbox-core": "6.4.2", + "workbox-expiration": "6.4.2", + "workbox-precaching": "6.4.2", + "workbox-routing": "6.4.2", + "workbox-strategies": "6.4.2" + } + }, + "node_modules/workbox-routing": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-routing/download/workbox-routing-6.4.2.tgz", + "integrity": "sha512-0ss/n9PAcHjTy4Ad7l2puuod4WtsnRYu9BrmHcu6Dk4PgWeJo1t5VnGufPxNtcuyPGQ3OdnMdlmhMJ57sSrrSw==", + "dependencies": { + "workbox-core": "6.4.2" + } + }, + "node_modules/workbox-strategies": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-strategies/download/workbox-strategies-6.4.2.tgz", + "integrity": "sha512-YXh9E9dZGEO1EiPC3jPe2CbztO5WT8Ruj8wiYZM56XqEJp5YlGTtqRjghV+JovWOqkWdR+amJpV31KPWQUvn1Q==", + "dependencies": { + "workbox-core": "6.4.2" + } + }, + "node_modules/workbox-streams": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-streams/download/workbox-streams-6.4.2.tgz", + "integrity": "sha512-ROEGlZHGVEgpa5bOZefiJEVsi5PsFjJG9Xd+wnDbApsCO9xq9rYFopF+IRq9tChyYzhBnyk2hJxbQVWphz3sog==", + "dependencies": { + "workbox-core": "6.4.2", + "workbox-routing": "6.4.2" + } + }, + "node_modules/workbox-sw": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-sw/download/workbox-sw-6.4.2.tgz", + "integrity": "sha512-A2qdu9TLktfIM5NE/8+yYwfWu+JgDaCkbo5ikrky2c7r9v2X6DcJ+zSLphNHHLwM/0eVk5XVf1mC5HGhYpMhhg==" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-webpack-plugin/download/workbox-webpack-plugin-6.4.2.tgz", + "integrity": "sha512-CiEwM6kaJRkx1cP5xHksn13abTzUqMHiMMlp5Eh/v4wRcedgDTyv6Uo8+Hg9MurRbHDosO5suaPyF9uwVr4/CQ==", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "source-map-url": "^0.4.0", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.4.2" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmmirror.com/webpack-sources/download/webpack-sources-1.4.3.tgz?cache=0&sync_timestamp=1636982683302&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwebpack-sources%2Fdownload%2Fwebpack-sources-1.4.3.tgz", + "integrity": "sha1-7t2OwLko+/HL/plOItLYkPMwqTM=", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/workbox-window": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-window/download/workbox-window-6.4.2.tgz", + "integrity": "sha512-KVyRKmrJg7iB+uym/B/CnEUEFG9CvnTU1Bq5xpXHbtgD9l+ShDekSl1wYpqw/O0JfeeQVOFb8CiNfvnwWwqnWQ==", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.4.2" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/wrap-ansi/download/wrap-ansi-7.0.0.tgz", + "integrity": "sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-3.0.3.tgz", + "integrity": "sha1-Vr1cWlxwSBzRnFcb05q5ZaXeVug=", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.6", + "resolved": "https://registry.npmmirror.com/ws/download/ws-7.5.6.tgz", + "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/xdg-basedir/download/xdg-basedir-4.0.0.tgz", + "integrity": "sha1-S8jZmEQDaWIl74OhVzy7y0552xM=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz", + "integrity": "sha1-auc+Bt5NjG5H+fsYH3jWSK1FfGo=" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/xmlchars/download/xmlchars-2.2.0.tgz", + "integrity": "sha1-Bg/hvLf5x2/ioX24apvDq4lCEMs=" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/xtend/download/xtend-4.0.2.tgz", + "integrity": "sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-5.0.8.tgz", + "integrity": "sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/yallist/download/yallist-4.0.0.tgz", + "integrity": "sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmmirror.com/yaml/download/yaml-1.10.2.tgz", + "integrity": "sha1-IwHF/78StGfejaIzOkWeKeeSDks=", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmmirror.com/yargs/download/yargs-16.2.0.tgz", + "integrity": "sha1-HIK/D2tqZur85+8w43b0mhJHf2Y=", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmmirror.com/yargs-parser/download/yargs-parser-20.2.9.tgz?cache=0&sync_timestamp=1637030983058&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fyargs-parser%2Fdownload%2Fyargs-parser-20.2.9.tgz", + "integrity": "sha1-LrfcOwKJcY/ClfNidThFxBoMlO4=", + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/yocto-queue/download/yocto-queue-0.1.0.tgz", + "integrity": "sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=", + "engines": { + "node": ">=10" + } + } + }, + "dependencies": { + "@amap/amap-jsapi-loader": { + "version": "0.0.3", + "resolved": "https://registry.npm.taobao.org/@amap/amap-jsapi-loader/download/@amap/amap-jsapi-loader-0.0.3.tgz?cache=0&sync_timestamp=1616395050347&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40amap%2Famap-jsapi-loader%2Fdownload%2F%40amap%2Famap-jsapi-loader-0.0.3.tgz", + "integrity": "sha1-XWdvFnAhPeCSfHTad0dXI+XeI4A=" + }, + "@ant-design/charts": { + "version": "1.3.4", + "resolved": "https://registry.npmmirror.com/@ant-design/charts/download/@ant-design/charts-1.3.4.tgz", + "integrity": "sha512-7XHxYRMbEIy4FJDvNDmwW9qUUuVafWPhvWLSI/WyegDAir58m5s1lXh6Zp0l6lkdMBXywlWoP5XtRbpgY1opmg==", + "requires": { + "@ant-design/flowchart": "^1.0.2", + "@ant-design/graphs": "^1.0.1", + "@ant-design/maps": "^0.0.3", + "@ant-design/plots": "^1.0.2" + } + }, + "@ant-design/colors": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/@ant-design/colors/download/@ant-design/colors-6.0.0.tgz", + "integrity": "sha1-m5NmJXz/zEfbQrnQIDu1ksE8Apg=", + "requires": { + "@ctrl/tinycolor": "^3.4.0" + } + }, + "@ant-design/flowchart": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/@ant-design/flowchart/download/@ant-design/flowchart-1.0.7.tgz", + "integrity": "sha512-K276+N4iMpwrnR9LVtBYMKrk+V+SLYIGq/CotI4HpMAm2FsCeFeWC1ttxbhmJ2FwDnpfP9gQgHSgJF/oLtUxCg==", + "requires": { + "@antv/layout": "^0.1.17", + "@antv/x6": "^1.25.0", + "@antv/x6-react-components": "^1.1.13", + "@antv/x6-react-shape": "^1.4.5", + "@antv/xflow": "^1.0.0", + "react-color": "2.17.3", + "react-use": "17.3.1" + } + }, + "@ant-design/graphs": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/@ant-design/graphs/download/@ant-design/graphs-1.0.6.tgz", + "integrity": "sha512-UbpvUO3Hj7JUPcqjMufMEwYGOzBy/mOj3eI97mL1ogYERvpFQ5MWaCcyykhykyyCvBILJC1Lhfl4JLCBOm7v6Q==", + "requires": { + "@antv/g6": "^4.2.4", + "@antv/util": "^2.0.9", + "react-content-loader": "^5.0.4" + } + }, + "@ant-design/icons": { + "version": "4.7.0", + "resolved": "https://registry.npmmirror.com/@ant-design/icons/download/@ant-design/icons-4.7.0.tgz?cache=0&sync_timestamp=1632478665145&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40ant-design%2Ficons%2Fdownload%2F%40ant-design%2Ficons-4.7.0.tgz", + "integrity": "sha1-jDy+ClVrqSr13H0ecMCyW1F5rw8=", + "requires": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons-svg": "^4.2.1", + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-util": "^5.9.4" + } + }, + "@ant-design/icons-svg": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/@ant-design/icons-svg/download/@ant-design/icons-svg-4.2.1.tgz", + "integrity": "sha1-hjDajrRHGkqr2u19H/apfcss8Fo=" + }, + "@ant-design/maps": { + "version": "0.0.3", + "resolved": "https://registry.npmmirror.com/@ant-design/maps/download/@ant-design/maps-0.0.3.tgz", + "integrity": "sha512-XarzMFcmvLtwaIKgboHWoKkpdrSTGtZU898GmVUP1o3V3eWNfEE+Al3yEV2vauM1OxRbVLc1vAelKVf1nAHtuw==", + "requires": { + "@antv/l7plot": "^0.0.3-alpha.5", + "@antv/util": "^2.0.9", + "react-content-loader": "^5.0.4" + } + }, + "@ant-design/plots": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/@ant-design/plots/download/@ant-design/plots-1.0.7.tgz", + "integrity": "sha512-AeYI1yDZgn7AEma3GLxQiaXsENhkTl1fCr4NUI+4Sxh891XhZ1u2iqVql8DdwfBAdpVaeR+dq3E1bYXUs0uqNQ==", + "requires": { + "@antv/g2plot": "^2.2.11", + "react-content-loader": "^5.0.4" + } + }, + "@ant-design/pro-layout": { + "version": "6.32.3", + "resolved": "https://registry.npmmirror.com/@ant-design/pro-layout/download/@ant-design/pro-layout-6.32.3.tgz", + "integrity": "sha512-O5X0+9gyhz3ArtkDeE+emPjHk1RH44D/+zW9Gb41XccGbcWOp3NGmDvjozdpkL7HRsoQTni3ueN7IGepJUJyOQ==", + "requires": { + "@ant-design/icons": "^4.0.0", + "@ant-design/pro-provider": "1.5.5", + "@ant-design/pro-utils": "1.32.5", + "@babel/runtime": "^7.16.3", + "@umijs/route-utils": "^2.0.1", + "@umijs/ssr-darkreader": "^4.9.44", + "@umijs/use-params": "^1.0.9", + "classnames": "^2.2.6", + "lodash.merge": "^4.6.2", + "omit.js": "^2.0.2", + "path-to-regexp": "2.4.0", + "rc-resize-observer": "^1.1.0", + "rc-util": "^5.0.6", + "swr": "1.1.0", + "unstated-next": "^1.1.0", + "use-json-comparison": "^1.0.3", + "use-media-antd-query": "^1.0.6", + "warning": "^4.0.3" + }, + "dependencies": { + "path-to-regexp": { + "version": "2.4.0", + "resolved": "https://registry.npmmirror.com/path-to-regexp/download/path-to-regexp-2.4.0.tgz", + "integrity": "sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==" + } + } + }, + "@ant-design/pro-provider": { + "version": "1.5.5", + "resolved": "https://registry.npmmirror.com/@ant-design/pro-provider/download/@ant-design/pro-provider-1.5.5.tgz", + "integrity": "sha512-gZzTG+WTNj6xswD/iLSLw8LH+7VNQKYuNcV5KmMqHrSlyimusMaJqBg+pMcD5PVLEe1pdm1lHm72t3qsRWtMNg==", + "requires": { + "@babel/runtime": "^7.16.3", + "rc-util": "^5.0.1", + "swr": "1.1.0" + } + }, + "@ant-design/pro-utils": { + "version": "1.32.5", + "resolved": "https://registry.npmmirror.com/@ant-design/pro-utils/download/@ant-design/pro-utils-1.32.5.tgz", + "integrity": "sha512-cw4h+xrYedKUVcLb2s+bHHRO28z+ZLjEylmSm+S9WlYp0YS7NjHO5HbshYzLdOusz1p9QnKnehcmu4BQTy59HQ==", + "requires": { + "@ant-design/icons": "^4.3.0", + "@ant-design/pro-provider": "1.5.5", + "@babel/runtime": "^7.16.3", + "classnames": "^2.2.6", + "moment": "^2.27.0", + "rc-util": "^5.0.6", + "react-sortable-hoc": "^2.0.0", + "swr": "1.1.0" + } + }, + "@ant-design/react-slick": { + "version": "0.28.4", + "resolved": "https://registry.nlark.com/@ant-design/react-slick/download/@ant-design/react-slick-0.28.4.tgz?cache=0&sync_timestamp=1629256314194&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40ant-design%2Freact-slick%2Fdownload%2F%40ant-design%2Freact-slick-0.28.4.tgz", + "integrity": "sha1-iylrh618euh38qUnuBt+69ndKak=", + "requires": { + "@babel/runtime": "^7.10.4", + "classnames": "^2.2.5", + "json2mq": "^0.2.0", + "lodash": "^4.17.21", + "resize-observer-polyfill": "^1.5.0" + } + }, + "@antv/adjust": { + "version": "0.2.3", + "resolved": "https://registry.npm.taobao.org/@antv/adjust/download/@antv/adjust-0.2.3.tgz", + "integrity": "sha1-w4hKaAwyZMwSXX8qtTmOihwLlAE=", + "requires": { + "@antv/util": "~2.0.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmmirror.com/tslib/download/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@antv/algorithm": { + "version": "0.1.21", + "resolved": "https://registry.npmmirror.com/@antv/algorithm/download/@antv/algorithm-0.1.21.tgz", + "integrity": "sha512-R2BsqMoG2uwrV9778WKhGhVNv05sXRcV316R5capDTOutO9nFyQrsz52/ufvIYqaNY+k0Rv2XjOHWytJRW72Eg==", + "requires": { + "@antv/util": "^2.0.13", + "tslib": "^2.0.0" + } + }, + "@antv/async-hook": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/@antv/async-hook/download/@antv/async-hook-2.1.0.tgz", + "integrity": "sha1-F/V6auXpxVraw836x9RBJYw/mus=", + "requires": { + "async": "^3.1.1" + }, + "dependencies": { + "async": { + "version": "3.2.3", + "resolved": "https://registry.npmmirror.com/async/download/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + } + } + }, + "@antv/attr": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/@antv/attr/download/@antv/attr-0.3.2.tgz", + "integrity": "sha1-5YZrZIcMYvOpwluKYfZUuiv9oFE=", + "requires": { + "@antv/color-util": "^2.0.1", + "@antv/util": "~2.0.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmmirror.com/tslib/download/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@antv/color-util": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/@antv/color-util/download/@antv/color-util-2.0.6.tgz", + "integrity": "sha1-XhKbuc4/K5MJtSECs9ySlDDMwBY=", + "requires": { + "@antv/util": "^2.0.9", + "tslib": "^2.0.3" + } + }, + "@antv/component": { + "version": "0.8.21", + "resolved": "https://registry.npmmirror.com/@antv/component/download/@antv/component-0.8.21.tgz", + "integrity": "sha512-NP19MzOns2tXwH6LT0m3+EzOBPEgWGf3axraCZhQffSHg2RMnuk0LmeDmk6h3ttDe1dgNn01n53v+bQxe+PiDw==", + "requires": { + "@antv/color-util": "^2.0.3", + "@antv/dom-util": "~2.0.1", + "@antv/g-base": "0.5.6", + "@antv/matrix-util": "^3.1.0-beta.1", + "@antv/path-util": "~2.0.7", + "@antv/scale": "~0.3.1", + "@antv/util": "~2.0.0", + "fecha": "~4.2.0", + "tslib": "^2.0.3" + }, + "dependencies": { + "@antv/g-base": { + "version": "0.5.6", + "resolved": "https://registry.npmmirror.com/@antv/g-base/download/@antv/g-base-0.5.6.tgz?cache=0&sync_timestamp=1636459031666&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Fg-base%2Fdownload%2F%40antv%2Fg-base-0.5.6.tgz", + "integrity": "sha1-2W2l+/bF+LBzBydR4V5e7HCzk/w=", + "requires": { + "@antv/event-emitter": "^0.1.1", + "@antv/g-math": "^0.1.6", + "@antv/matrix-util": "^3.1.0-beta.1", + "@antv/path-util": "~2.0.5", + "@antv/util": "~2.0.0", + "@types/d3-timer": "^2.0.0", + "d3-ease": "^1.0.5", + "d3-interpolate": "^1.3.2", + "d3-timer": "^1.0.9", + "detect-browser": "^5.1.0", + "tslib": "^2.0.3" + } + } + } + }, + "@antv/coord": { + "version": "0.3.1", + "resolved": "https://registry.nlark.com/@antv/coord/download/@antv/coord-0.3.1.tgz", + "integrity": "sha1-mC4mHYoeBqGY61GOp6zCDth1oBk=", + "requires": { + "@antv/matrix-util": "^3.1.0-beta.2", + "@antv/util": "~2.0.12", + "tslib": "^2.1.0" + } + }, + "@antv/dom-util": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/@antv/dom-util/download/@antv/dom-util-2.0.3.tgz?cache=0&sync_timestamp=1636458900516&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Fdom-util%2Fdownload%2F%40antv%2Fdom-util-2.0.3.tgz", + "integrity": "sha1-y9FYsciODopNhlhxpZabEZBVT/U=", + "requires": { + "tslib": "^2.0.3" + } + }, + "@antv/event-emitter": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/@antv/event-emitter/download/@antv/event-emitter-0.1.2.tgz", + "integrity": "sha1-oXt8uG5tBxiA3Gv7IydW+IYk7Lw=" + }, + "@antv/g-base": { + "version": "0.5.9", + "resolved": "https://registry.npmmirror.com/@antv/g-base/download/@antv/g-base-0.5.9.tgz?cache=0&sync_timestamp=1636459031666&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Fg-base%2Fdownload%2F%40antv%2Fg-base-0.5.9.tgz", + "integrity": "sha1-WNDhHYUVetoUCPvfJPT0aPQOWc0=", + "requires": { + "@antv/event-emitter": "^0.1.1", + "@antv/g-math": "^0.1.6", + "@antv/matrix-util": "^3.1.0-beta.1", + "@antv/path-util": "~2.0.5", + "@antv/util": "~2.0.0", + "@types/d3-timer": "^2.0.0", + "d3-ease": "^1.0.5", + "d3-interpolate": "^1.3.2", + "d3-timer": "^1.0.9", + "detect-browser": "^5.1.0", + "tslib": "^2.0.3" + } + }, + "@antv/g-canvas": { + "version": "0.5.12", + "resolved": "https://registry.npmmirror.com/@antv/g-canvas/download/@antv/g-canvas-0.5.12.tgz", + "integrity": "sha1-L8QNztaZTwdPIjQeZdVve71Sdfc=", + "requires": { + "@antv/g-base": "^0.5.3", + "@antv/g-math": "^0.1.6", + "@antv/matrix-util": "^3.1.0-beta.1", + "@antv/path-util": "~2.0.5", + "@antv/util": "~2.0.0", + "gl-matrix": "^3.0.0", + "tslib": "^2.0.3" + } + }, + "@antv/g-math": { + "version": "0.1.7", + "resolved": "https://registry.npmmirror.com/@antv/g-math/download/@antv/g-math-0.1.7.tgz", + "integrity": "sha1-bsJ2kmn3zLZ+WBQNVznfdARswE4=", + "requires": { + "@antv/util": "~2.0.0", + "gl-matrix": "^3.0.0" + } + }, + "@antv/g-svg": { + "version": "0.5.6", + "resolved": "https://registry.npmmirror.com/@antv/g-svg/download/@antv/g-svg-0.5.6.tgz", + "integrity": "sha1-cLL6mAxDGzmtPFtLU+NqHWCVfWU=", + "requires": { + "@antv/g-base": "^0.5.3", + "@antv/g-math": "^0.1.6", + "@antv/util": "~2.0.0", + "detect-browser": "^5.0.0", + "tslib": "^2.0.3" + } + }, + "@antv/g-webgpu": { + "version": "0.5.5", + "resolved": "https://registry.nlark.com/@antv/g-webgpu/download/@antv/g-webgpu-0.5.5.tgz", + "integrity": "sha1-AD1BFFPtA+fdkWvWxtsmorU9GZE=", + "requires": { + "@antv/g-webgpu-core": "^0.5.5", + "@antv/g-webgpu-engine": "^0.5.5", + "@webgpu/types": "^0.0.31", + "gl-matrix": "^3.1.0", + "gl-vec2": "^1.3.0", + "hammerjs": "^2.0.8", + "inversify": "^5.0.1", + "inversify-inject-decorators": "^3.1.0", + "polyline-miter-util": "^1.0.1", + "polyline-normals": "^2.0.2", + "probe.gl": "^3.1.1", + "reflect-metadata": "^0.1.13" + } + }, + "@antv/g-webgpu-core": { + "version": "0.5.6", + "resolved": "https://registry.npm.taobao.org/@antv/g-webgpu-core/download/@antv/g-webgpu-core-0.5.6.tgz", + "integrity": "sha1-aM3gtdC0S1eUNxwlI2gvRzTaPGw=", + "requires": { + "eventemitter3": "^4.0.0", + "gl-matrix": "^3.1.0", + "inversify": "^5.0.1", + "inversify-inject-decorators": "^3.1.0", + "probe.gl": "^3.1.1", + "reflect-metadata": "^0.1.13" + } + }, + "@antv/g-webgpu-engine": { + "version": "0.5.6", + "resolved": "https://registry.nlark.com/@antv/g-webgpu-engine/download/@antv/g-webgpu-engine-0.5.6.tgz", + "integrity": "sha1-vnwb+OSxgi1yowLWKANDReBXe70=", + "requires": { + "@antv/g-webgpu-core": "^0.5.6", + "@webgpu/glslang": "^0.0.15", + "@webgpu/types": "^0.0.31", + "gl-matrix": "^3.1.0", + "hammerjs": "^2.0.8", + "inversify": "^5.0.1", + "inversify-inject-decorators": "^3.1.0", + "probe.gl": "^3.1.1", + "reflect-metadata": "^0.1.13", + "regl": "^1.3.11" + } + }, + "@antv/g2": { + "version": "4.1.37", + "resolved": "https://registry.npmmirror.com/@antv/g2/download/@antv/g2-4.1.37.tgz", + "integrity": "sha512-0zXF6Z8MkRo9DukOq29KKIcWzhWZA42xUYC+okBBl8VWuVh46pJ2LCMGjUGQh6k0PLnCGVJOp/Db7fWtqWgWeA==", + "requires": { + "@antv/adjust": "^0.2.1", + "@antv/attr": "^0.3.1", + "@antv/color-util": "^2.0.2", + "@antv/component": "^0.8.19", + "@antv/coord": "^0.3.0", + "@antv/dom-util": "^2.0.2", + "@antv/event-emitter": "~0.1.0", + "@antv/g-base": "~0.5.6", + "@antv/g-canvas": "~0.5.10", + "@antv/g-svg": "~0.5.6", + "@antv/matrix-util": "^3.1.0-beta.3", + "@antv/path-util": "^2.0.15", + "@antv/scale": "^0.3.14", + "@antv/util": "~2.0.5", + "tslib": "^2.0.0" + } + }, + "@antv/g2plot": { + "version": "2.4.5", + "resolved": "https://registry.npmmirror.com/@antv/g2plot/download/@antv/g2plot-2.4.5.tgz", + "integrity": "sha512-djEmNqpJgDI3d06igBoCEzS8sr/Hp8mII2SXrhHn+Fuo8VtwkVIlDSzqIPbKea6CR5KfAynKYa3FoR9lsdzDSw==", + "requires": { + "@antv/event-emitter": "^0.1.2", + "@antv/g2": "^4.1.26", + "d3-hierarchy": "^2.0.0", + "d3-regression": "^1.3.5", + "fmin": "^0.0.2", + "pdfast": "^0.2.0", + "size-sensor": "^1.0.1", + "tslib": "^2.0.3" + } + }, + "@antv/g6": { + "version": "4.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6/download/@antv/g6-4.5.2.tgz", + "integrity": "sha512-ExBQELwDPcixjeza3cOhUCW8ajLvWFJy4mW+J+WiSpvLF44WE1zNAJOWyNXbqPk241WsThyBV3wffvI4HX6zrw==", + "requires": { + "@antv/g6-pc": "0.5.2" + } + }, + "@antv/g6-core": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6-core/download/@antv/g6-core-0.5.2.tgz", + "integrity": "sha512-4aYJXLDV75ezkmlITQh4y60Gasua8VpUQdh1BSHeiKTrYS3H9oY48DKXby+sTNyIzSX+8BA/mGhpNvGgIO46+g==", + "requires": { + "@antv/algorithm": "^0.1.8", + "@antv/dom-util": "^2.0.1", + "@antv/event-emitter": "~0.1.0", + "@antv/g-base": "^0.5.1", + "@antv/g-math": "^0.1.1", + "@antv/matrix-util": "^3.1.0-beta.3", + "@antv/path-util": "^2.0.3", + "@antv/util": "~2.0.5", + "ml-matrix": "^6.5.0", + "tslib": "^2.1.0" + } + }, + "@antv/g6-element": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6-element/download/@antv/g6-element-0.5.2.tgz", + "integrity": "sha512-OYYXl6+sWjxhrxLbLsIwpFX/a+TdCsOMQwApNQ8BDkpF3wlbW33F5cRh8UItrkXN7sxM9Q+5q6epRKWd9fljFw==", + "requires": { + "@antv/g-base": "^0.5.1", + "@antv/g6-core": "0.5.2", + "@antv/util": "~2.0.5" + } + }, + "@antv/g6-pc": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6-pc/download/@antv/g6-pc-0.5.2.tgz", + "integrity": "sha512-Xu45dCbqPqBozkTKEvKGLt41Lyt24bBXyA62Gt4rzhpsGrqPs7s2aBiW9iIaSXC0Jvx8Qe+7ISPtUMbMuxt0oA==", + "requires": { + "@ant-design/colors": "^4.0.5", + "@antv/algorithm": "^0.1.8", + "@antv/dom-util": "^2.0.1", + "@antv/event-emitter": "~0.1.0", + "@antv/g-base": "^0.5.1", + "@antv/g-canvas": "^0.5.2", + "@antv/g-math": "^0.1.1", + "@antv/g-svg": "^0.5.1", + "@antv/g6-core": "0.5.2", + "@antv/g6-element": "0.5.2", + "@antv/g6-plugin": "0.5.2", + "@antv/hierarchy": "^0.6.7", + "@antv/layout": "^0.1.22", + "@antv/matrix-util": "^3.1.0-beta.3", + "@antv/path-util": "^2.0.3", + "@antv/util": "~2.0.5", + "color": "^3.1.3", + "d3-force": "^2.0.1", + "dagre": "^0.8.5", + "insert-css": "^2.0.0", + "ml-matrix": "^6.5.0" + }, + "dependencies": { + "@ant-design/colors": { + "version": "4.0.5", + "resolved": "https://registry.npm.taobao.org/@ant-design/colors/download/@ant-design/colors-4.0.5.tgz", + "integrity": "sha1-19EA11Rcyo9iSVRgSmiS/Ei6Wq4=", + "requires": { + "tinycolor2": "^1.4.1" + } + } + } + }, + "@antv/g6-plugin": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/@antv/g6-plugin/download/@antv/g6-plugin-0.5.2.tgz", + "integrity": "sha512-Pp6gDMNgK2RsWgmwCfzlAw8J5uneXg+Z40cMcKmEqTvwQ1iAdC+lgqW7C8lmd0Jzl8JbuT34UEc4EoVXtjK2gg==", + "requires": { + "@antv/dom-util": "^2.0.2", + "@antv/g-base": "^0.5.1", + "@antv/g-canvas": "^0.5.2", + "@antv/g-svg": "^0.5.2", + "@antv/g6-core": "0.5.2", + "@antv/matrix-util": "^3.1.0-beta.3", + "@antv/scale": "^0.3.4", + "@antv/util": "^2.0.9", + "insert-css": "^2.0.0" + } + }, + "@antv/geo-coord": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/@antv/geo-coord/download/@antv/geo-coord-1.0.8.tgz?cache=0&sync_timestamp=1636451808425&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Fgeo-coord%2Fdownload%2F%40antv%2Fgeo-coord-1.0.8.tgz", + "integrity": "sha1-VFoghTVCU0myHHii38KpskA2lmc=", + "requires": { + "@antv/gl-matrix": "^2.7.1", + "@antv/util": "~2.0.1" + } + }, + "@antv/gl-matrix": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/@antv/gl-matrix/download/@antv/gl-matrix-2.7.1.tgz", + "integrity": "sha1-rLjjf3qz3wE0WrpDcteUK+QuuhQ=" + }, + "@antv/hierarchy": { + "version": "0.6.8", + "resolved": "https://registry.nlark.com/@antv/hierarchy/download/@antv/hierarchy-0.6.8.tgz", + "integrity": "sha1-t3xJCpwt1toYbLrO4OeIe4wbP6Q=", + "requires": { + "@antv/util": "^2.0.7" + } + }, + "@antv/l7": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7/download/@antv/l7-2.6.35.tgz", + "integrity": "sha512-+P2EPBCucw5SuT/U9FLZLziXHKMXhX6uqdGlgekAmOkdZMedEDxbQlsRsFbCJ/W2Mv4aFgx2Yh6t3tQesO6APQ==", + "requires": { + "@antv/l7-component": "^2.6.35", + "@antv/l7-core": "^2.6.35", + "@antv/l7-layers": "^2.6.35", + "@antv/l7-maps": "^2.6.35", + "@antv/l7-scene": "^2.6.35", + "@antv/l7-source": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7" + } + }, + "@antv/l7-component": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-component/download/@antv/l7-component-2.6.35.tgz", + "integrity": "sha512-Q6N2/9028w/HGNkH6estNcpxd4DJJdF6PheUFnY2LGozybYRYGry63jRtY9KpFiEkyTJrax/9KjK7dXs2+ABFA==", + "requires": { + "@antv/l7-core": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "eventemitter3": "^4.0.0", + "inversify": "^5.0.1", + "reflect-metadata": "^0.1.13" + } + }, + "@antv/l7-core": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-core/download/@antv/l7-core-2.6.35.tgz", + "integrity": "sha512-/vzuRayqazYNoN241XwjSv5BNbwze3nWg5Uxd0Vlb1UB4h7SGiQ0LjBCmUlauOT+2HRJ7GE40TjSBmMyjmHU6A==", + "requires": { + "@antv/async-hook": "^2.1.0", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "ajv": "^6.10.2", + "element-resize-event": "^3.0.3", + "eventemitter3": "^4.0.0", + "gl-matrix": "^3.1.0", + "inversify": "^5.0.1", + "inversify-inject-decorators": "^3.1.0", + "l7-tiny-sdf": "^0.0.2", + "l7hammerjs": "^0.0.6", + "lodash": "^4.17.15", + "reflect-metadata": "^0.1.13", + "viewport-mercator-project": "^6.2.1" + } + }, + "@antv/l7-layers": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-layers/download/@antv/l7-layers-2.6.35.tgz", + "integrity": "sha512-oMoMyC3tsCwnFQkfBXMH/Q7v2InBAvS6oO6SrZJM31RwmVsuqKCJINB8Q3AhjDdJDOKc5b1rPIpFyNldIN04tg==", + "requires": { + "@antv/geo-coord": "^1.0.8", + "@antv/l7-core": "^2.6.35", + "@antv/l7-source": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "@mapbox/martini": "^0.2.0", + "@turf/meta": "^6.0.2", + "d3-array": "1", + "d3-color": "^1.4.0", + "d3-scale": "2", + "earcut": "^2.2.1", + "eventemitter3": "^4.0.0", + "extrude-polyline": "^1.0.6", + "gl-matrix": "^3.1.0", + "gl-vec2": "^1.3.0", + "inversify": "^5.0.1", + "lodash": "^4.17.15", + "merge-json-schemas": "1.0.0", + "polyline-miter-util": "^1.0.1", + "reflect-metadata": "^0.1.13" + } + }, + "@antv/l7-map": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-map/download/@antv/l7-map-2.6.35.tgz", + "integrity": "sha512-fWGDDZRrZIqOqFdHw2wd7p32UeQwxnVHZFGgGnN3NPesr9lXYe3lQeKhZKa063jcsCjjZxAIzo6Mzba+/C6b2Q==", + "requires": { + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/unitbezier": "^0.0.0", + "eventemitter3": "^4.0.4", + "lodash": "^4.17.15" + } + }, + "@antv/l7-maps": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-maps/download/@antv/l7-maps-2.6.35.tgz", + "integrity": "sha512-TA4ICd6k93uFmRXc2S9pTvG3rmlyyKP+4w4TC8IkfzCpJ/A4nvWaN67/6dn8QaYBHMjKZcvAikoTkO+jI6f40w==", + "requires": { + "@amap/amap-jsapi-loader": "^0.0.3", + "@antv/l7-core": "^2.6.35", + "@antv/l7-map": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "@types/amap-js-api": "^1.4.6", + "@types/mapbox-gl": "^1.11.2", + "gl-matrix": "^3.1.0", + "inversify": "^5.0.1", + "mapbox-gl": "^1.2.1", + "reflect-metadata": "^0.1.13", + "viewport-mercator-project": "^6.2.1" + } + }, + "@antv/l7-renderer": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-renderer/download/@antv/l7-renderer-2.6.35.tgz", + "integrity": "sha512-wI86mtu1vXX+AtsuV+2JG28bI3AL6FplMXamrScN4zmuQab8mLtLlm/sLt1EmS05+uLvJVLdXRnd7cEDOhxFog==", + "requires": { + "@antv/l7-core": "^2.6.35", + "@babel/runtime": "^7.7.7", + "inversify": "^5.0.1", + "l7regl": "^0.0.16", + "lodash": "^4.17.15", + "reflect-metadata": "^0.1.13" + } + }, + "@antv/l7-scene": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-scene/download/@antv/l7-scene-2.6.35.tgz", + "integrity": "sha512-gyx2euqizsfWYd95Ku+EdA7QURfBabMKAnDCyudOJwKVSfej5Bk+UTLum6rc/R9LW+jTHdq2JEk65A14BgRBEw==", + "requires": { + "@antv/l7-component": "^2.6.35", + "@antv/l7-core": "^2.6.35", + "@antv/l7-layers": "^2.6.35", + "@antv/l7-maps": "^2.6.35", + "@antv/l7-renderer": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "inversify": "^5.0.1", + "mapbox-gl": "^1.2.1", + "reflect-metadata": "^0.1.13" + } + }, + "@antv/l7-source": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-source/download/@antv/l7-source-2.6.35.tgz", + "integrity": "sha512-EBvcEqWC7gUtqD1CYSfcZ28toRu6Go2bnBV4YznyHg8cecI4FI77qYkuG2BhIsSe3e8SWBpqHpz+Hs3nf38tPw==", + "requires": { + "@antv/async-hook": "^2.1.0", + "@antv/l7-core": "^2.6.35", + "@antv/l7-utils": "^2.6.35", + "@babel/runtime": "^7.7.7", + "@mapbox/geojson-rewind": "^0.4.0", + "@turf/helpers": "^6.1.4", + "@turf/invariant": "^6.1.2", + "@turf/meta": "^6.0.2", + "d3-dsv": "^1.1.1", + "d3-hexbin": "^0.2.2", + "eventemitter3": "^4.0.0", + "inversify": "^5.0.1", + "lodash": "^4.17.15", + "reflect-metadata": "^0.1.13", + "supercluster": "^7.0.0" + } + }, + "@antv/l7-utils": { + "version": "2.6.35", + "resolved": "https://registry.npmmirror.com/@antv/l7-utils/download/@antv/l7-utils-2.6.35.tgz", + "integrity": "sha512-hF9CMwuD0ato2toTYB/ctmE0o3VAMgMgtE8jE/Nbr8gQ4PV5cVrJzMNAK6mblbCOH0mNkG4ucFil6nPGLJUMPA==", + "requires": { + "@babel/runtime": "^7.7.7", + "@turf/helpers": "^6.1.4", + "d3-color": "^1.4.0" + } + }, + "@antv/l7plot": { + "version": "0.0.3", + "resolved": "https://registry.npmmirror.com/@antv/l7plot/download/@antv/l7plot-0.0.3.tgz", + "integrity": "sha512-OBu6j6x6tWCCQKebjSXZnwil8cbAjXNbDPSjj4Eo3WAOayIpP3SCiQjZfBR2TGBdXuoYnM1x3jCmSoqUv2rrUQ==", + "requires": { + "@antv/event-emitter": "^0.1.2", + "@antv/l7": "^2.6.25", + "@antv/l7plot-component": "^0.0.3-alpha.5", + "@antv/util": "^2.0.13", + "lodash-es": "^4.17.21", + "topojson-client": "^3.1.0" + } + }, + "@antv/l7plot-component": { + "version": "0.0.3-alpha.6", + "resolved": "https://registry.npmmirror.com/@antv/l7plot-component/download/@antv/l7plot-component-0.0.3-alpha.6.tgz", + "integrity": "sha512-hkKwmVfo/dSIow3xP3kApyDCngudJABZIsOP9MTNh+FSUv6rBBgUWjbj1g+Q0SAn0kXIrkbLc1Nc4ztRmKbjFg==", + "requires": { + "@antv/dom-util": "^2.0.3", + "@antv/util": "^2.0.14" + } + }, + "@antv/layout": { + "version": "0.1.31", + "resolved": "https://registry.npmmirror.com/@antv/layout/download/@antv/layout-0.1.31.tgz", + "integrity": "sha512-iz9i19dOJGiZr5xBWI5sfG+2K3QVMNAGOBrbjWKH2RGLvGpf2TSFySidhz0siDrcQA46cDsjLmGstezQdgeGzA==", + "requires": { + "@antv/g-webgpu": "0.5.5", + "@dagrejs/graphlib": "2.1.4", + "d3-force": "^2.0.1", + "ml-matrix": "^6.5.0" + } + }, + "@antv/matrix-util": { + "version": "3.1.0-beta.3", + "resolved": "https://registry.npmmirror.com/@antv/matrix-util/download/@antv/matrix-util-3.1.0-beta.3.tgz", + "integrity": "sha1-4GHej6e+BGBaFVxpzFzpCC7t3e4=", + "requires": { + "@antv/util": "^2.0.9", + "gl-matrix": "^3.4.3", + "tslib": "^2.0.3" + } + }, + "@antv/path-util": { + "version": "2.0.15", + "resolved": "https://registry.npmmirror.com/@antv/path-util/download/@antv/path-util-2.0.15.tgz", + "integrity": "sha1-pvaR38i3vOW+fwqrtb1hSWQyVjE=", + "requires": { + "@antv/matrix-util": "^3.0.4", + "@antv/util": "^2.0.9", + "tslib": "^2.0.3" + }, + "dependencies": { + "@antv/matrix-util": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/@antv/matrix-util/download/@antv/matrix-util-3.0.4.tgz", + "integrity": "sha1-6hPxWKovtLovuNa2tWHsRn6jrCA=", + "requires": { + "@antv/util": "^2.0.9", + "gl-matrix": "^3.3.0", + "tslib": "^2.0.3" + } + } + } + }, + "@antv/scale": { + "version": "0.3.14", + "resolved": "https://registry.npmmirror.com/@antv/scale/download/@antv/scale-0.3.14.tgz", + "integrity": "sha1-Bxj4ZRNo5cmNtWEgZRMqjIu83kg=", + "requires": { + "@antv/util": "~2.0.3", + "fecha": "~4.2.0", + "tslib": "^2.0.0" + } + }, + "@antv/util": { + "version": "2.0.17", + "resolved": "https://registry.npmmirror.com/@antv/util/download/@antv/util-2.0.17.tgz?cache=0&sync_timestamp=1636447902105&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40antv%2Futil%2Fdownload%2F%40antv%2Futil-2.0.17.tgz", + "integrity": "sha1-6O9CrKeJKBWyKSafPdEMazx1l6k=", + "requires": { + "csstype": "^3.0.8", + "tslib": "^2.0.3" + } + }, + "@antv/x6": { + "version": "1.29.6", + "resolved": "https://registry.npmmirror.com/@antv/x6/download/@antv/x6-1.29.6.tgz", + "integrity": "sha512-orsUj61ZHSNf5iMcIRXZvoIOkQwh3xCeu6iJ/jkzrJ0BZgNUjrhyIBLGZVcfY5LZw14vxK81OH0b8v+cErds3w==", + "requires": { + "csstype": "^3.0.3", + "jquery": "^3.5.1", + "jquery-mousewheel": "^3.1.13", + "lodash-es": "^4.17.15", + "mousetrap": "^1.6.5", + "utility-types": "^3.10.0" + } + }, + "@antv/x6-react-components": { + "version": "1.1.15", + "resolved": "https://registry.npmmirror.com/@antv/x6-react-components/download/@antv/x6-react-components-1.1.15.tgz", + "integrity": "sha512-tXUak5CPuZLIA0fVBSM2vZ+TxxoEGBcokr0J69e7H0G3WIutDf6J6RkNeRGuKvcW8O1Lef1jiBGSLLjlrRXf0g==", + "requires": { + "clamp": "^1.0.1", + "classnames": "^2.2.6", + "rc-dropdown": "^3.0.0-alpha.0", + "rc-util": "^4.15.7", + "react-color": "^2.17.3", + "react-resize-detector": "^6.6.4", + "ua-parser-js": "^0.7.20" + }, + "dependencies": { + "rc-util": { + "version": "4.21.1", + "resolved": "https://registry.npmmirror.com/rc-util/download/rc-util-4.21.1.tgz", + "integrity": "sha1-iGAtDDGFAgqhBT2aHnDqwWG+ywU=", + "requires": { + "add-dom-event-listener": "^1.1.0", + "prop-types": "^15.5.10", + "react-is": "^16.12.0", + "react-lifecycles-compat": "^3.0.4", + "shallowequal": "^1.1.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz", + "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=" + } + } + }, + "@antv/x6-react-shape": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/@antv/x6-react-shape/download/@antv/x6-react-shape-1.6.0.tgz", + "integrity": "sha512-sz5sEYUZq9Cm0DpajbPL21N21gowAeMDHfemGuzaVI5Ud07/JS6393spaopcqljVQAY8r7qL+jxxQnWP8hDIBg==", + "requires": {} + }, + "@antv/xflow": { + "version": "1.0.24", + "resolved": "https://registry.npmmirror.com/@antv/xflow/download/@antv/xflow-1.0.24.tgz", + "integrity": "sha512-LutdilGUuvaPeLp2wlyli4n4dVCCQ6cltbfA6uisWpZY1cADVUKl8FrExJN3lyUtRavoP94uhmJRPTZZT5IUiQ==", + "requires": { + "@antv/layout": "^0.1.22", + "@antv/x6": "^1.29.0", + "@antv/x6-react-components": "^1.1.15", + "@antv/x6-react-shape": "^1.5.2", + "@antv/xflow-core": "1.0.24", + "@antv/xflow-extension": "1.0.24", + "@antv/xflow-hook": "1.0.23" + } + }, + "@antv/xflow-core": { + "version": "1.0.24", + "resolved": "https://registry.npmmirror.com/@antv/xflow-core/download/@antv/xflow-core-1.0.24.tgz", + "integrity": "sha512-imK+I3yQFxAcebhARks+ybKKemWgMbqnZlJp3EdXioqH3meJnuQBKqGhCpvXlHIHdKoWLnGHt/56uu5mJM4wSw==", + "requires": { + "@antv/xflow-hook": "1.0.23", + "classnames": "^2.3.1", + "immer": "^9.0.7", + "mana-common": "^0.1.0", + "mana-syringe": "^0.2.2", + "reflect-metadata": "^0.1.13", + "rxjs": "^6.6.7" + } + }, + "@antv/xflow-extension": { + "version": "1.0.24", + "resolved": "https://registry.npmmirror.com/@antv/xflow-extension/download/@antv/xflow-extension-1.0.24.tgz", + "integrity": "sha512-s8KQfqoRQVlb5M/8znnNSwC4S6LHIQ2LASBFuVTQoxGAAYcLB1iJLZyf3rJUD+pZDzLgB/6FghjhACVIYixNmQ==", + "requires": { + "@antv/xflow-core": "1.0.24", + "@antv/xflow-hook": "1.0.23", + "mana-syringe": "^0.2.2", + "moment": "^2.29.1", + "rc-field-form": "^1.22.0", + "react-color": "2.17.1", + "reflect-metadata": "^0.1.13" + }, + "dependencies": { + "react-color": { + "version": "2.17.1", + "resolved": "https://registry.npmmirror.com/react-color/download/react-color-2.17.1.tgz", + "integrity": "sha1-8RSBHIP12Aob0bgEZsL33cxY2p0=", + "requires": { + "@icons/material": "^0.2.4", + "lodash": "^4.17.11", + "material-colors": "^1.2.1", + "prop-types": "^15.5.10", + "reactcss": "^1.2.0", + "tinycolor2": "^1.4.1" + } + } + } + }, + "@antv/xflow-hook": { + "version": "1.0.23", + "resolved": "https://registry.npmmirror.com/@antv/xflow-hook/download/@antv/xflow-hook-1.0.23.tgz", + "integrity": "sha512-jK+VCF23MZNftdHOEyEA2tM87yQOj4ADC8gGRu9Na2Cx267uLyJVUogjj+Xy+dO7aHqvRto4mfWAwXMAP7hn2g==", + "requires": { + "toposort": "^2.0.2" + } + }, + "@babel/code-frame": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "requires": { + "@babel/highlight": "^7.16.7" + } + }, + "@babel/compat-data": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/compat-data/download/@babel/compat-data-7.16.8.tgz", + "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==" + }, + "@babel/core": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/core/download/@babel/core-7.16.7.tgz", + "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.16.7", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helpers": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "@babel/eslint-parser": { + "version": "7.16.5", + "resolved": "https://registry.npmmirror.com/@babel/eslint-parser/download/@babel/eslint-parser-7.16.5.tgz", + "integrity": "sha512-mUqYa46lgWqHKQ33Q6LNCGp/wPR3eqOYTUixHFsfrSQqRxH0+WOzca75iEjFr5RDGH1dDz622LaHhLOzOuQRUA==", + "requires": { + "eslint-scope": "^5.1.1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1637466831846&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz", + "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz?cache=0&sync_timestamp=1636378420914&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-2.1.0.tgz", + "integrity": "sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=" + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz?cache=0&sync_timestamp=1635237716974&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "@babel/generator": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/generator/download/@babel/generator-7.16.8.tgz", + "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==", + "requires": { + "@babel/types": "^7.16.8", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.16.7.tgz", + "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz", + "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.16.7.tgz", + "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", + "requires": { + "@babel/compat-data": "^7.16.4", + "@babel/helper-validator-option": "^7.16.7", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.16.7.tgz", + "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.16.7.tgz", + "integrity": "sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.3.0.tgz?cache=0&sync_timestamp=1636799716380&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-define-polyfill-provider%2Fdownload%2F%40babel%2Fhelper-define-polyfill-provider-0.3.0.tgz", + "integrity": "sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-environment-visitor/download/@babel/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.16.7.tgz", + "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-function-name/download/@babel/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", + "requires": { + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.16.7.tgz", + "integrity": "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-module-imports": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-module-transforms": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.16.7.tgz", + "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==", + "requires": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.16.7.tgz", + "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.16.8.tgz", + "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-wrap-function": "^7.16.8", + "@babel/types": "^7.16.8" + } + }, + "@babel/helper-replace-supers": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.16.7.tgz", + "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", + "requires": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-simple-access": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.16.7.tgz", + "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "resolved": "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha1-DuM4gHAUfDrgUeSH7KPrsOLouwk=", + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" + }, + "@babel/helper-validator-option": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==" + }, + "@babel/helper-wrap-function": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.16.8.tgz", + "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==", + "requires": { + "@babel/helper-function-name": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8" + } + }, + "@babel/helpers": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/helpers/download/@babel/helpers-7.16.7.tgz", + "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==", + "requires": { + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/highlight": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/highlight/download/@babel/highlight-7.16.7.tgz", + "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", + "requires": { + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.16.8.tgz", + "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==" + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/download/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz", + "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/download/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz", + "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.7" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.16.8.tgz", + "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.16.7.tgz", + "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-class-static-block/download/@babel/plugin-proposal-class-static-block-7.16.7.tgz", + "integrity": "sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.16.7.tgz", + "integrity": "sha512-DoEpnuXK14XV9btI1k8tzNGCutMclpj4yru8aXKoHlVmbO1s+2A+g2+h4JhcjrxkFJqzbymnLG6j/niOf3iFXQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-decorators": "^7.16.7" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.16.7.tgz", + "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.16.7.tgz", + "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.16.7.tgz", + "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-logical-assignment-operators/download/@babel/plugin-proposal-logical-assignment-operators-7.16.7.tgz", + "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz", + "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.16.7.tgz", + "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.16.7.tgz", + "integrity": "sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==", + "requires": { + "@babel/compat-data": "^7.16.4", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.16.7" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.16.7.tgz", + "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.16.7.tgz", + "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.16.7.tgz", + "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/download/@babel/plugin-proposal-private-property-in-object-7.16.7.tgz", + "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/download/@babel/plugin-proposal-unicode-property-regex-7.16.7.tgz", + "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-bigint/download/@babel/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo=", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-decorators/download/@babel/plugin-syntax-decorators-7.16.7.tgz", + "integrity": "sha512-vQ+PxL+srA7g6Rx6I1e15m55gftknl2X8GCUW1JTlkTaXZLJOS0UcaY0eK9jYT7IYf4awn6qwyghVHLDz1WyMw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz?cache=0&sync_timestamp=1618847125283&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-dynamic-import%2Fdownload%2F%40babel%2Fplugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha1-AolkqbqA28CUyRXEh618TnpmRlo=", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-flow/download/@babel/plugin-syntax-flow-7.16.7.tgz", + "integrity": "sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.16.7.tgz", + "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha1-ypHvRjA1MESLkGZSusLp/plB9pk=", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0=", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/download/@babel/plugin-syntax-typescript-7.16.7.tgz", + "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.16.7.tgz", + "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/download/@babel/plugin-transform-async-to-generator-7.16.8.tgz", + "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==", + "requires": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.16.7.tgz", + "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.16.7.tgz", + "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.16.7.tgz", + "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.16.7.tgz", + "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.16.7.tgz", + "integrity": "sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.16.7.tgz", + "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.16.7.tgz", + "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.16.7.tgz", + "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-flow-strip-types/download/@babel/plugin-transform-flow-strip-types-7.16.7.tgz", + "integrity": "sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-flow": "^7.16.7" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.16.7.tgz", + "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.16.7.tgz", + "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", + "requires": { + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.16.7.tgz", + "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.16.7.tgz", + "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.16.7.tgz", + "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==", + "requires": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.16.8.tgz", + "integrity": "sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==", + "requires": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.16.7.tgz", + "integrity": "sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==", + "requires": { + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.16.7.tgz", + "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==", + "requires": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.16.8.tgz", + "integrity": "sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.16.7.tgz", + "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.16.7.tgz", + "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.16.7.tgz", + "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.16.7.tgz", + "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-react-constant-elements": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-constant-elements/download/@babel/plugin-transform-react-constant-elements-7.16.7.tgz", + "integrity": "sha512-lF+cfsyTgwWkcw715J88JhMYJ5GpysYNLhLP1PkvkhTRN7B3e74R/1KsDxFxhRpSn0UUD3IWM4GvdBR2PEbbQQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-display-name/download/@babel/plugin-transform-react-display-name-7.16.7.tgz", + "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/download/@babel/plugin-transform-react-jsx-7.16.7.tgz", + "integrity": "sha512-8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-jsx": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/download/@babel/plugin-transform-react-jsx-development-7.16.7.tgz", + "integrity": "sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==", + "requires": { + "@babel/plugin-transform-react-jsx": "^7.16.7" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-pure-annotations/download/@babel/plugin-transform-react-pure-annotations-7.16.7.tgz", + "integrity": "sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.16.7.tgz", + "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==", + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.16.7.tgz", + "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-runtime/download/@babel/plugin-transform-runtime-7.16.8.tgz", + "integrity": "sha512-6Kg2XHPFnIarNweZxmzbgYnnWsXxkx9WQUVk2sksBRL80lBC1RAQV3wQagWxdCHiYHqPN+oenwNIuttlYgIbQQ==", + "requires": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.16.7.tgz", + "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.16.7.tgz", + "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.16.7.tgz", + "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.16.7.tgz", + "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/download/@babel/plugin-transform-typeof-symbol-7.16.7.tgz", + "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typescript/download/@babel/plugin-transform-typescript-7.16.7.tgz", + "integrity": "sha512-Hzx1lvBtOCWuCEwMmYOfpQpO7joFeXLgoPuzZZBtTxXqSqUGUubvFGZv2ygo1tB5Bp9q6PXV3H0E/kf7KM0RLA==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-typescript": "^7.16.7" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/download/@babel/plugin-transform-unicode-escapes-7.16.7.tgz", + "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.16.7.tgz", + "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/preset-env": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/preset-env/download/@babel/preset-env-7.16.8.tgz", + "integrity": "sha512-9rNKgVCdwHb3z1IlbMyft6yIXIeP3xz6vWvGaLHrJThuEIqWfHb0DNBH9VuTgnDfdbUDhkmkvMZS/YMCtP7Elg==", + "requires": { + "@babel/compat-data": "^7.16.8", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-async-generator-functions": "^7.16.8", + "@babel/plugin-proposal-class-properties": "^7.16.7", + "@babel/plugin-proposal-class-static-block": "^7.16.7", + "@babel/plugin-proposal-dynamic-import": "^7.16.7", + "@babel/plugin-proposal-export-namespace-from": "^7.16.7", + "@babel/plugin-proposal-json-strings": "^7.16.7", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", + "@babel/plugin-proposal-numeric-separator": "^7.16.7", + "@babel/plugin-proposal-object-rest-spread": "^7.16.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", + "@babel/plugin-proposal-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.7", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@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.16.7", + "@babel/plugin-transform-async-to-generator": "^7.16.8", + "@babel/plugin-transform-block-scoped-functions": "^7.16.7", + "@babel/plugin-transform-block-scoping": "^7.16.7", + "@babel/plugin-transform-classes": "^7.16.7", + "@babel/plugin-transform-computed-properties": "^7.16.7", + "@babel/plugin-transform-destructuring": "^7.16.7", + "@babel/plugin-transform-dotall-regex": "^7.16.7", + "@babel/plugin-transform-duplicate-keys": "^7.16.7", + "@babel/plugin-transform-exponentiation-operator": "^7.16.7", + "@babel/plugin-transform-for-of": "^7.16.7", + "@babel/plugin-transform-function-name": "^7.16.7", + "@babel/plugin-transform-literals": "^7.16.7", + "@babel/plugin-transform-member-expression-literals": "^7.16.7", + "@babel/plugin-transform-modules-amd": "^7.16.7", + "@babel/plugin-transform-modules-commonjs": "^7.16.8", + "@babel/plugin-transform-modules-systemjs": "^7.16.7", + "@babel/plugin-transform-modules-umd": "^7.16.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8", + "@babel/plugin-transform-new-target": "^7.16.7", + "@babel/plugin-transform-object-super": "^7.16.7", + "@babel/plugin-transform-parameters": "^7.16.7", + "@babel/plugin-transform-property-literals": "^7.16.7", + "@babel/plugin-transform-regenerator": "^7.16.7", + "@babel/plugin-transform-reserved-words": "^7.16.7", + "@babel/plugin-transform-shorthand-properties": "^7.16.7", + "@babel/plugin-transform-spread": "^7.16.7", + "@babel/plugin-transform-sticky-regex": "^7.16.7", + "@babel/plugin-transform-template-literals": "^7.16.7", + "@babel/plugin-transform-typeof-symbol": "^7.16.7", + "@babel/plugin-transform-unicode-escapes": "^7.16.7", + "@babel/plugin-transform-unicode-regex": "^7.16.7", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.8", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.20.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmmirror.com/@babel/preset-modules/download/@babel/preset-modules-0.1.5.tgz", + "integrity": "sha1-75Odbn8miCfhhBY43G/5VRXhFdk=", + "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.16.7", + "resolved": "https://registry.npmmirror.com/@babel/preset-react/download/@babel/preset-react-7.16.7.tgz", + "integrity": "sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-transform-react-display-name": "^7.16.7", + "@babel/plugin-transform-react-jsx": "^7.16.7", + "@babel/plugin-transform-react-jsx-development": "^7.16.7", + "@babel/plugin-transform-react-pure-annotations": "^7.16.7" + } + }, + "@babel/preset-typescript": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/preset-typescript/download/@babel/preset-typescript-7.16.7.tgz", + "integrity": "sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-transform-typescript": "^7.16.7" + } + }, + "@babel/runtime": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/runtime/download/@babel/runtime-7.16.7.tgz", + "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/runtime-corejs3": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/runtime-corejs3/download/@babel/runtime-corejs3-7.16.7.tgz", + "integrity": "sha512-MiYR1yk8+TW/CpOD0CyX7ve9ffWTKqLk/L6pk8TPl0R8pNi+1pFY8fH9yET55KlvukQ4PAWfXsGr2YHVjcI4Pw==", + "requires": { + "core-js-pure": "^3.19.0", + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.16.7", + "resolved": "https://registry.npmmirror.com/@babel/template/download/@babel/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/traverse": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/traverse/download/@babel/traverse-7.16.8.tgz", + "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==", + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.16.8", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.16.8", + "@babel/types": "^7.16.8", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.16.8", + "resolved": "https://registry.npmmirror.com/@babel/types/download/@babel/types-7.16.8.tgz", + "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==", + "requires": { + "@babel/helper-validator-identifier": "^7.16.7", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@bcoe/v8-coverage/download/@bcoe/v8-coverage-0.2.3.tgz", + "integrity": "sha1-daLotRy3WKdVPWgEpZMteqznXDk=" + }, + "@csstools/normalize.css": { + "version": "12.0.0", + "resolved": "https://registry.nlark.com/@csstools/normalize.css/download/@csstools/normalize.css-12.0.0.tgz", + "integrity": "sha1-qVg6dcPxUGZ3cfMLYNnwWUc+YsQ=" + }, + "@ctrl/tinycolor": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/@ctrl/tinycolor/download/@ctrl/tinycolor-3.4.0.tgz", + "integrity": "sha1-w8WuVDyJfKqcKmhjC+01W+X5mQ8=" + }, + "@dagrejs/graphlib": { + "version": "2.1.4", + "resolved": "https://registry.npm.taobao.org/@dagrejs/graphlib/download/@dagrejs/graphlib-2.1.4.tgz", + "integrity": "sha1-hscOTwc4RKL0raJUyMe4imvazbE=", + "requires": { + "lodash": "^4.11.1" + } + }, + "@emotion/babel-plugin": { + "version": "11.7.2", + "resolved": "https://registry.npmmirror.com/@emotion/babel-plugin/download/@emotion/babel-plugin-11.7.2.tgz", + "integrity": "sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ==", + "requires": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/runtime": "^7.13.10", + "@emotion/hash": "^0.8.0", + "@emotion/memoize": "^0.7.5", + "@emotion/serialize": "^1.0.2", + "babel-plugin-macros": "^2.6.1", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.0.13" + }, + "dependencies": { + "babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.nlark.com/babel-plugin-macros/download/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha1-D5WKfMZVax5lNERl2ZERoeXhATg=", + "requires": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-6.0.0.tgz", + "integrity": "sha1-2k/uhTxS9rHmk19BwaL8UL1KmYI=", + "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" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz", + "integrity": "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=" + } + } + }, + "@emotion/cache": { + "version": "11.7.1", + "resolved": "https://registry.npmmirror.com/@emotion/cache/download/@emotion/cache-11.7.1.tgz", + "integrity": "sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==", + "requires": { + "@emotion/memoize": "^0.7.4", + "@emotion/sheet": "^1.1.0", + "@emotion/utils": "^1.0.0", + "@emotion/weak-memoize": "^0.2.5", + "stylis": "4.0.13" + } + }, + "@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmmirror.com/@emotion/hash/download/@emotion/hash-0.8.0.tgz", + "integrity": "sha1-u7/2iXj+/b5ozLUzvIy+HRr7VBM=" + }, + "@emotion/is-prop-valid": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/@emotion/is-prop-valid/download/@emotion/is-prop-valid-1.1.1.tgz", + "integrity": "sha512-bW1Tos67CZkOURLc0OalnfxtSXQJMrAMV0jZTVGJUPSOd4qgjF3+tTD5CwJM13PHA8cltGW1WGbbvV9NpvUZPw==", + "requires": { + "@emotion/memoize": "^0.7.4" + } + }, + "@emotion/memoize": { + "version": "0.7.5", + "resolved": "https://registry.npm.taobao.org/@emotion/memoize/download/@emotion/memoize-0.7.5.tgz", + "integrity": "sha1-LED4FEmk5VTp/GOWkQ7UhD7CvlA=" + }, + "@emotion/react": { + "version": "11.7.1", + "resolved": "https://registry.npmmirror.com/@emotion/react/download/@emotion/react-11.7.1.tgz", + "integrity": "sha512-DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw==", + "requires": { + "@babel/runtime": "^7.13.10", + "@emotion/cache": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/sheet": "^1.1.0", + "@emotion/utils": "^1.0.0", + "@emotion/weak-memoize": "^0.2.5", + "hoist-non-react-statics": "^3.3.1" + } + }, + "@emotion/serialize": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/@emotion/serialize/download/@emotion/serialize-1.0.2.tgz", + "integrity": "sha1-d8shoFccn2jrZgh3VKZfqXv82WU=", + "requires": { + "@emotion/hash": "^0.8.0", + "@emotion/memoize": "^0.7.4", + "@emotion/unitless": "^0.7.5", + "@emotion/utils": "^1.0.0", + "csstype": "^3.0.2" + } + }, + "@emotion/sheet": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@emotion/sheet/download/@emotion/sheet-1.1.0.tgz", + "integrity": "sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==" + }, + "@emotion/styled": { + "version": "11.6.0", + "resolved": "https://registry.npmmirror.com/@emotion/styled/download/@emotion/styled-11.6.0.tgz", + "integrity": "sha512-mxVtVyIOTmCAkFbwIp+nCjTXJNgcz4VWkOYQro87jE2QBTydnkiYusMrRGFtzuruiGK4dDaNORk4gH049iiQuw==", + "requires": { + "@babel/runtime": "^7.13.10", + "@emotion/babel-plugin": "^11.3.0", + "@emotion/is-prop-valid": "^1.1.1", + "@emotion/serialize": "^1.0.2", + "@emotion/utils": "^1.0.0" + } + }, + "@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmmirror.com/@emotion/unitless/download/@emotion/unitless-0.7.5.tgz", + "integrity": "sha1-dyESkcGQCnALinjPr9oxYNdpSe0=" + }, + "@emotion/utils": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/@emotion/utils/download/@emotion/utils-1.0.0.tgz", + "integrity": "sha1-q+BqgxYLEFcIFskTmQJFgTov1q8=" + }, + "@emotion/weak-memoize": { + "version": "0.2.5", + "resolved": "https://registry.npmmirror.com/@emotion/weak-memoize/download/@emotion/weak-memoize-0.2.5.tgz", + "integrity": "sha1-ju2YLi7m9/TkTCU+EpYpgHke/UY=" + }, + "@eslint/eslintrc": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/download/@eslint/eslintrc-1.0.5.tgz", + "integrity": "sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.2.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/argparse/download/argparse-2.0.1.tgz", + "integrity": "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=" + }, + "globals": { + "version": "13.12.0", + "resolved": "https://registry.npmmirror.com/globals/download/globals-13.12.0.tgz", + "integrity": "sha1-TXM3YDBCMKAILtluIeXFZfiYCJ4=", + "requires": { + "type-fest": "^0.20.2" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/download/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.20.2.tgz", + "integrity": "sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=" + } + } + }, + "@humanwhocodes/config-array": { + "version": "0.9.2", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.9.2.tgz?cache=0&sync_timestamp=1635880739605&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40humanwhocodes%2Fconfig-array%2Fdownload%2F%40humanwhocodes%2Fconfig-array-0.9.2.tgz", + "integrity": "sha1-aL5VxzcCMAnfxf4kXVEYG7ZHaRQ=", + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/object-schema/download/@humanwhocodes/object-schema-1.2.1.tgz?cache=0&sync_timestamp=1635880763805&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40humanwhocodes%2Fobject-schema%2Fdownload%2F%40humanwhocodes%2Fobject-schema-1.2.1.tgz", + "integrity": "sha1-tSBSnsIdjllFoYUd/Rwy6U45/0U=" + }, + "@icons/material": { + "version": "0.2.4", + "resolved": "https://registry.npm.taobao.org/@icons/material/download/@icons/material-0.2.4.tgz", + "integrity": "sha1-6QyfcXaLNzbnbX3WeD/Gwq+oi8g=", + "requires": {} + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/@istanbuljs/load-nyc-config/download/@istanbuljs/load-nyc-config-1.1.0.tgz", + "integrity": "sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0=", + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmmirror.com/camelcase/download/camelcase-5.3.1.tgz?cache=0&sync_timestamp=1636945191390&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcamelcase%2Fdownload%2Fcamelcase-5.3.1.tgz", + "integrity": "sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=" + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "integrity": "sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-5.0.0.tgz", + "integrity": "sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-4.1.0.tgz", + "integrity": "sha1-o0KLtwiLOmApL2aRkni3wpetTwc=", + "requires": { + "p-limit": "^2.2.0" + } + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.nlark.com/@istanbuljs/schema/download/@istanbuljs/schema-0.1.3.tgz", + "integrity": "sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg=" + }, + "@jest/console": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/@jest/console/download/@jest/console-27.4.2.tgz", + "integrity": "sha512-xknHThRsPB/To1FUbi6pCe43y58qFC03zfb6R7fDb/FfC7k2R3i1l+izRBJf8DI46KhYGRaF14Eo9A3qbBoixg==", + "requires": { + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.4.2", + "jest-util": "^27.4.2", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/@jest/core/download/@jest/core-27.4.5.tgz", + "integrity": "sha512-3tm/Pevmi8bDsgvo73nX8p/WPng6KWlCyScW10FPEoN1HU4pwI83tJ3TsFvi1FfzsjwUlMNEPowgb/rPau/LTQ==", + "requires": { + "@jest/console": "^27.4.2", + "@jest/reporters": "^27.4.5", + "@jest/test-result": "^27.4.2", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^27.4.2", + "jest-config": "^27.4.5", + "jest-haste-map": "^27.4.5", + "jest-message-util": "^27.4.2", + "jest-regex-util": "^27.4.0", + "jest-resolve": "^27.4.5", + "jest-resolve-dependencies": "^27.4.5", + "jest-runner": "^27.4.5", + "jest-runtime": "^27.4.5", + "jest-snapshot": "^27.4.5", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "jest-watcher": "^27.4.2", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "27.4.4", + "resolved": "https://registry.npmmirror.com/@jest/environment/download/@jest/environment-27.4.4.tgz", + "integrity": "sha512-q+niMx7cJgt/t/b6dzLOh4W8Ef/8VyKG7hxASK39jakijJzbFBGpptx3RXz13FFV7OishQ9lTbv+dQ5K3EhfDQ==", + "requires": { + "@jest/fake-timers": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "jest-mock": "^27.4.2" + } + }, + "@jest/fake-timers": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/@jest/fake-timers/download/@jest/fake-timers-27.4.2.tgz", + "integrity": "sha512-f/Xpzn5YQk5adtqBgvw1V6bF8Nx3hY0OIRRpCvWcfPl0EAjdqWPdhH3t/3XpiWZqtjIEHDyMKP9ajpva1l4Zmg==", + "requires": { + "@jest/types": "^27.4.2", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.4.2", + "jest-mock": "^27.4.2", + "jest-util": "^27.4.2" + } + }, + "@jest/globals": { + "version": "27.4.4", + "resolved": "https://registry.npmmirror.com/@jest/globals/download/@jest/globals-27.4.4.tgz", + "integrity": "sha512-bqpqQhW30BOreXM8bA8t8JbOQzsq/WnPTnBl+It3UxAD9J8yxEAaBEylHx1dtBapAr/UBk8GidXbzmqnee8tYQ==", + "requires": { + "@jest/environment": "^27.4.4", + "@jest/types": "^27.4.2", + "expect": "^27.4.2" + } + }, + "@jest/reporters": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/@jest/reporters/download/@jest/reporters-27.4.5.tgz", + "integrity": "sha512-3orsG4vi8zXuBqEoy2LbnC1kuvkg1KQUgqNxmxpQgIOQEPeV0onvZu+qDQnEoX8qTQErtqn/xzcnbpeTuOLSiA==", + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.4.2", + "@jest/test-result": "^27.4.2", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^27.4.5", + "jest-resolve": "^27.4.5", + "jest-util": "^27.4.2", + "jest-worker": "^27.4.5", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/istanbul-lib-instrument/download/istanbul-lib-instrument-4.0.3.tgz?cache=0&sync_timestamp=1635386650079&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fistanbul-lib-instrument%2Fdownload%2Fistanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha1-hzxv/4l0UBGCIndGlqPyiQLXfB0=", + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/source-map": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/@jest/source-map/download/@jest/source-map-27.4.0.tgz", + "integrity": "sha512-Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ==", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "@jest/test-result": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/@jest/test-result/download/@jest/test-result-27.4.2.tgz", + "integrity": "sha512-kr+bCrra9jfTgxHXHa2UwoQjxvQk3Am6QbpAiJ5x/50LW8llOYrxILkqY0lZRW/hu8FXesnudbql263+EW9iNA==", + "requires": { + "@jest/console": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/@jest/test-sequencer/download/@jest/test-sequencer-27.4.5.tgz", + "integrity": "sha512-n5woIn/1v+FT+9hniymHPARA9upYUmfi5Pw9ewVwXCDlK4F5/Gkees9v8vdjGdAIJ2MPHLHodiajLpZZanWzEQ==", + "requires": { + "@jest/test-result": "^27.4.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.4.5", + "jest-runtime": "^27.4.5" + } + }, + "@jest/transform": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/@jest/transform/download/@jest/transform-27.4.5.tgz", + "integrity": "sha512-PuMet2UlZtlGzwc6L+aZmR3I7CEBpqadO03pU40l2RNY2fFJ191b9/ITB44LNOhVtsyykx0OZvj0PCyuLm7Eew==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.4.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.4.5", + "jest-regex-util": "^27.4.0", + "jest-util": "^27.4.2", + "micromatch": "^4.0.4", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/@jest/types/download/@jest/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@mapbox/geojson-area": { + "version": "0.2.2", + "resolved": "https://registry.npm.taobao.org/@mapbox/geojson-area/download/@mapbox/geojson-area-0.2.2.tgz", + "integrity": "sha1-GNeBSqNr8j+7zDefjiaiKSfevxA=", + "requires": { + "wgs84": "0.0.0" + } + }, + "@mapbox/geojson-rewind": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/@mapbox/geojson-rewind/download/@mapbox/geojson-rewind-0.4.1.tgz", + "integrity": "sha1-NX15MArbf+x8HwkVEpiLymRY8Gg=", + "requires": { + "@mapbox/geojson-area": "0.2.2", + "concat-stream": "~1.6.0", + "minimist": "^1.2.5", + "sharkdown": "^0.1.0" + } + }, + "@mapbox/geojson-types": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/@mapbox/geojson-types/download/@mapbox/geojson-types-1.0.2.tgz", + "integrity": "sha1-muz2QssA6rEIClfE+UmmW0pYRtY=" + }, + "@mapbox/jsonlint-lines-primitives": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/@mapbox/jsonlint-lines-primitives/download/@mapbox/jsonlint-lines-primitives-2.0.2.tgz", + "integrity": "sha1-zlblOfg1UrWNENZy6k1vya3HsjQ=" + }, + "@mapbox/mapbox-gl-supported": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@mapbox/mapbox-gl-supported/download/@mapbox/mapbox-gl-supported-1.5.0.tgz?cache=0&sync_timestamp=1635877306261&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40mapbox%2Fmapbox-gl-supported%2Fdownload%2F%40mapbox%2Fmapbox-gl-supported-1.5.0.tgz", + "integrity": "sha1-9gtqVaXY5e6Qg0fSzkJQsVED3I4=", + "requires": {} + }, + "@mapbox/martini": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/@mapbox/martini/download/@mapbox/martini-0.2.0.tgz", + "integrity": "sha1-GvcCEfvplKvybjfxOIymnALNQ7Q=" + }, + "@mapbox/point-geometry": { + "version": "0.1.0", + "resolved": "https://registry.npm.taobao.org/@mapbox/point-geometry/download/@mapbox/point-geometry-0.1.0.tgz", + "integrity": "sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI=" + }, + "@mapbox/tiny-sdf": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/@mapbox/tiny-sdf/download/@mapbox/tiny-sdf-1.2.5.tgz?cache=0&sync_timestamp=1634602366708&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40mapbox%2Ftiny-sdf%2Fdownload%2F%40mapbox%2Ftiny-sdf-1.2.5.tgz", + "integrity": "sha1-QkxiCpZEKyBAJVK+cKf2KoQHzFk=" + }, + "@mapbox/unitbezier": { + "version": "0.0.0", + "resolved": "https://registry.npmmirror.com/@mapbox/unitbezier/download/@mapbox/unitbezier-0.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40mapbox%2Funitbezier%2Fdownload%2F%40mapbox%2Funitbezier-0.0.0.tgz", + "integrity": "sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4=" + }, + "@mapbox/vector-tile": { + "version": "1.3.1", + "resolved": "https://registry.npm.taobao.org/@mapbox/vector-tile/download/@mapbox/vector-tile-1.3.1.tgz", + "integrity": "sha1-06dMkEAtBuiexm3knsgX/1NAlmY=", + "requires": { + "@mapbox/point-geometry": "~0.1.0" + } + }, + "@mapbox/whoots-js": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/@mapbox/whoots-js/download/@mapbox/whoots-js-3.1.0.tgz", + "integrity": "sha1-SXxnoc71DRokWbpg8xXkSNKth/4=" + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz", + "integrity": "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz", + "integrity": "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz?cache=0&sync_timestamp=1625769855088&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.walk%2Fdownload%2F%40nodelib%2Ffs.walk-1.2.8.tgz", + "integrity": "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.4", + "resolved": "https://registry.npmmirror.com/@pmmmwh/react-refresh-webpack-plugin/download/@pmmmwh/react-refresh-webpack-plugin-0.5.4.tgz", + "integrity": "sha512-zZbZeHQDnoTlt2AF+diQT0wsSXpvWiaIOZwBRdltNFhG1+I3ozyaw7U/nBiUwyJ0D+zwdXp0E3bWOl38Ag2BMw==", + "requires": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.8.1", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.7.3.tgz", + "integrity": "sha1-UwL4FpAxc1ImVECS5kmB91F1A4M=" + } + } + }, + "@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmmirror.com/@polka/url/download/@polka/url-1.0.0-next.21.tgz", + "integrity": "sha1-XeWiOFo1MJQn9gEZkrVEUU1VmqE=", + "dev": true + }, + "@probe.gl/env": { + "version": "3.5.0", + "resolved": "https://registry.npmmirror.com/@probe.gl/env/download/@probe.gl/env-3.5.0.tgz", + "integrity": "sha512-YdlpZZshhyYxvWDBmZ5RIW2pTR14Pw4p9czMlt/v7F6HbFzWfAdmH7q6xVwFRYxUpQLwhWensWyv4aFysiWl4g==", + "requires": { + "@babel/runtime": "^7.0.0" + } + }, + "@probe.gl/log": { + "version": "3.5.0", + "resolved": "https://registry.npmmirror.com/@probe.gl/log/download/@probe.gl/log-3.5.0.tgz", + "integrity": "sha512-nW/qz2X1xY08WU/TsmJP6/6IPNcaY5fS/vLjpC4ahJuE2Mezga4hGM/R2X5JWE/nkPc+BsC5GnAnD13rwAxS7g==", + "requires": { + "@babel/runtime": "^7.0.0", + "@probe.gl/env": "3.5.0" + } + }, + "@probe.gl/stats": { + "version": "3.5.0", + "resolved": "https://registry.npmmirror.com/@probe.gl/stats/download/@probe.gl/stats-3.5.0.tgz", + "integrity": "sha512-IH2M+F3c8HR1DTroBARePUFG7wIewumtKA0UFqx51Z7S4hKrD60wFbpMmg0AcF4FvHAXMBoC+kYi1UKW9XbAOw==", + "requires": { + "@babel/runtime": "^7.0.0" + } + }, + "@qixian.cs/path-to-regexp": { + "version": "6.1.0", + "resolved": "https://registry.npm.taobao.org/@qixian.cs/path-to-regexp/download/@qixian.cs/path-to-regexp-6.1.0.tgz", + "integrity": "sha1-a4StAVljMqupX6KdLnAQRpjNXEU=" + }, + "@reduxjs/toolkit": { + "version": "1.7.1", + "resolved": "https://registry.npmmirror.com/@reduxjs/toolkit/download/@reduxjs/toolkit-1.7.1.tgz", + "integrity": "sha512-wXwXYjBVz/ItxB7SMzEAMmEE/FBiY1ze18N+VVVX7NtVbRUrdOGKhpQMHivIJfkbJvSdLUU923a/yAagJQzY0Q==", + "requires": { + "immer": "^9.0.7", + "redux": "^4.1.2", + "redux-thunk": "^2.4.1", + "reselect": "^4.1.5" + } + }, + "@rollup/plugin-babel": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/@rollup/plugin-babel/download/@rollup/plugin-babel-5.3.0.tgz", + "integrity": "sha1-nLHFFG3daklorZbyCcUMYvkvmHk=", + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + } + }, + "@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmmirror.com/@rollup/plugin-node-resolve/download/@rollup/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha1-gqpZOXopzU4TJIsQbmpKGIA2KmA=", + "requires": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + } + }, + "@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/@rollup/plugin-replace/download/@rollup/plugin-replace-2.4.2.tgz", + "integrity": "sha1-otU5MU+8d8JEhY+qUjASglBoUQo=", + "requires": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + } + }, + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/download/@rollup/pluginutils-3.1.0.tgz", + "integrity": "sha1-cGtFJO5tyLEDs8mVUz5a1oDAK5s=", + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmmirror.com/@types/estree/download/@types/estree-0.0.39.tgz", + "integrity": "sha1-4Xfmme4bjCLSMXTKqnQiZEOJUJ8=" + } + } + }, + "@rushstack/eslint-patch": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@rushstack/eslint-patch/download/@rushstack/eslint-patch-1.1.0.tgz", + "integrity": "sha1-f2mCVKrfkh5I3ajAprMEAmuKkyM=" + }, + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmmirror.com/@sindresorhus/is/download/@sindresorhus/is-0.14.0.tgz", + "integrity": "sha1-n7OjzzEyMoFR81PeRjLgHlIQK+o=", + "dev": true + }, + "@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.nlark.com/@sinonjs/commons/download/@sinonjs/commons-1.8.3.tgz", + "integrity": "sha1-OALd0hpQqUm2ch3dcto25n5/Gy0=", + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmmirror.com/@sinonjs/fake-timers/download/@sinonjs/fake-timers-8.1.0.tgz?cache=0&sync_timestamp=1635949844583&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40sinonjs%2Ffake-timers%2Fdownload%2F%40sinonjs%2Ffake-timers-8.1.0.tgz", + "integrity": "sha1-P9wrbLWJNbIb+40WJesTAEhDFuc=", + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmmirror.com/@surma/rollup-plugin-off-main-thread/download/@surma/rollup-plugin-off-main-thread-2.2.3.tgz?cache=0&sync_timestamp=1636350261941&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40surma%2Frollup-plugin-off-main-thread%2Fdownload%2F%40surma%2Frollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "requires": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-add-jsx-attribute/download/@svgr/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha1-ge9hlHuyaOudUFI0RvnGOPs1WQY=" + }, + "@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-remove-jsx-attribute/download/@svgr/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha1-ayx3DJXIdGVP1eHV70dbeKCpYu8=" + }, + "@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-remove-jsx-empty-expression/download/@svgr/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha1-JWIaiRXtetcNps6j0KbbwuqTPv0=" + }, + "@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-replace-jsx-attribute-value/download/@svgr/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha1-CyIfxX+fzRDpH+IZ4s0N0DFFqJc=" + }, + "@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-svg-dynamic-title/download/@svgr/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha1-E5tUbdDDGGtuXbT+/CbLC66nKdc=" + }, + "@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-svg-em-dimensions/download/@svgr/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha1-ZUP2lSZjKhM85cq6uWXe6uoiNKA=" + }, + "@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-transform-react-native-svg/download/@svgr/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha1-AL+aenPxytOUjNqx+N+3dHUPjIA=" + }, + "@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-plugin-transform-svg-component/download/@svgr/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha1-WDpeKhk+IU2i86/rC56NMlASa0o=" + }, + "@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/babel-preset/download/@svgr/babel-preset-5.5.0.tgz", + "integrity": "sha1-ivVPPgqK3XseKw/NWogsVTk98yc=", + "requires": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + } + }, + "@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/core/download/@svgr/core-5.5.0.tgz", + "integrity": "sha1-gugmuHFdcQgxIP6PJJLsfXh0pXk=", + "requires": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + } + }, + "@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/hast-util-to-babel-ast/download/@svgr/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha1-XuUqnCUz9z5j+PIrd5+TzUMqVGE=", + "requires": { + "@babel/types": "^7.12.6" + } + }, + "@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/plugin-jsx/download/@svgr/plugin-jsx-5.5.0.tgz", + "integrity": "sha1-GqjNeYodtxc6wENGbXtSI2s2kAA=", + "requires": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + } + }, + "@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/plugin-svgo/download/@svgr/plugin-svgo-5.5.0.tgz", + "integrity": "sha1-AtpV2FMgVJMk4gHHsuU79DH8wkY=", + "requires": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + } + }, + "@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/@svgr/webpack/download/@svgr/webpack-5.5.0.tgz", + "integrity": "sha1-quhY7lefX6jObDFm71bGobOBtkA=", + "requires": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + } + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@szmarczak/http-timer/download/@szmarczak/http-timer-1.1.2.tgz", + "integrity": "sha1-sWZeLEYaLNkvTBu/UNVFTeDUtCE=", + "dev": true, + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "@testing-library/dom": { + "version": "8.11.1", + "resolved": "https://registry.npmmirror.com/@testing-library/dom/download/@testing-library/dom-8.11.1.tgz", + "integrity": "sha512-3KQDyx9r0RKYailW2MiYrSSKEfH0GTkI51UGEvJenvcoDoeRYs0PZpi2SXqtnMClQvCqdtTTpOfFETDTVADpAg==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^4.2.0", + "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" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "aria-query": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/aria-query/download/aria-query-5.0.0.tgz", + "integrity": "sha1-IQwhqvRpYT7oyaYsf4ZSXgWNtSw=" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/jest-dom": { + "version": "5.16.1", + "resolved": "https://registry.npmmirror.com/@testing-library/jest-dom/download/@testing-library/jest-dom-5.16.1.tgz", + "integrity": "sha512-ajUJdfDIuTCadB79ukO+0l8O+QwN0LiSxDaYUTI4LndbbUsGi6rWU1SCexXzBA2NSjlVB9/vbkasQIL3tmPBjw==", + "requires": { + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "aria-query": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/aria-query/download/aria-query-5.0.0.tgz", + "integrity": "sha1-IQwhqvRpYT7oyaYsf4ZSXgWNtSw=" + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-3.0.0.tgz", + "integrity": "sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/react": { + "version": "12.1.2", + "resolved": "https://registry.npmmirror.com/@testing-library/react/download/@testing-library/react-12.1.2.tgz", + "integrity": "sha1-8byaRZQ0YfoqWYu0WX3xrgRM/HY=", + "requires": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.0.0" + } + }, + "@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmmirror.com/@testing-library/user-event/download/@testing-library/user-event-13.5.0.tgz", + "integrity": "sha1-addwB/HhJNVTFKK3P9IEszOxMpU=", + "requires": { + "@babel/runtime": "^7.12.5" + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/@tootallnate/once/download/@tootallnate/once-1.1.2.tgz?cache=0&sync_timestamp=1632734062895&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40tootallnate%2Fonce%2Fdownload%2F%40tootallnate%2Fonce-1.1.2.tgz", + "integrity": "sha1-zLkURTYBeaBOf+av94wA/8Hur4I=" + }, + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/@trysound/sax/download/@trysound/sax-0.2.0.tgz", + "integrity": "sha1-zMqrdYr1Z2Hre/N69vA/Mm3XmK0=" + }, + "@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.nlark.com/@turf/helpers/download/@turf/helpers-6.5.0.tgz", + "integrity": "sha1-95rwlL1rjOftK9PgiahJPubK6C4=" + }, + "@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.nlark.com/@turf/invariant/download/@turf/invariant-6.5.0.tgz", + "integrity": "sha1-lwr8mIAj45x8yrI0G9Bped3HRj8=", + "requires": { + "@turf/helpers": "^6.5.0" + } + }, + "@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/@turf/meta/download/@turf/meta-6.5.0.tgz", + "integrity": "sha1-tyXDZTyfQyEz6qBNNCH35R4EGMo=", + "requires": { + "@turf/helpers": "^6.5.0" + } + }, + "@types/acorn": { + "version": "4.0.6", + "resolved": "https://registry.npmmirror.com/@types/acorn/download/@types/acorn-4.0.6.tgz?cache=0&sync_timestamp=1637264183030&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Facorn%2Fdownload%2F%40types%2Facorn-4.0.6.tgz", + "integrity": "sha1-1hylSAMArEGn2XPdW4TQpZEVSiI=", + "requires": { + "@types/estree": "*" + } + }, + "@types/amap-js-api": { + "version": "1.4.10", + "resolved": "https://registry.npmmirror.com/@types/amap-js-api/download/@types/amap-js-api-1.4.10.tgz", + "integrity": "sha1-NcPsgYYKlW80u9Umcrqc8vRwS14=" + }, + "@types/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmmirror.com/@types/aria-query/download/@types/aria-query-4.2.2.tgz", + "integrity": "sha1-7U4K2SMGpwT5+xMqDPz3dIbb4rw=" + }, + "@types/babel__core": { + "version": "7.1.18", + "resolved": "https://registry.npmmirror.com/@types/babel__core/download/@types/babel__core-7.1.18.tgz", + "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==", + "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.npmmirror.com/@types/babel__generator/download/@types/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.npmmirror.com/@types/babel__template/download/@types/babel__template-7.4.1.tgz?cache=0&sync_timestamp=1637265215105&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fbabel__template%2Fdownload%2F%40types%2Fbabel__template-7.4.1.tgz", + "integrity": "sha1-PRpI/Z1sDt/Vby/1eNrtSPNsiWk=", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmmirror.com/@types/babel__traverse/download/@types/babel__traverse-7.14.2.tgz?cache=0&sync_timestamp=1637264329699&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.14.2.tgz", + "integrity": "sha1-/81HC7s/i/MEgWePtVAieMqDOkM=", + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmmirror.com/@types/body-parser/download/@types/body-parser-1.19.2.tgz?cache=0&sync_timestamp=1637265034342&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fbody-parser%2Fdownload%2F%40types%2Fbody-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmmirror.com/@types/bonjour/download/@types/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "requires": { + "@types/node": "*" + } + }, + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmmirror.com/@types/connect/download/@types/connect-3.4.35.tgz?cache=0&sync_timestamp=1637264533049&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fconnect%2Fdownload%2F%40types%2Fconnect-3.4.35.tgz", + "integrity": "sha1-X89q5EXkAh0fwiGaSHPMc6O7KtE=", + "requires": { + "@types/node": "*" + } + }, + "@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmmirror.com/@types/connect-history-api-fallback/download/@types/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha1-0feooJ0O1aV67lrpwYq5uAMgXa4=", + "requires": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "@types/d3-timer": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@types/d3-timer/download/@types/d3-timer-2.0.1.tgz", + "integrity": "sha1-/7ZiDSkGJPNyaqNiwMiktEyNcgA=" + }, + "@types/eslint": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@types/eslint/download/@types/eslint-7.29.0.tgz", + "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==", + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.2", + "resolved": "https://registry.npmmirror.com/@types/eslint-scope/download/@types/eslint-scope-3.7.2.tgz", + "integrity": "sha512-TzgYCWoPiTeRg6RQYgtuW7iODtVoKu3RVL72k3WohqhjfaOLK5Mg2T4Tg1o2bSfu0vPkoI48wdQFv5b/Xe04wQ==", + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "0.0.50", + "resolved": "https://registry.npmmirror.com/@types/estree/download/@types/estree-0.0.50.tgz", + "integrity": "sha1-Hgyqk2TT/M0pMcPtlv2+ql1MyoM=" + }, + "@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmmirror.com/@types/express/download/@types/express-4.17.13.tgz", + "integrity": "sha1-p24plXKJmbq1GjP6vOHXBaNwkDQ=", + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.27", + "resolved": "https://registry.npmmirror.com/@types/express-serve-static-core/download/@types/express-serve-static-core-4.17.27.tgz", + "integrity": "sha512-e/sVallzUTPdyOTiqi8O8pMdBBphscvI6E4JYaKlja4Lm+zh7UFSSdW5VMkRbhDtmrONqOUHOXRguPsDckzxNA==", + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/geojson": { + "version": "7946.0.8", + "resolved": "https://registry.npmmirror.com/@types/geojson/download/@types/geojson-7946.0.8.tgz?cache=0&sync_timestamp=1637265317590&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fgeojson%2Fdownload%2F%40types%2Fgeojson-7946.0.8.tgz", + "integrity": "sha1-MHRK/bOF4pReIvOwM/iX92sfEso=" + }, + "@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmmirror.com/@types/graceful-fs/download/@types/graceful-fs-4.1.5.tgz", + "integrity": "sha1-If+6DZjaQ1DbZIkfkqnl2zzbThU=", + "requires": { + "@types/node": "*" + } + }, + "@types/history": { + "version": "4.7.11", + "resolved": "https://registry.npmmirror.com/@types/history/download/@types/history-4.7.11.tgz", + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", + "dev": true + }, + "@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/@types/hoist-non-react-statics/download/@types/hoist-non-react-statics-3.3.1.tgz?cache=0&sync_timestamp=1637265727153&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fhoist-non-react-statics%2Fdownload%2F%40types%2Fhoist-non-react-statics-3.3.1.tgz", + "integrity": "sha1-ESSq/lEYy1kZd66xzqrtEHDrA58=", + "requires": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/@types/html-minifier-terser/download/@types/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "@types/http-proxy": { + "version": "1.17.8", + "resolved": "https://registry.npmmirror.com/@types/http-proxy/download/@types/http-proxy-1.17.8.tgz", + "integrity": "sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==", + "requires": { + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/@types/istanbul-lib-coverage/download/@types/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.npmmirror.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha1-wUwk8Y6oGQwRjudWK3/5mjZVJoY=", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/@types/istanbul-reports/download/@types/istanbul-reports-3.0.1.tgz", + "integrity": "sha1-kVP+mLuivVZaY63ZQ21vDX+EaP8=", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/@types/jest/download/@types/jest-27.4.0.tgz", + "integrity": "sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==", + "requires": { + "jest-diff": "^27.0.0", + "pretty-format": "^27.0.0" + } + }, + "@types/js-cookie": { + "version": "2.2.7", + "resolved": "https://registry.npmmirror.com/@types/js-cookie/download/@types/js-cookie-2.2.7.tgz", + "integrity": "sha1-ImqeMWgINaYYjoh/OYjmDATT9qM=" + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmmirror.com/@types/json-schema/download/@types/json-schema-7.0.9.tgz?cache=0&sync_timestamp=1637266119442&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fjson-schema%2Fdownload%2F%40types%2Fjson-schema-7.0.9.tgz", + "integrity": "sha1-l+3JA36gw4WFMgsolk3eOznkZg0=" + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.nlark.com/@types/json5/download/@types/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + }, + "@types/lodash": { + "version": "4.14.178", + "resolved": "https://registry.npmmirror.com/@types/lodash/download/@types/lodash-4.14.178.tgz", + "integrity": "sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw==", + "dev": true + }, + "@types/mapbox-gl": { + "version": "1.13.2", + "resolved": "https://registry.npmmirror.com/@types/mapbox-gl/download/@types/mapbox-gl-1.13.2.tgz", + "integrity": "sha1-0glZ0CucoXoqMkQ4fx2nY5ku0R0=", + "requires": { + "@types/geojson": "*" + } + }, + "@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmmirror.com/@types/mime/download/@types/mime-1.3.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fmime%2Fdownload%2F%40types%2Fmime-1.3.2.tgz", + "integrity": "sha1-k+Jb+e51/g/YC1lLxP6w6GIRG1o=" + }, + "@types/node": { + "version": "16.11.17", + "resolved": "https://registry.npmmirror.com/@types/node/download/@types/node-16.11.17.tgz", + "integrity": "sha512-C1vTZME8cFo8uxY2ui41xcynEotVkczIVI5AjLmy5pkpBv/FtG+jhtOlfcPysI8VRVwoOMv6NJm44LGnoMSWkw==" + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/@types/parse-json/download/@types/parse-json-4.0.0.tgz?cache=0&sync_timestamp=1637269948744&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fparse-json%2Fdownload%2F%40types%2Fparse-json-4.0.0.tgz", + "integrity": "sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=" + }, + "@types/prettier": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/@types/prettier/download/@types/prettier-2.4.2.tgz?cache=0&sync_timestamp=1637269803025&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fprettier%2Fdownload%2F%40types%2Fprettier-2.4.2.tgz", + "integrity": "sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA==" + }, + "@types/prop-types": { + "version": "15.7.4", + "resolved": "https://registry.npmmirror.com/@types/prop-types/download/@types/prop-types-15.7.4.tgz", + "integrity": "sha1-/PcgXCXf95Xuea8eMNosl5CAjxE=" + }, + "@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmmirror.com/@types/q/download/@types/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmmirror.com/@types/qs/download/@types/qs-6.9.7.tgz?cache=0&sync_timestamp=1637268454704&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fqs%2Fdownload%2F%40types%2Fqs-6.9.7.tgz", + "integrity": "sha1-Y7t9Bn2xB8weRXwwO8JdUR/r9ss=" + }, + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@types/range-parser/download/@types/range-parser-1.2.4.tgz?cache=0&sync_timestamp=1637268455466&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Frange-parser%2Fdownload%2F%40types%2Frange-parser-1.2.4.tgz", + "integrity": "sha1-zWZ7z90CUhOq+3ylkVqTJZCs3Nw=" + }, + "@types/react": { + "version": "17.0.38", + "resolved": "https://registry.npmmirror.com/@types/react/download/@types/react-17.0.38.tgz", + "integrity": "sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "17.0.11", + "resolved": "https://registry.npmmirror.com/@types/react-dom/download/@types/react-dom-17.0.11.tgz", + "integrity": "sha512-f96K3k+24RaLGVu/Y2Ng3e1EbZ8/cVJvypZWd7cy0ofCBaf2lcM46xNhycMZ2xGwbBjRql7hOlZ+e2WlJ5MH3Q==", + "requires": { + "@types/react": "*" + } + }, + "@types/react-redux": { + "version": "7.1.22", + "resolved": "https://registry.npmmirror.com/@types/react-redux/download/@types/react-redux-7.1.22.tgz", + "integrity": "sha512-GxIA1kM7ClU73I6wg9IRTVwSO9GS+SAKZKe0Enj+82HMU6aoESFU2HNAdNi3+J53IaOHPiUfT3kSG4L828joDQ==", + "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.18", + "resolved": "https://registry.npmmirror.com/@types/react-router/download/@types/react-router-5.1.18.tgz", + "integrity": "sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g==", + "dev": true, + "requires": { + "@types/history": "^4.7.11", + "@types/react": "*" + } + }, + "@types/resize-observer-browser": { + "version": "0.1.6", + "resolved": "https://registry.npmmirror.com/@types/resize-observer-browser/download/@types/resize-observer-browser-0.1.6.tgz", + "integrity": "sha1-2ObC+DDiZQ3Ab+dEZEcv9ktUowI=" + }, + "@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmmirror.com/@types/resolve/download/@types/resolve-1.17.1.tgz?cache=0&sync_timestamp=1637269963703&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fresolve%2Fdownload%2F%40types%2Fresolve-1.17.1.tgz", + "integrity": "sha1-Ov1q2JZ8d+Q3bFmKgt3Vj0bsRdY=", + "requires": { + "@types/node": "*" + } + }, + "@types/retry": { + "version": "0.12.1", + "resolved": "https://registry.npmmirror.com/@types/retry/download/@types/retry-0.12.1.tgz?cache=0&sync_timestamp=1637270516824&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fretry%2Fdownload%2F%40types%2Fretry-0.12.1.tgz", + "integrity": "sha1-2PHA0Nwjr61twWqemToIZXdLQGU=" + }, + "@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmmirror.com/@types/scheduler/download/@types/scheduler-0.16.2.tgz?cache=0&sync_timestamp=1637270013832&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fscheduler%2Fdownload%2F%40types%2Fscheduler-0.16.2.tgz", + "integrity": "sha1-GmL4lSVyPd4kuhsBsJK/XfitTTk=" + }, + "@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmmirror.com/@types/serve-index/download/@types/serve-index-1.9.1.tgz?cache=0&sync_timestamp=1637271402680&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fserve-index%2Fdownload%2F%40types%2Fserve-index-1.9.1.tgz", + "integrity": "sha1-G16FNwoZLAHsbOxHNc8pFzN6Yng=", + "requires": { + "@types/express": "*" + } + }, + "@types/serve-static": { + "version": "1.13.10", + "resolved": "https://registry.npmmirror.com/@types/serve-static/download/@types/serve-static-1.13.10.tgz", + "integrity": "sha1-9eDOh5fS18xevtpIpSyWxPpHqNk=", + "requires": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmmirror.com/@types/sockjs/download/@types/sockjs-0.3.33.tgz", + "integrity": "sha1-Vw06C5msmVNg4xNv1gRRE7G9I28=", + "requires": { + "@types/node": "*" + } + }, + "@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@types/stack-utils/download/@types/stack-utils-2.0.1.tgz", + "integrity": "sha1-IPGClPeX8iCbX2XI47XI6CYdEnw=" + }, + "@types/testing-library__jest-dom": { + "version": "5.14.2", + "resolved": "https://registry.npmmirror.com/@types/testing-library__jest-dom/download/@types/testing-library__jest-dom-5.14.2.tgz", + "integrity": "sha512-vehbtyHUShPxIa9SioxDwCvgxukDMH//icJG90sXQBUm5lJOHLT5kNeU9tnivhnA/TkOFMzGIXN2cTc4hY8/kg==", + "requires": { + "@types/jest": "*" + } + }, + "@types/trusted-types": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/@types/trusted-types/download/@types/trusted-types-2.0.2.tgz?cache=0&sync_timestamp=1637274283760&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Ftrusted-types%2Fdownload%2F%40types%2Ftrusted-types-2.0.2.tgz", + "integrity": "sha1-/CWtmUO8rBHM64Fo208nXg5y51Y=" + }, + "@types/ws": { + "version": "8.2.2", + "resolved": "https://registry.npmmirror.com/@types/ws/download/@types/ws-8.2.2.tgz", + "integrity": "sha512-NOn5eIcgWLOo6qW8AcuLZ7G8PycXu0xTxxkS6Q18VWFxgPUSOwV0pBj2a/4viNZVu25i7RIB7GttdkAIUUXOOg==", + "requires": { + "@types/node": "*" + } + }, + "@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmmirror.com/@types/yargs/download/@types/yargs-16.0.4.tgz", + "integrity": "sha1-JqrZjdLCo45CEIbqmtQrnlFkKXc=", + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "20.2.1", + "resolved": "https://registry.npmmirror.com/@types/yargs-parser/download/@types/yargs-parser-20.2.1.tgz?cache=0&sync_timestamp=1637270733678&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fyargs-parser%2Fdownload%2F%40types%2Fyargs-parser-20.2.1.tgz", + "integrity": "sha1-O5ziSJkZ2eT+pDm3aRarw0st8Sk=" + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-5.8.1.tgz", + "integrity": "sha512-wTZ5oEKrKj/8/366qTM366zqhIKAp6NCMweoRONtfuC07OAU9nVI2GZZdqQ1qD30WAAtcPdkH+npDwtRFdp4Rw==", + "requires": { + "@typescript-eslint/experimental-utils": "5.8.1", + "@typescript-eslint/scope-manager": "5.8.1", + "debug": "^4.3.2", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "dependencies": { + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/ignore/download/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-5.8.1.tgz", + "integrity": "sha512-fbodVnjIDU4JpeXWRDsG5IfIjYBxEvs8EBO8W1+YVdtrc2B9ppfof5sZhVEDOtgTfFHnYQJDI8+qdqLYO4ceww==", + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.8.1", + "@typescript-eslint/types": "5.8.1", + "@typescript-eslint/typescript-estree": "5.8.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1637466831846&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz", + "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz?cache=0&sync_timestamp=1635237716974&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=" + } + } + }, + "@typescript-eslint/parser": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/download/@typescript-eslint/parser-5.8.1.tgz", + "integrity": "sha512-K1giKHAjHuyB421SoXMXFHHVI4NdNY603uKw92++D3qyxSeYvC10CBJ/GE5Thpo4WTUvu1mmJI2/FFkz38F2Gw==", + "requires": { + "@typescript-eslint/scope-manager": "5.8.1", + "@typescript-eslint/types": "5.8.1", + "@typescript-eslint/typescript-estree": "5.8.1", + "debug": "^4.3.2" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-5.8.1.tgz", + "integrity": "sha512-DGxJkNyYruFH3NIZc3PwrzwOQAg7vvgsHsHCILOLvUpupgkwDZdNq/cXU3BjF4LNrCsVg0qxEyWasys5AiJ85Q==", + "requires": { + "@typescript-eslint/types": "5.8.1", + "@typescript-eslint/visitor-keys": "5.8.1" + } + }, + "@typescript-eslint/types": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/download/@typescript-eslint/types-5.8.1.tgz", + "integrity": "sha512-L/FlWCCgnjKOLefdok90/pqInkomLnAcF9UAzNr+DSqMC3IffzumHTQTrINXhP1gVp9zlHiYYjvozVZDPleLcA==" + }, + "@typescript-eslint/typescript-estree": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-5.8.1.tgz", + "integrity": "sha512-26lQ8l8tTbG7ri7xEcCFT9ijU5Fk+sx/KRRyyzCv7MQ+rZZlqiDPtMKWLC8P7o+dtCnby4c+OlxuX1tp8WfafQ==", + "requires": { + "@typescript-eslint/types": "5.8.1", + "@typescript-eslint/visitor-keys": "5.8.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.8.1", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-5.8.1.tgz", + "integrity": "sha512-SWgiWIwocK6NralrJarPZlWdr0hZnj5GXHIgfdm8hNkyKvpeQuFyLP6YjSIe9kf3YBIfU6OHSZLYkQ+smZwtNg==", + "requires": { + "@typescript-eslint/types": "5.8.1", + "eslint-visitor-keys": "^3.0.0" + } + }, + "@umijs/route-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/@umijs/route-utils/download/@umijs/route-utils-2.0.4.tgz?cache=0&sync_timestamp=1637049115090&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40umijs%2Froute-utils%2Fdownload%2F%40umijs%2Froute-utils-2.0.4.tgz", + "integrity": "sha512-YWxGHZhIMLrsiydu8P/v2SNuuqRfRbLaZ5mc1K9snTf6yQ+TEGFrpU8uLxp2iRBijMBD0CFyrWNuhlB/bvluUQ==", + "requires": { + "@qixian.cs/path-to-regexp": "^6.1.0", + "fast-deep-equal": "^3.1.3", + "lodash.isequal": "^4.5.0", + "memoize-one": "^5.1.1" + }, + "dependencies": { + "memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmmirror.com/memoize-one/download/memoize-one-5.2.1.tgz?cache=0&sync_timestamp=1634697208428&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmemoize-one%2Fdownload%2Fmemoize-one-5.2.1.tgz", + "integrity": "sha1-gzeqPEM1WBg57AHD1ZQJDOvo8A4=" + } + } + }, + "@umijs/ssr-darkreader": { + "version": "4.9.44", + "resolved": "https://registry.npmmirror.com/@umijs/ssr-darkreader/download/@umijs/ssr-darkreader-4.9.44.tgz", + "integrity": "sha512-HppwdNiHI4hA/WP29HGLr1c1Hn2+g+EDzcHrXXaad1ftfxQc52/yljDB4cX8yna8l3WcGw7CgVer7/uHRyYNMg==" + }, + "@umijs/use-params": { + "version": "1.0.9", + "resolved": "https://registry.npmmirror.com/@umijs/use-params/download/@umijs/use-params-1.0.9.tgz", + "integrity": "sha512-QlN0RJSBVQBwLRNxbxjQ5qzqYIGn+K7USppMoIOVlf7fxXHsnQZ2bEsa6Pm74bt6DVQxpUE8HqvdStn6Y9FV1w==", + "requires": {} + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.11.1.tgz", + "integrity": "sha1-K/12fq4aaZb0Mv9+jX/HVnnAtqc=", + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/floating-point-hex-parser/download/@webassemblyjs/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha1-9sYacF8P16auyqToGY8j2dwXnk8=" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.11.1.tgz?cache=0&sync_timestamp=1625473346773&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40webassemblyjs%2Fhelper-api-error%2Fdownload%2F%40webassemblyjs%2Fhelper-api-error-1.11.1.tgz", + "integrity": "sha1-GmMZLYeI5cASgAump6RscFKI/RY=" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.11.1.tgz", + "integrity": "sha1-gyqQDrREiEzemnytRn+BUA9eWrU=" + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-numbers/download/@webassemblyjs/helper-numbers-1.11.1.tgz", + "integrity": "sha1-ZNgdohn7u6HjvRv8dPboxOEKYq4=", + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha1-8ygkHkHnsZnQsgwY6IQpxEMyleE=" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-section/download/@webassemblyjs/helper-wasm-section-1.11.1.tgz", + "integrity": "sha1-Ie4GWntjXzGec48N1zv72igcCXo=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.11.1.tgz?cache=0&sync_timestamp=1625473413840&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40webassemblyjs%2Fieee754%2Fdownload%2F%40webassemblyjs%2Fieee754-1.11.1.tgz", + "integrity": "sha1-ljkp6bvQVwnn4SJDoJkYCBKZJhQ=", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.11.1.tgz", + "integrity": "sha1-zoFLRVdOk9drrh+yZEq5zdlSeqU=", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.11.1.tgz", + "integrity": "sha1-0fi3ZDaefG5rrjUOhU3smlnwo/8=" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.11.1.tgz", + "integrity": "sha1-rSBuv0v5WgWM6YgKjAksXeyBk9Y=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.11.1.tgz", + "integrity": "sha1-hsXqMEhJdZt9iMR6MvTwOa48j3Y=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-opt/download/@webassemblyjs/wasm-opt-1.11.1.tgz", + "integrity": "sha1-ZXtMIgL0zzs0X4pMZGHIwkGJhfI=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.11.1.tgz", + "integrity": "sha1-hspzRTT0F+m9PGfHocddi+QfsZk=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.11.1.tgz", + "integrity": "sha1-0Mc77ajuxUJvEK6O9VzuXnCEwvA=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webgpu/glslang": { + "version": "0.0.15", + "resolved": "https://registry.npm.taobao.org/@webgpu/glslang/download/@webgpu/glslang-0.0.15.tgz", + "integrity": "sha1-9cyvYBUkHmF19LkJBrBT+ISD0fI=" + }, + "@webgpu/types": { + "version": "0.0.31", + "resolved": "https://registry.npmmirror.com/@webgpu/types/download/@webgpu/types-0.0.31.tgz", + "integrity": "sha1-wF7G5gAkvxg28xI27NdnepaaKiw=" + }, + "@xobotyi/scrollbar-width": { + "version": "1.9.5", + "resolved": "https://registry.npm.taobao.org/@xobotyi/scrollbar-width/download/@xobotyi/scrollbar-width-1.9.5.tgz", + "integrity": "sha1-gCJKaRknL0Bbh5E8oTuSkpvfPE0=" + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/@xtuc/ieee754/download/@xtuc/ieee754-1.2.0.tgz", + "integrity": "sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/@xtuc/long/download/@xtuc/long-4.2.2.tgz", + "integrity": "sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=" + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz", + "integrity": "sha1-wLZ4+zLWD8EhnHhNaoJv44Wut5o=" + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.nlark.com/accepts/download/accepts-1.3.7.tgz", + "integrity": "sha1-UxvHJlF6OytB+FACHGzBXqq1B80=", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "8.7.0", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==" + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/acorn-globals/download/acorn-globals-6.0.0.tgz", + "integrity": "sha1-Rs3Tnw+P8IqHZhm1X1rIptx3C0U=", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz", + "integrity": "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=" + } + } + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmmirror.com/acorn-import-assertions/download/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha1-uitZOc5iwjjbbZPYHJsRGym4Vek=", + "requires": {} + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz?cache=0&sync_timestamp=1625793240297&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-jsx%2Fdownload%2Facorn-jsx-5.3.2.tgz", + "integrity": "sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=", + "requires": {} + }, + "acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npm.taobao.org/acorn-node/download/acorn-node-1.8.2.tgz", + "integrity": "sha1-EUyV1kU55T3t4j3oudlt98euKvg=", + "requires": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz", + "integrity": "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=" + } + } + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1630916588767&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz", + "integrity": "sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=" + }, + "add-dom-event-listener": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/add-dom-event-listener/download/add-dom-event-listener-1.1.0.tgz", + "integrity": "sha1-apLbOg3Qq8JU4JXA8dwUrLuq4xA=", + "requires": { + "object-assign": "4.x" + } + }, + "address": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz", + "integrity": "sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY=" + }, + "adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/adjust-sourcemap-loader/download/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha1-/EoP0ID30QRx8wpzIPJVYK3ijJk=", + "requires": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + } + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npm.taobao.org/agent-base/download/agent-base-6.0.2.tgz", + "integrity": "sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c=", + "requires": { + "debug": "4" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/aggregate-error/download/aggregate-error-3.1.0.tgz?cache=0&sync_timestamp=1618681544430&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Faggregate-error%2Fdownload%2Faggregate-error-3.1.0.tgz", + "integrity": "sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo=", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmmirror.com/ajv/download/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-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/ajv-formats/download/ajv-formats-2.1.1.tgz?cache=0&sync_timestamp=1636312243183&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-formats%2Fdownload%2Fajv-formats-2.1.1.tgz", + "integrity": "sha1-bmaUAGWet0lzu/LjMycYCgmWtSA=", + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-3.5.2.tgz", + "integrity": "sha1-MfKdpatuANHC0yms97WSlhTVAU0=", + "requires": {} + }, + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/align-text/download/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "requires": { + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/amdefine/download/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" + }, + "ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/ansi-align/download/ansi-align-3.0.1.tgz?cache=0&sync_timestamp=1632743770230&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fansi-align%2Fdownload%2Fansi-align-3.0.1.tgz", + "integrity": "sha1-DN8S4RGs53OobpofrRIlxDyxmlk=", + "dev": true, + "requires": { + "string-width": "^4.1.0" + } + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/ansi-colors/download/ansi-colors-4.1.1.tgz", + "integrity": "sha1-y7muJWv3UK8eqzRPIpqif+lLo0g=" + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-escapes%2Fdownload%2Fansi-escapes-4.3.2.tgz", + "integrity": "sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=", + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.nlark.com/ansi-html-community/download/ansi-html-community-0.0.8.tgz", + "integrity": "sha1-afvE1sy+OD+XNpNK40w/gpDxv0E=" + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=", + "requires": { + "color-convert": "^1.9.0" + } + }, + "ansicolors": { + "version": "0.2.1", + "resolved": "https://registry.npm.taobao.org/ansicolors/download/ansicolors-0.2.1.tgz?cache=0&sync_timestamp=1610107434317&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansicolors%2Fdownload%2Fansicolors-0.2.1.tgz", + "integrity": "sha1-vgiVmQl7dKXJxKhKDNvNtivYeu8=" + }, + "antd": { + "version": "4.18.3", + "resolved": "https://registry.npmmirror.com/antd/download/antd-4.18.3.tgz", + "integrity": "sha512-EoCMY8pFKX9IVAc0Bdi3DWR03IIOHa6mTZALOGjrKbPm3kbrcvoBTCNXq4BMeVA1dZbMeoBw46peeJLyMp2avw==", + "requires": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons": "^4.7.0", + "@ant-design/react-slick": "~0.28.1", + "@babel/runtime": "^7.12.5", + "@ctrl/tinycolor": "^3.4.0", + "array-tree-filter": "^2.1.0", + "classnames": "^2.2.6", + "copy-to-clipboard": "^3.2.0", + "lodash": "^4.17.21", + "memoize-one": "^6.0.0", + "moment": "^2.25.3", + "rc-cascader": "~3.0.0-alpha.3", + "rc-checkbox": "~2.3.0", + "rc-collapse": "~3.1.0", + "rc-dialog": "~8.6.0", + "rc-drawer": "~4.4.2", + "rc-dropdown": "~3.2.0", + "rc-field-form": "~1.22.0-2", + "rc-image": "~5.2.5", + "rc-input-number": "~7.3.0", + "rc-mentions": "~1.6.1", + "rc-menu": "~9.2.1", + "rc-motion": "^2.4.4", + "rc-notification": "~4.5.7", + "rc-pagination": "~3.1.9", + "rc-picker": "~2.5.17", + "rc-progress": "~3.2.1", + "rc-rate": "~2.9.0", + "rc-resize-observer": "^1.1.2", + "rc-select": "~14.0.0-alpha.15", + "rc-slider": "~9.7.4", + "rc-steps": "~4.1.0", + "rc-switch": "~3.2.0", + "rc-table": "~7.22.2", + "rc-tabs": "~11.10.0", + "rc-textarea": "~0.3.0", + "rc-tooltip": "~5.1.1", + "rc-tree": "~5.3.5", + "rc-tree-select": "~5.0.0-alpha.2", + "rc-trigger": "^5.2.10", + "rc-upload": "~4.3.0", + "rc-util": "^5.14.0", + "scroll-into-view-if-needed": "^2.2.25" + } + }, + "antd-dayjs-webpack-plugin": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/antd-dayjs-webpack-plugin/download/antd-dayjs-webpack-plugin-1.0.6.tgz", + "integrity": "sha1-fZi8tRQiJIuM1KMuNSoEJaO/+jo=", + "dev": true, + "requires": {} + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz", + "integrity": "sha1-wFV8CWrzLxBhmPT04qODU343hxY=", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/arg/download/arg-5.0.1.tgz", + "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/argparse/download/argparse-1.0.10.tgz", + "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmmirror.com/aria-query/download/aria-query-4.2.2.tgz", + "integrity": "sha1-DSymyazrVriXfp/tau1+FbvS+Ds=", + "requires": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + } + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-2.1.2.tgz", + "integrity": "sha1-JO+AoowaiTYX4hSbDG0NeIKTsJk=" + }, + "array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmmirror.com/array-includes/download/array-includes-3.1.4.tgz", + "integrity": "sha1-9bSTFix2DzU5Yx8AW6K7Rqy0W6k=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + } + }, + "array-tree-filter": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/array-tree-filter/download/array-tree-filter-2.1.0.tgz", + "integrity": "sha1-hzrAD+yDdJ8lWsjdCDgUtPYykZA=" + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/array-union/download/array-union-2.1.0.tgz?cache=0&sync_timestamp=1614624423985&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray-union%2Fdownload%2Farray-union-2.1.0.tgz", + "integrity": "sha1-t5hCCtvrHego2ErNii4j0+/oXo0=" + }, + "array.prototype.flat": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/array.prototype.flat/download/array.prototype.flat-1.2.5.tgz?cache=0&sync_timestamp=1633109738357&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Farray.prototype.flat%2Fdownload%2Farray.prototype.flat-1.2.5.tgz", + "integrity": "sha1-B+CXXYS7x8SM0YedYJ5oJZjTPhM=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + } + }, + "array.prototype.flatmap": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/array.prototype.flatmap/download/array.prototype.flatmap-1.2.5.tgz?cache=0&sync_timestamp=1633120316679&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Farray.prototype.flatmap%2Fdownload%2Farray.prototype.flatmap-1.2.5.tgz", + "integrity": "sha1-kI3ILYpAaTD984WY1R50EdGNREY=", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + } + }, + "as-number": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/as-number/download/as-number-1.0.0.tgz", + "integrity": "sha1-rLJ+NPj52KsNqeN287iVmGD4CmY=" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/asap/download/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.nlark.com/ast-types-flow/download/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/astral-regex/download/astral-regex-2.0.0.tgz", + "integrity": "sha1-SDFDxWeu7UeFdZwIZXhtx319LjE=", + "dev": true + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmmirror.com/async/download/async-2.6.3.tgz", + "integrity": "sha1-1yYl4jRKNlbjo61Pp0n6gymdgv8=", + "requires": { + "lodash": "^4.17.14" + } + }, + "async-validator": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-4.0.7.tgz", + "integrity": "sha512-Pj2IR7u8hmUEDOwB++su6baaRi+QvsgajuFB9j95foM1N2gy5HM4z60hfusIO0fBPG5uLAEl6yCJr1jNSVugEQ==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/asynckit/download/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/at-least-node/download/at-least-node-1.0.0.tgz", + "integrity": "sha1-YCzUtG6EStTv/JKoARo8RuAjjcI=" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/atob/download/atob-2.1.2.tgz", + "integrity": "sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k=" + }, + "autoprefixer": { + "version": "10.4.1", + "resolved": "https://registry.npmmirror.com/autoprefixer/download/autoprefixer-10.4.1.tgz", + "integrity": "sha512-B3ZEG7wtzXDRCEFsan7HmR2AeNsxdJB0+sEC0Hc5/c2NbhJqPwuZm+tn233GBVw82L+6CtD6IPSfVruwKjfV3A==", + "requires": { + "browserslist": "^4.19.1", + "caniuse-lite": "^1.0.30001294", + "fraction.js": "^4.1.2", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "axe-core": { + "version": "4.3.5", + "resolved": "https://registry.npmmirror.com/axe-core/download/axe-core-4.3.5.tgz", + "integrity": "sha1-eNaRG6MXqCYr/uKSrq/MHgS0nMU=" + }, + "axios": { + "version": "0.24.0", + "resolved": "https://registry.npmmirror.com/axios/download/axios-0.24.0.tgz", + "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==", + "requires": { + "follow-redirects": "^1.14.4" + } + }, + "axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/axobject-query/download/axobject-query-2.2.0.tgz?cache=0&sync_timestamp=1633307800617&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Faxobject-query%2Fdownload%2Faxobject-query-2.2.0.tgz", + "integrity": "sha1-lD1H4QwLcEqkInXiDt83ImSJib4=" + }, + "babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmmirror.com/babel-eslint/download/babel-eslint-10.1.0.tgz", + "integrity": "sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI=", + "dev": true, + "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" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=", + "dev": true + } + } + }, + "babel-jest": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/babel-jest/download/babel-jest-27.4.5.tgz", + "integrity": "sha512-3uuUTjXbgtODmSv/DXO9nZfD52IyC2OYTFaXGRzL0kpykzroaquCrD5+lZNafTvZlnNqZHt5pb0M08qVBZnsnA==", + "requires": { + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^27.4.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-loader": { + "version": "8.2.3", + "resolved": "https://registry.npmmirror.com/babel-loader/download/babel-loader-8.2.3.tgz", + "integrity": "sha1-iYa0Dxpkys/LS4QpMgCF72ixNC0=", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/loader-utils/download/loader-utils-1.4.0.tgz", + "integrity": "sha1-xXm140yzSxp07cbB+za/o3HVphM=", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-2.7.1.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-2.7.1.tgz", + "integrity": "sha1-HKTzLRskxZDCA7jnpQvw6kzTlNc=", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npm.taobao.org/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha1-hP2hnJduxcbe/vV/lCez3vZuF6M=", + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-import": { + "version": "1.13.3", + "resolved": "https://registry.npmmirror.com/babel-plugin-import/download/babel-plugin-import-1.13.3.tgz", + "integrity": "sha1-nbu6fRrHK9QSkXqDDUReAJQdJtc=", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/runtime": "^7.0.0" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmmirror.com/babel-plugin-istanbul/download/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha1-+ojsWSMv2bTjbbvFQKjsmptH2nM=", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-27.4.0.tgz", + "integrity": "sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw==", + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/babel-plugin-macros/download/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha1-nvbcdN65NLTbNE3Jc+6FHRSMUME=", + "requires": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + } + }, + "babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmmirror.com/babel-plugin-named-asset-import/download/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "requires": {} + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.3.0.tgz?cache=0&sync_timestamp=1636799826882&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbabel-plugin-polyfill-corejs2%2Fdownload%2Fbabel-plugin-polyfill-corejs2-0.3.0.tgz", + "integrity": "sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==", + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.0", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.5.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.5.0.tgz", + "integrity": "sha512-Hcrgnmkf+4JTj73GbK3bBhlVPiLL47owUAnoJIf69Hakl3q+KfodbDXiZWGMM7iqCZTxCG3Z2VRfPNYES4rXqQ==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.0", + "core-js-compat": "^3.20.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.3.0.tgz?cache=0&sync_timestamp=1636799716073&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbabel-plugin-polyfill-regenerator%2Fdownload%2Fbabel-plugin-polyfill-regenerator-0.3.0.tgz", + "integrity": "sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.0" + } + }, + "babel-plugin-transform-globalthis": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/babel-plugin-transform-globalthis/download/babel-plugin-transform-globalthis-1.0.0.tgz", + "integrity": "sha1-xreSUlGO5pFhx70gxIne9P0LNnw=" + }, + "babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/babel-plugin-transform-react-remove-prop-types/download/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha1-8u2vm0xqX75cHWeL+1MQeMFVXzo=" + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/babel-preset-current-node-syntax/download/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha1-tDmSObibKgEfndvj5PQB/EDP9zs=", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/babel-preset-jest/download/babel-preset-jest-27.4.0.tgz", + "integrity": "sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==", + "requires": { + "babel-plugin-jest-hoist": "^27.4.0", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmmirror.com/babel-preset-react-app/download/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "requires": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/balanced-match/download/balanced-match-1.0.2.tgz", + "integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=" + }, + "base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==" + }, + "basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/basic-auth/download/basic-auth-2.0.1.tgz", + "integrity": "sha1-uZgnm/R844NEtPPPkW1Gebv1Hjo=", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmmirror.com/batch/download/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "bfj": { + "version": "7.0.2", + "resolved": "https://registry.npm.taobao.org/bfj/download/bfj-7.0.2.tgz", + "integrity": "sha1-GYjOdvOt2awpE/2LpHqtnmUb+7I=", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + } + }, + "big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmmirror.com/big-integer/download/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmmirror.com/big.js/download/big.js-5.2.2.tgz", + "integrity": "sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz", + "integrity": "sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=" + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.nlark.com/bluebird/download/bluebird-3.7.2.tgz", + "integrity": "sha1-nyKcFb4nJFT/qXOs4NvueaGww28=" + }, + "body-parser": { + "version": "1.19.1", + "resolved": "https://registry.npmmirror.com/body-parser/download/body-parser-1.19.1.tgz", + "integrity": "sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA==", + "requires": { + "bytes": "3.1.1", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.9.6", + "raw-body": "2.4.2", + "type-is": "~1.6.18" + }, + "dependencies": { + "bytes": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/bytes/download/bytes-3.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbytes%2Fdownload%2Fbytes-3.1.1.tgz", + "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.nlark.com/bonjour/download/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "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.npm.taobao.org/boolbase/download/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/boxen/download/boxen-5.1.2.tgz?cache=0&sync_timestamp=1634028552381&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fboxen%2Fdownload%2Fboxen-5.1.2.tgz", + "integrity": "sha1-eIy2hvyDwfSG36ikDGj8K4MdK1A=", + "dev": true, + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.20.2.tgz", + "integrity": "sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=", + "dev": true + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz?cache=0&sync_timestamp=1614010713935&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrace-expansion%2Fdownload%2Fbrace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/braces/download/braces-3.0.2.tgz", + "integrity": "sha1-NFThpGLujVmeI23zNs2epPiv4Qc=", + "requires": { + "fill-range": "^7.0.1" + } + }, + "broadcast-channel": { + "version": "3.7.0", + "resolved": "https://registry.npmmirror.com/broadcast-channel/download/broadcast-channel-3.7.0.tgz", + "integrity": "sha1-Lfpce0KJVHrD9nBfnACvhyOImTc=", + "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" + } + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha1-PJtLfXgsgSHlbxAQbYTA0P/JRiY=" + }, + "browserslist": { + "version": "4.19.1", + "resolved": "https://registry.npmmirror.com/browserslist/download/browserslist-4.19.1.tgz", + "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==", + "requires": { + "caniuse-lite": "^1.0.30001286", + "electron-to-chromium": "^1.4.17", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/bser/download/bser-2.1.1.tgz", + "integrity": "sha1-5nh9og7OnQeZhTPP2d5vXDj0vAU=", + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.2.tgz?cache=0&sync_timestamp=1627578710888&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbuffer-from%2Fdownload%2Fbuffer-from-1.1.2.tgz", + "integrity": "sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U=" + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/buffer-indexof/download/buffer-indexof-1.1.1.tgz", + "integrity": "sha1-Uvq8xqYG0aADAoAmSO9o9jnaJow=" + }, + "builtin-modules": { + "version": "3.2.0", + "resolved": "https://registry.npm.taobao.org/builtin-modules/download/builtin-modules-3.2.0.tgz", + "integrity": "sha1-RdXbmefuXmvE82LgCL+RerUEmIc=" + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/bytes/download/bytes-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbytes%2Fdownload%2Fbytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/cacheable-request/download/cacheable-request-6.1.0.tgz?cache=0&sync_timestamp=1623237563054&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacheable-request%2Fdownload%2Fcacheable-request-6.1.0.tgz", + "integrity": "sha1-IP+4vRYrpL4R6VZ9gj22UQUsqRI=", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz", + "integrity": "sha1-SWaheV7lrOZecGxLe+txJX1uItM=", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/lowercase-keys/download/lowercase-keys-2.0.0.tgz?cache=0&sync_timestamp=1634551808987&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flowercase-keys%2Fdownload%2Flowercase-keys-2.0.0.tgz", + "integrity": "sha1-JgPni3tLAAbLyi+8yKMgJVislHk=", + "dev": true + }, + "normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-4.5.1.tgz", + "integrity": "sha1-DdkM8SiO4dExO4cIHJpZMu5IUYo=", + "dev": true + } + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz", + "integrity": "sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz", + "integrity": "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=" + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/camel-case/download/camel-case-4.1.2.tgz", + "integrity": "sha1-lygHKpVPgFIoIlpt7qazhGHhvVo=", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/camelcase/download/camelcase-6.2.1.tgz?cache=0&sync_timestamp=1636945191390&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcamelcase%2Fdownload%2Fcamelcase-6.2.1.tgz", + "integrity": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==" + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/camelcase-css/download/camelcase-css-2.0.1.tgz", + "integrity": "sha1-7pePaUeRTMMMa0R0G27R338EP9U=" + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "integrity": "sha1-Xk2Q4idJYdRikZl99Znj7QCO5MA=", + "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.30001294", + "resolved": "https://registry.npmmirror.com/caniuse-lite/download/caniuse-lite-1.0.30001294.tgz", + "integrity": "sha512-LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g==" + }, + "cardinal": { + "version": "0.4.4", + "resolved": "https://registry.npm.taobao.org/cardinal/download/cardinal-0.4.4.tgz", + "integrity": "sha1-ylu2iltRG5D+k7ms6km97lwyv+I=", + "requires": { + "ansicolors": "~0.2.1", + "redeyed": "~0.4.0" + } + }, + "case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npm.taobao.org/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha1-22QGbGQi7tLgjMFLmGykN5bbxtQ=" + }, + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.nlark.com/center-align/download/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "requires": { + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-2.4.2.tgz", + "integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/char-regex/download/char-regex-1.0.2.tgz", + "integrity": "sha1-10Q1giYhf5ge1Y9Hmx1rzClUXc8=" + }, + "check-types": { + "version": "11.1.2", + "resolved": "https://registry.nlark.com/check-types/download/check-types-11.1.2.tgz", + "integrity": "sha1-hqfBK/VTn2Mk6w5wyoiWwOOPPi8=" + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmmirror.com/chokidar/download/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "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": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/download/glob-parent-5.1.2.tgz", + "integrity": "sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz", + "integrity": "sha1-EBXs7UdB4V0GZkqVfbv1DQQeJqw=" + }, + "ci-info": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/ci-info/download/ci-info-3.3.0.tgz", + "integrity": "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==" + }, + "cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/cjs-module-lexer/download/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha1-n4S6MkSlEvOlTlJ36O70xImGTkA=" + }, + "clamp": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/clamp/download/clamp-1.0.1.tgz", + "integrity": "sha1-ZqDmQBGBbjcZaCj9yMjBRzEshjQ=" + }, + "classnames": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/classnames/download/classnames-2.3.1.tgz", + "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" + }, + "clean-css": { + "version": "5.2.2", + "resolved": "https://registry.npmmirror.com/clean-css/download/clean-css-5.2.2.tgz?cache=0&sync_timestamp=1634992462165&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fclean-css%2Fdownload%2Fclean-css-5.2.2.tgz", + "integrity": "sha1-06fG7iURAR4FFxmDi9z4MU3EVI0=", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz?cache=0&sync_timestamp=1621915070206&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclean-stack%2Fdownload%2Fclean-stack-2.2.0.tgz", + "integrity": "sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=" + }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npm.taobao.org/cli-boxes/download/cli-boxes-2.2.1.tgz", + "integrity": "sha1-3dUDXSUJT84iDpyrQKRYQKRAMY8=", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz?cache=0&sync_timestamp=1629747358529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcli-cursor%2Fdownload%2Fcli-cursor-3.1.0.tgz", + "integrity": "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-7.0.4.tgz?cache=0&sync_timestamp=1604880226973&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcliui%2Fdownload%2Fcliui-7.0.4.tgz", + "integrity": "sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08=", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/clone-response/download/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.nlark.com/co/download/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/coa/download/coa-2.0.2.tgz?cache=0&sync_timestamp=1636035838814&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcoa%2Fdownload%2Fcoa-2.0.2.tgz", + "integrity": "sha1-Q/bCEVG07yv1cYfbDXPeIp4+fsM=", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + } + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/collect-v8-coverage/download/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha1-zCyOlPwYu9/+ZNZTRXDIpnOyf1k=" + }, + "color": { + "version": "3.2.1", + "resolved": "https://registry.npmmirror.com/color/download/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.npmmirror.com/color-convert/download/color-convert-1.9.3.tgz", + "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "color-string": { + "version": "1.9.0", + "resolved": "https://registry.npmmirror.com/color-string/download/color-string-1.9.0.tgz", + "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colord": { + "version": "2.9.2", + "resolved": "https://registry.npmmirror.com/colord/download/colord-2.9.2.tgz", + "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==" + }, + "colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmmirror.com/colorette/download/colorette-2.0.16.tgz?cache=0&sync_timestamp=1633673060735&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcolorette%2Fdownload%2Fcolorette-2.0.16.tgz", + "integrity": "sha1-cTua+E/bAAE58EVGvUqT9ipQhdo=" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.nlark.com/combined-stream/download/combined-stream-1.0.8.tgz", + "integrity": "sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmmirror.com/commander/download/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + }, + "common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/common-path-prefix/download/common-path-prefix-3.0.0.tgz", + "integrity": "sha1-fQB6fgfFjEtNX0MxMaGRQbKfEeA=" + }, + "common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmmirror.com/common-tags/download/common-tags-1.8.2.tgz?cache=0&sync_timestamp=1637093345924&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcommon-tags%2Fdownload%2Fcommon-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/commondir/download/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.nlark.com/compressible/download/compressible-2.0.18.tgz", + "integrity": "sha1-r1PMprBw1MPAdQ+9dyhqbXzEb7o=", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.nlark.com/compression/download/compression-1.7.4.tgz?cache=0&sync_timestamp=1618846915701&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcompression%2Fdownload%2Fcompression-1.7.4.tgz", + "integrity": "sha1-lVI+/xcMpXwpoMpB5v4TH0Hlu48=", + "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.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "compute-scroll-into-view": { + "version": "1.0.17", + "resolved": "https://registry.nlark.com/compute-scroll-into-view/download/compute-scroll-into-view-1.0.17.tgz", + "integrity": "sha1-aojxis2dQunPS6pr7H4FImB6t6s=" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.nlark.com/concat-stream/download/concat-stream-1.6.2.tgz", + "integrity": "sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.nlark.com/readable-stream/download/readable-stream-2.3.7.tgz", + "integrity": "sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=", + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/string_decoder/download/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npm.taobao.org/configstore/download/configstore-5.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fconfigstore%2Fdownload%2Fconfigstore-5.0.1.tgz", + "integrity": "sha1-02UCG130uYzdGH1qOw4/anzF7ZY=", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + } + }, + "confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmmirror.com/confusing-browser-globals/download/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w=" + }, + "connect-pause": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/connect-pause/download/connect-pause-0.1.1.tgz", + "integrity": "sha1-smmyu4Ldsaw9tQmcD7WCq6mfs3o=", + "dev": true + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmmirror.com/content-disposition/download/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.nlark.com/safe-buffer/download/safe-buffer-5.2.1.tgz?cache=0&sync_timestamp=1618847044058&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsafe-buffer%2Fdownload%2Fsafe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=" + } + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/content-type/download/content-type-1.0.4.tgz", + "integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js=" + }, + "contour_plot": { + "version": "0.0.1", + "resolved": "https://registry.npm.taobao.org/contour_plot/download/contour_plot-0.0.1.tgz", + "integrity": "sha1-R1hw8DK44zhBKqX8UHiA8L9JXHc=" + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.8.0.tgz", + "integrity": "sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k=", + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/cookie/download/cookie-0.4.1.tgz", + "integrity": "sha1-r9cT/ibr0hupXOth+agRblClN9E=" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/cookie-signature/download/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "copy-anything": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/copy-anything/download/copy-anything-2.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcopy-anything%2Fdownload%2Fcopy-anything-2.0.3.tgz", + "integrity": "sha1-hCQHugJGaw34RIGbvjuuu+XUXYc=", + "requires": { + "is-what": "^3.12.0" + } + }, + "copy-to-clipboard": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/copy-to-clipboard/download/copy-to-clipboard-3.3.1.tgz", + "integrity": "sha1-EVqhqZmP+rYZb5MHatbaO5E2Yq4=", + "requires": { + "toggle-selection": "^1.0.6" + } + }, + "core-js": { + "version": "3.20.1", + "resolved": "https://registry.npmmirror.com/core-js/download/core-js-3.20.1.tgz", + "integrity": "sha512-btdpStYFQScnNVQ5slVcr858KP0YWYjV16eGJQw8Gg7CWtu/2qNvIM3qVRIR3n1pK2R9NNOrTevbvAYxajwEjg==" + }, + "core-js-compat": { + "version": "3.20.2", + "resolved": "https://registry.npmmirror.com/core-js-compat/download/core-js-compat-3.20.2.tgz", + "integrity": "sha512-qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg==", + "requires": { + "browserslist": "^4.19.1", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/semver/download/semver-7.0.0.tgz", + "integrity": "sha1-XzyjV2HkfgWyBsba/yz4FPAxa44=" + } + } + }, + "core-js-pure": { + "version": "3.20.1", + "resolved": "https://registry.npmmirror.com/core-js-pure/download/core-js-pure-3.20.1.tgz", + "integrity": "sha512-yeNNr3L9cEBwNy6vhhIJ0nko7fE7uFO6PgawcacGt2VWep4WqQx0RiqlkgSP7kqUMC1IKdfO9qPeWXcUheHLVQ==" + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/core-util-is/download/core-util-is-1.0.3.tgz?cache=0&sync_timestamp=1630420577662&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-util-is%2Fdownload%2Fcore-util-is-1.0.3.tgz", + "integrity": "sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=" + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmmirror.com/cors/download/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "dev": true, + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-7.0.1.tgz", + "integrity": "sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz", + "integrity": "sha1-9zqFudXUHQRVUcF34ogtSshXKKY=", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/crypto-random-string/download/crypto-random-string-2.0.0.tgz?cache=0&sync_timestamp=1617610790785&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcrypto-random-string%2Fdownload%2Fcrypto-random-string-2.0.0.tgz", + "integrity": "sha1-7yp6lm7BEIM4g2m6oC6+rSKbMNU=" + }, + "css": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/css/download/css-3.0.0.tgz", + "integrity": "sha1-REek1Y/dAzZ8UWyp9krjZc7kql0=", + "requires": { + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "css-blank-pseudo": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/css-blank-pseudo/download/css-blank-pseudo-3.0.1.tgz", + "integrity": "sha512-ZGuwEmAZLsEHyKe/UVk+7Bj6Fl5nvxKAddxovyi5mI3jl4mFRqX7VW7M2ZejsE3XlWkL4GyVCifsKrmuxVdrcg==", + "requires": { + "postcss-selector-parser": "^6.0.8" + } + }, + "css-declaration-sorter": { + "version": "6.1.3", + "resolved": "https://registry.npmmirror.com/css-declaration-sorter/download/css-declaration-sorter-6.1.3.tgz", + "integrity": "sha1-6YUuTPlAunn1CdlCWxN9H5RDjcI=", + "requires": { + "timsort": "^0.3.0" + } + }, + "css-has-pseudo": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/css-has-pseudo/download/css-has-pseudo-3.0.1.tgz", + "integrity": "sha512-yRZMyeJ8ebZAPuZmT66/2QjT0CR14qrQrbTSNc3cmTkVCKd/KkXcnO97WYWJlFQF6yzfNfOqG/9rISnrZ8SxZw==", + "requires": { + "postcss-selector-parser": "^6.0.8" + } + }, + "css-in-js-utils": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/css-in-js-utils/download/css-in-js-utils-2.0.1.tgz", + "integrity": "sha1-O0crOYeHKRtHz+PkT+z92ekUupk=", + "requires": { + "hyphenate-style-name": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "requires": { + "utrie": "^1.0.2" + } + }, + "css-loader": { + "version": "6.5.1", + "resolved": "https://registry.npmmirror.com/css-loader/download/css-loader-6.5.1.tgz?cache=0&sync_timestamp=1635967924209&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcss-loader%2Fdownload%2Fcss-loader-6.5.1.tgz", + "integrity": "sha1-DEPU++DZf2mckemBjLWFdZCR0bE=", + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "semver": "^7.3.5" + } + }, + "css-minimizer-webpack-plugin": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/css-minimizer-webpack-plugin/download/css-minimizer-webpack-plugin-3.3.1.tgz", + "integrity": "sha512-SHA7Hu/EiF0dOwdmV2+agvqYpG+ljlUa7Dvn1AVOmSH3N8KOERoaM9lGpstz9nGsoTjANGyUXdrxl/EwdMScRg==", + "requires": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-5.1.0.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-4.0.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "css-prefers-color-scheme": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/css-prefers-color-scheme/download/css-prefers-color-scheme-6.0.1.tgz", + "integrity": "sha512-mTPYV3Ie8f0bw2ajimr4MOUDu5n5iYzhMrIOGN0zcwldAPYgdZc+xRMsSGhqQaNBZVNoxnoDr0m5icnqEyTtrA==", + "requires": {} + }, + "css-select": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/css-select/download/css-select-4.2.1.tgz", + "integrity": "sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.1.0", + "domhandler": "^4.3.0", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/css-select-base-adapter/download/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha1-Oy/0lyzDYquIVhUHqVQIoUMhNdc=" + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmmirror.com/css-tree/download/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha1-mL69YsTB2flg7DQM+fdSLjBwmiI=", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "css-what": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/css-what/download/css-what-5.1.0.tgz", + "integrity": "sha1-P3tweq32M7r2LCzrhXm1RbtA9/4=" + }, + "css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npm.taobao.org/css.escape/download/css.escape-1.5.1.tgz", + "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" + }, + "csscolorparser": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/csscolorparser/download/csscolorparser-1.0.3.tgz", + "integrity": "sha1-s085HupNqPPpgjHizNjfnAQfFxs=" + }, + "cssdb": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/cssdb/download/cssdb-5.0.0.tgz", + "integrity": "sha1-ltsj5w3aPQOjI0beYR8Oef7mi38=" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/cssesc/download/cssesc-3.0.0.tgz", + "integrity": "sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=" + }, + "cssnano": { + "version": "5.0.14", + "resolved": "https://registry.npmmirror.com/cssnano/download/cssnano-5.0.14.tgz", + "integrity": "sha512-qzhRkFvBhv08tbyKCIfWbxBXmkIpLl1uNblt8SpTHkgLfON5OCPX/CCnkdNmEosvo8bANQYmTTMEgcVBlisHaw==", + "requires": { + "cssnano-preset-default": "^5.1.9", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + } + }, + "cssnano-preset-default": { + "version": "5.1.9", + "resolved": "https://registry.npmmirror.com/cssnano-preset-default/download/cssnano-preset-default-5.1.9.tgz", + "integrity": "sha512-RhkEucqlQ+OxEi14K1p8gdXcMQy1mSpo7P1oC44oRls7BYIj8p+cht4IFBFV3W4iOjTP8EUB33XV1fX9KhDzyA==", + "requires": { + "css-declaration-sorter": "^6.0.3", + "cssnano-utils": "^2.0.1", + "postcss-calc": "^8.0.0", + "postcss-colormin": "^5.2.2", + "postcss-convert-values": "^5.0.2", + "postcss-discard-comments": "^5.0.1", + "postcss-discard-duplicates": "^5.0.1", + "postcss-discard-empty": "^5.0.1", + "postcss-discard-overridden": "^5.0.1", + "postcss-merge-longhand": "^5.0.4", + "postcss-merge-rules": "^5.0.3", + "postcss-minify-font-values": "^5.0.1", + "postcss-minify-gradients": "^5.0.3", + "postcss-minify-params": "^5.0.2", + "postcss-minify-selectors": "^5.1.0", + "postcss-normalize-charset": "^5.0.1", + "postcss-normalize-display-values": "^5.0.1", + "postcss-normalize-positions": "^5.0.1", + "postcss-normalize-repeat-style": "^5.0.1", + "postcss-normalize-string": "^5.0.1", + "postcss-normalize-timing-functions": "^5.0.1", + "postcss-normalize-unicode": "^5.0.1", + "postcss-normalize-url": "^5.0.4", + "postcss-normalize-whitespace": "^5.0.1", + "postcss-ordered-values": "^5.0.2", + "postcss-reduce-initial": "^5.0.2", + "postcss-reduce-transforms": "^5.0.1", + "postcss-svgo": "^5.0.3", + "postcss-unique-selectors": "^5.0.2" + } + }, + "cssnano-utils": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/cssnano-utils/download/cssnano-utils-2.0.1.tgz", + "integrity": "sha1-hmCqKzfthp0uLyKRgZapqLZJjOI=", + "requires": {} + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/csso/download/csso-4.2.0.tgz", + "integrity": "sha1-6jpWE0bo3J9UbW/r7dUBh884lSk=", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/css-tree/download/css-tree-1.1.3.tgz", + "integrity": "sha1-60hw+2/XcHMn7JXC/yqwm16NuR0=", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmmirror.com/mdn-data/download/mdn-data-2.0.14.tgz", + "integrity": "sha1-cRP8QoGRfWPOKbQ0RvcB5owlulA=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz", + "integrity": "sha1-WmbPk9LQtmHYC/akT7ZfXC5OChA=" + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/cssstyle/download/cssstyle-2.3.0.tgz", + "integrity": "sha1-/2ZaDdvcMYZLCWR/NBY0Q9kLCFI=", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz", + "integrity": "sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o=" + } + } + }, + "csstype": { + "version": "3.0.10", + "resolved": "https://registry.npmmirror.com/csstype/download/csstype-3.0.10.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcsstype%2Fdownload%2Fcsstype-3.0.10.tgz", + "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==" + }, + "d3-array": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/d3-array/download/d3-array-1.2.4.tgz", + "integrity": "sha1-Y1zk1e6nWfb2BYY9vPww7cc39x8=" + }, + "d3-collection": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/d3-collection/download/d3-collection-1.0.7.tgz", + "integrity": "sha1-NJvSqpl32wcQkcExRNXk8WtbMQ4=" + }, + "d3-color": { + "version": "1.4.1", + "resolved": "https://registry.nlark.com/d3-color/download/d3-color-1.4.1.tgz", + "integrity": "sha1-xSACv4hGraRCTVXZeYL+8m6zvIo=" + }, + "d3-dispatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/d3-dispatch/download/d3-dispatch-2.0.0.tgz", + "integrity": "sha1-ihjhb3bdP8rvQhY8l7kmqptV588=" + }, + "d3-dsv": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/d3-dsv/download/d3-dsv-1.2.0.tgz", + "integrity": "sha1-nV91w6X4q9YR900/WEew1DOLiFw=", + "requires": { + "commander": "2", + "iconv-lite": "0.4", + "rw": "1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmmirror.com/commander/download/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "d3-ease": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/d3-ease/download/d3-ease-1.0.7.tgz", + "integrity": "sha1-moNIkO+LiujFWLL+Vb1X9Zk7heI=" + }, + "d3-force": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/d3-force/download/d3-force-2.1.1.tgz", + "integrity": "sha1-8gzL8ebJ6ArdGSbwm1H2hqi8CTc=", + "requires": { + "d3-dispatch": "1 - 2", + "d3-quadtree": "1 - 2", + "d3-timer": "1 - 2" + } + }, + "d3-format": { + "version": "1.4.5", + "resolved": "https://registry.npmmirror.com/d3-format/download/d3-format-1.4.5.tgz", + "integrity": "sha1-N08roTIONxfrdKk1bGfa7hen7bQ=" + }, + "d3-hexbin": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/d3-hexbin/download/d3-hexbin-0.2.2.tgz", + "integrity": "sha1-nFg32s/UcasFM3qeke8Qv8T5iDE=" + }, + "d3-hierarchy": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/d3-hierarchy/download/d3-hierarchy-2.0.0.tgz", + "integrity": "sha1-2riKWMo+ehvGyrOQ6JZn/MbSAhg=" + }, + "d3-interpolate": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/d3-interpolate/download/d3-interpolate-1.4.0.tgz", + "integrity": "sha1-Um554tgNqjg/ngwcHH3MDwWD6Yc=", + "requires": { + "d3-color": "1" + } + }, + "d3-polygon": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/d3-polygon/download/d3-polygon-1.0.6.tgz", + "integrity": "sha1-C/jLgYCm3BB/UY3feXXhKrv7044=" + }, + "d3-quadtree": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/d3-quadtree/download/d3-quadtree-2.0.0.tgz", + "integrity": "sha1-7brQRc74hwH2/uOu6Ok/szLTD50=" + }, + "d3-regression": { + "version": "1.3.9", + "resolved": "https://registry.nlark.com/d3-regression/download/d3-regression-1.3.9.tgz", + "integrity": "sha1-YcNKy5trvZFy7eifBdC3+9V8zcA=" + }, + "d3-scale": { + "version": "2.2.2", + "resolved": "https://registry.npmmirror.com/d3-scale/download/d3-scale-2.2.2.tgz", + "integrity": "sha1-TogOCydFrKrd0+3iap6Qip4XuB8=", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "d3-time": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/d3-time/download/d3-time-1.1.0.tgz", + "integrity": "sha1-seGdMH2unJALflsl/8XcwkmooPE=" + }, + "d3-time-format": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/d3-time-format/download/d3-time-format-2.3.0.tgz", + "integrity": "sha1-EHvcAoZneIqJJLoED68fvM1aeFA=", + "requires": { + "d3-time": "1" + } + }, + "d3-timer": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/d3-timer/download/d3-timer-1.0.10.tgz", + "integrity": "sha1-3+dripF0iDGxO22ceT/71QjdneU=" + }, + "dagre": { + "version": "0.8.5", + "resolved": "https://registry.nlark.com/dagre/download/dagre-0.8.5.tgz", + "integrity": "sha1-ujCwBV2sErbB/MJHgXRCd30Gr+4=", + "requires": { + "graphlib": "^2.1.8", + "lodash": "^4.17.15" + } + }, + "damerau-levenshtein": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/damerau-levenshtein/download/damerau-levenshtein-1.0.7.tgz", + "integrity": "sha1-ZDaAA1EqGmmSWTdBoJqdMag29V0=" + }, + "data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/data-urls/download/data-urls-2.0.0.tgz", + "integrity": "sha1-FWSFpyljqXD11YIar2Qr7yvy25s=", + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "date-fns": { + "version": "2.28.0", + "resolved": "https://registry.npmmirror.com/date-fns/download/date-fns-2.28.0.tgz", + "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==" + }, + "dayjs": { + "version": "1.10.7", + "resolved": "https://registry.npmmirror.com/dayjs/download/dayjs-1.10.7.tgz", + "integrity": "sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig==" + }, + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmmirror.com/debug/download/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/decamelize/download/decamelize-1.2.0.tgz?cache=0&sync_timestamp=1633055713394&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fdecamelize%2Fdownload%2Fdecamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "decimal.js": { + "version": "10.3.1", + "resolved": "https://registry.nlark.com/decimal.js/download/decimal.js-10.3.1.tgz", + "integrity": "sha1-2MOkRKnGd0umDKatcmHDqU/V54M=" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/decode-uri-component/download/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/decompress-response/download/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.nlark.com/dedent/download/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/deep-equal/download/deep-equal-1.1.1.tgz", + "integrity": "sha1-tcmMlCzv+vfLBR4k4UNKJaLmB2o=", + "requires": { + "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-extend": { + "version": "0.6.0", + "resolved": "https://registry.nlark.com/deep-extend/download/deep-extend-0.6.0.tgz", + "integrity": "sha1-xPp8lUBKF6nD6Mp+FTcxK3NjMKw=", + "dev": true + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/deep-is/download/deep-is-0.1.4.tgz?cache=0&sync_timestamp=1630774538962&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdeep-is%2Fdownload%2Fdeep-is-0.1.4.tgz", + "integrity": "sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=" + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-4.2.2.tgz?cache=0&sync_timestamp=1622025358084&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdeepmerge%2Fdownload%2Fdeepmerge-4.2.2.tgz", + "integrity": "sha1-RNLqNnm49NT/ujPwPYZfwee/SVU=" + }, + "default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/default-gateway/download/default-gateway-6.0.3.tgz", + "integrity": "sha1-gZSUyIgFO9t0PtvzQ9bN9/KUOnE=", + "requires": { + "execa": "^5.0.0" + } + }, + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npm.taobao.org/defer-to-connect/download/defer-to-connect-1.1.3.tgz", + "integrity": "sha1-MxrgUMCNz3ifjIOnuB8O2U9KxZE=", + "dev": true + }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/define-lazy-prop/download/define-lazy-prop-2.0.0.tgz?cache=0&sync_timestamp=1618388655514&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdefine-lazy-prop%2Fdownload%2Fdefine-lazy-prop-2.0.0.tgz", + "integrity": "sha1-P3rkIRKbyqrJvHSQXJigAJ7J7n8=" + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "integrity": "sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=", + "requires": { + "object-keys": "^1.0.12" + } + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/defined/download/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" + }, + "del": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/del/download/del-6.0.0.tgz", + "integrity": "sha1-C0DQMyzqdD8WFPgYvk/rcXcUyVI=", + "requires": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/delayed-stream/download/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "detect-browser": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/detect-browser/download/detect-browser-5.3.0.tgz", + "integrity": "sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==" + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/detect-newline/download/detect-newline-3.1.0.tgz?cache=0&sync_timestamp=1634200380130&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fdetect-newline%2Fdownload%2Fdetect-newline-3.1.0.tgz", + "integrity": "sha1-V29d/GOuGhkv8ZLYrTr2MImRtlE=" + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/detect-node/download/detect-node-2.1.0.tgz", + "integrity": "sha1-yccHdaScPQO8LAbZpzvlUPl4+LE=" + }, + "detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/detect-port-alt/download/detect-port-alt-1.1.6.tgz", + "integrity": "sha1-JHB96r6TLUo89iEwICfCsmZWgnU=", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "detective": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/detective/download/detective-5.2.0.tgz", + "integrity": "sha1-/rKnfoW5BOzepFmtiXzJCpm9Kns=", + "requires": { + "acorn-node": "^1.6.1", + "defined": "^1.0.0", + "minimist": "^1.1.1" + } + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/didyoumean/download/didyoumean-1.2.2.tgz?cache=0&sync_timestamp=1624543572474&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdidyoumean%2Fdownload%2Fdidyoumean-1.2.2.tgz", + "integrity": "sha1-mJNG/+noObRVXs9WZu3qDT6K0Dc=" + }, + "diff-sequences": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/diff-sequences/download/diff-sequences-27.4.0.tgz", + "integrity": "sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/dir-glob/download/dir-glob-3.0.1.tgz", + "integrity": "sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=", + "requires": { + "path-type": "^4.0.0" + } + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npm.taobao.org/dlv/download/dlv-1.1.3.tgz", + "integrity": "sha1-XBmKihFFNZbnUUlNSYdLx3MvLnk=" + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/dns-equal/download/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmmirror.com/dns-packet/download/dns-packet-1.3.4.tgz", + "integrity": "sha1-40VQZYJKJQe6iGxVqJljuxB97G8=", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/dns-txt/download/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz", + "integrity": "sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=", + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-accessibility-api": { + "version": "0.5.10", + "resolved": "https://registry.npmmirror.com/dom-accessibility-api/download/dom-accessibility-api-0.5.10.tgz", + "integrity": "sha1-yqbQj2A4jQu0U53XX+RYqaHQAUw=" + }, + "dom-align": { + "version": "1.12.2", + "resolved": "https://registry.nlark.com/dom-align/download/dom-align-1.12.2.tgz", + "integrity": "sha1-D4Fk69DJwhsMeQMQSTzYVYkqzUs=" + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/dom-converter/download/dom-converter-0.2.0.tgz", + "integrity": "sha1-ZyGp2u4uKTaClVtq/kFncWJ7t2g=", + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz", + "integrity": "sha1-YgZDfTLO767HFhgDIwx6ILwbTZE=", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz", + "integrity": "sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc=" + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/domexception/download/domexception-2.0.1.tgz", + "integrity": "sha1-+0Su+6eT4VdLCvau0oAdBXUp8wQ=", + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-5.0.0.tgz", + "integrity": "sha1-rlnIoAsSFUOirMZcBDT1ew/BGv8=" + } + } + }, + "domhandler": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/domhandler/download/domhandler-4.3.0.tgz", + "integrity": "sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-2.8.0.tgz?cache=0&sync_timestamp=1630106535879&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdomutils%2Fdownload%2Fdomutils-2.8.0.tgz", + "integrity": "sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/dot-case/download/dot-case-3.0.4.tgz", + "integrity": "sha1-mytnDQCkMWZ6inW6Kc0bmICc51E=", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npm.taobao.org/dot-prop/download/dot-prop-5.3.0.tgz?cache=0&sync_timestamp=1605778235569&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdot-prop%2Fdownload%2Fdot-prop-5.3.0.tgz", + "integrity": "sha1-kMzOcIzZzYLMTcjD3dmr3VWyDog=", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": { + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz", + "integrity": "sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=", + "dev": true + } + } + }, + "dotenv": { + "version": "10.0.0", + "resolved": "https://registry.nlark.com/dotenv/download/dotenv-10.0.0.tgz?cache=0&sync_timestamp=1621633079842&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdotenv%2Fdownload%2Fdotenv-10.0.0.tgz", + "integrity": "sha1-PUInuPuV+BCWzdK2ZlP7LHCFuoE=" + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/dotenv-expand/download/dotenv-expand-5.1.0.tgz?cache=0&sync_timestamp=1618847017659&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdotenv-expand%2Fdownload%2Fdotenv-expand-5.1.0.tgz", + "integrity": "sha1-P7rwIL/XlIhAcuomsel5HUWmKfA=" + }, + "dotignore": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/dotignore/download/dotignore-0.1.2.tgz", + "integrity": "sha1-+ULyIA0ow6dvvdbw7p8yV8ii6QU=", + "requires": { + "minimatch": "^3.0.4" + } + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/duplexer/download/duplexer-0.1.2.tgz", + "integrity": "sha1-Or5DrvODX4rgd9E23c4PJ2sEAOY=" + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/duplexer3/download/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "earcut": { + "version": "2.2.3", + "resolved": "https://registry.nlark.com/earcut/download/earcut-2.2.3.tgz", + "integrity": "sha1-1EztL/WhiFlWjjJ92cfUaxb1XPQ=" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/ee-first/download/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "ejs": { + "version": "3.1.6", + "resolved": "https://registry.npmmirror.com/ejs/download/ejs-3.1.6.tgz", + "integrity": "sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==", + "requires": { + "jake": "^10.6.1" + } + }, + "electron-to-chromium": { + "version": "1.4.31", + "resolved": "https://registry.npmmirror.com/electron-to-chromium/download/electron-to-chromium-1.4.31.tgz", + "integrity": "sha512-t3XVQtk+Frkv6aTD4RRk0OqosU+VLe1dQFW83MDer78ZD6a52frgXuYOIsLYTQiH2Lm+JB2OKYcn7zrX+YGAiQ==" + }, + "element-resize-event": { + "version": "3.0.6", + "resolved": "https://registry.nlark.com/element-resize-event/download/element-resize-event-3.0.6.tgz", + "integrity": "sha1-Ohjv1Iea1hXpef2Lvxc7AUmH65o=" + }, + "emittery": { + "version": "0.8.1", + "resolved": "https://registry.nlark.com/emittery/download/emittery-0.8.1.tgz", + "integrity": "sha1-uyPMhtA7MKp1p/c0gZ3uLhunCGA=" + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmmirror.com/emoji-regex/download/emoji-regex-9.2.2.tgz", + "integrity": "sha1-hAyIA7DYBH9P8M+WMXazLU7z7XI=" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz", + "integrity": "sha1-VXBmIEatKeLpFucariYKvf9Pang=" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "integrity": "sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "5.8.3", + "resolved": "https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-5.8.3.tgz?cache=0&sync_timestamp=1632130726633&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-5.8.3.tgz", + "integrity": "sha1-bVUtRlzOBCP1s9cYUR6lOCansvA=", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.nlark.com/enquirer/download/enquirer-2.3.6.tgz", + "integrity": "sha1-Kn/l3WNKHkElqXXsmU/1RW3Dc00=", + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz?cache=0&sync_timestamp=1628508126700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fentities%2Fdownload%2Fentities-2.2.0.tgz", + "integrity": "sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=" + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "integrity": "sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8=", + "optional": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npm.taobao.org/error-ex/download/error-ex-1.3.2.tgz", + "integrity": "sha1-tKxAZIEH/c3PriQvQovqihTU8b8=", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/error-stack-parser/download/error-stack-parser-2.0.6.tgz", + "integrity": "sha1-WpmnB716TFinl5AtSNgoA+3mqtg=", + "requires": { + "stackframe": "^1.1.1" + } + }, + "errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/errorhandler/download/errorhandler-1.5.1.tgz", + "integrity": "sha1-ubpdF8+QdEzR6FE1em51v4BqmpE=", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmmirror.com/es-abstract/download/es-abstract-1.19.1.tgz?cache=0&sync_timestamp=1633234313248&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.19.1.tgz", + "integrity": "sha1-1IhXlodpFpWd547aoN9FZicRXsM=", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmmirror.com/es-module-lexer/download/es-module-lexer-0.9.3.tgz", + "integrity": "sha1-bxPbAMw4QXE32vdDZvU1yOtDjxk=" + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz", + "integrity": "sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npm.taobao.org/escalade/download/escalade-3.1.1.tgz", + "integrity": "sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=" + }, + "escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/escape-goat/download/escape-goat-2.1.1.tgz", + "integrity": "sha1-Gy3HcANnbEV+x2Cy3GjttkgYhnU=", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/escape-html/download/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "escodegen": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/escodegen/download/escodegen-2.0.0.tgz", + "integrity": "sha1-XjKxKDPoqo+jXhvwvvqJOASEx90=", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "levn": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/levn/download/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "integrity": "sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU=", + "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" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/prelude-ls/download/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/type-check/download/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "eslint": { + "version": "8.6.0", + "resolved": "https://registry.npmmirror.com/eslint/download/eslint-8.6.0.tgz", + "integrity": "sha512-UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw==", + "requires": { + "@eslint/eslintrc": "^1.0.5", + "@humanwhocodes/config-array": "^0.9.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.0", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.3.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.2.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/argparse/download/argparse-2.0.1.tgz", + "integrity": "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz", + "integrity": "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=" + }, + "globals": { + "version": "13.12.0", + "resolved": "https://registry.npmmirror.com/globals/download/globals-13.12.0.tgz", + "integrity": "sha1-TXM3YDBCMKAILtluIeXFZfiYCJ4=", + "requires": { + "type-fest": "^0.20.2" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/download/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.20.2.tgz", + "integrity": "sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=" + } + } + }, + "eslint-config-react-app": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/eslint-config-react-app/download/eslint-config-react-app-7.0.0.tgz", + "integrity": "sha512-xyymoxtIt1EOsSaGag+/jmcywRuieQoA2JbPCjnw9HukFj9/97aGPoZVFioaotzk1K5Qt9sHO5EutZbkrAXS0g==", + "requires": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/eslint-import-resolver-node/download/eslint-import-resolver-node-0.3.6.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-import-resolver-node%2Fdownload%2Feslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha1-QEi5WDldqJZoJSAB29nsprg7rL0=", + "requires": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-module-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmmirror.com/eslint-module-utils/download/eslint-module-utils-2.7.1.tgz", + "integrity": "sha1-tDUAHJ+N1Kt/bQ78rkuWltTCS3w=", + "requires": { + "debug": "^3.2.7", + "find-up": "^2.1.0", + "pkg-dir": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-2.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-1.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-1.3.0.tgz", + "integrity": "sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-2.0.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/p-try/download/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmmirror.com/eslint-plugin-flowtype/download/eslint-plugin-flowtype-8.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-plugin-flowtype%2Fdownload%2Feslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha1-4VV+NxGPJHNKoxIudTagONNKSRI=", + "requires": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + } + }, + "eslint-plugin-import": { + "version": "2.25.3", + "resolved": "https://registry.npmmirror.com/eslint-plugin-import/download/eslint-plugin-import-2.25.3.tgz", + "integrity": "sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==", + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.1", + "has": "^1.0.3", + "is-core-module": "^2.8.0", + "is-glob": "^4.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.5", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.11.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/doctrine/download/doctrine-2.1.0.tgz", + "integrity": "sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=", + "requires": { + "esutils": "^2.0.2" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "eslint-plugin-jest": { + "version": "25.3.3", + "resolved": "https://registry.npmmirror.com/eslint-plugin-jest/download/eslint-plugin-jest-25.3.3.tgz", + "integrity": "sha512-qi7aduaU4/oWegWo0zH4kbJbx8+Be+ABTr72OnO68zTMcJeeSuyH1CduTGF4ATyNFgpE1zp0u10/gIhe+QDSfg==", + "requires": { + "@typescript-eslint/experimental-utils": "^5.0.0" + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.5.1", + "resolved": "https://registry.npmmirror.com/eslint-plugin-jsx-a11y/download/eslint-plugin-jsx-a11y-6.5.1.tgz?cache=0&sync_timestamp=1636698418809&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-plugin-jsx-a11y%2Fdownload%2Feslint-plugin-jsx-a11y-6.5.1.tgz", + "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", + "requires": { + "@babel/runtime": "^7.16.3", + "aria-query": "^4.2.2", + "array-includes": "^3.1.4", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.3.5", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.7", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.2.1", + "language-tags": "^1.0.5", + "minimatch": "^3.0.4" + } + }, + "eslint-plugin-react": { + "version": "7.28.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-react/download/eslint-plugin-react-7.28.0.tgz", + "integrity": "sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==", + "requires": { + "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" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/doctrine/download/doctrine-2.1.0.tgz", + "integrity": "sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=", + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "2.0.0-next.3", + "resolved": "https://registry.npm.taobao.org/resolve/download/resolve-2.0.0-next.3.tgz?cache=0&sync_timestamp=1613054862388&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-2.0.0-next.3.tgz", + "integrity": "sha1-1BAWKT1KhYajnKXZtfFcvqH1XkY=", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-react-hooks/download/eslint-plugin-react-hooks-4.3.0.tgz", + "integrity": "sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==", + "requires": {} + }, + "eslint-plugin-testing-library": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/eslint-plugin-testing-library/download/eslint-plugin-testing-library-5.0.1.tgz", + "integrity": "sha512-8ZV4HbbacvOwu+adNnGpYd8E64NRcil2a11aFAbc/TZDUB/xxK2c8Z+LoeoHUbxNBGbTUdpAE4YUugxK85pcwQ==", + "requires": { + "@typescript-eslint/experimental-utils": "^5.5.0" + } + }, + "eslint-scope": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/eslint-scope/download/eslint-scope-7.1.0.tgz?cache=0&sync_timestamp=1637466831846&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-scope%2Fdownload%2Feslint-scope-7.1.0.tgz", + "integrity": "sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/eslint-utils/download/eslint-utils-3.0.0.tgz", + "integrity": "sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI=", + "requires": { + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz?cache=0&sync_timestamp=1636378420914&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-2.1.0.tgz", + "integrity": "sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=" + } + } + }, + "eslint-visitor-keys": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-3.1.0.tgz?cache=0&sync_timestamp=1636378420914&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-3.1.0.tgz", + "integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==" + }, + "eslint-webpack-plugin": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/eslint-webpack-plugin/download/eslint-webpack-plugin-3.1.1.tgz?cache=0&sync_timestamp=1636733909551&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-webpack-plugin%2Fdownload%2Feslint-webpack-plugin-3.1.1.tgz", + "integrity": "sha512-xSucskTN9tOkfW7so4EaiFIkulWLXwCB/15H917lR6pTv0Zot6/fetFucmENRb7J5whVSFKIvwnrnsa78SG2yg==", + "requires": { + "@types/eslint": "^7.28.2", + "jest-worker": "^27.3.1", + "micromatch": "^4.0.4", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1" + } + }, + "espree": { + "version": "9.3.0", + "resolved": "https://registry.npmmirror.com/espree/download/espree-9.3.0.tgz", + "integrity": "sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==", + "requires": { + "acorn": "^8.7.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^3.1.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/esprima/download/esprima-4.0.1.tgz", + "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=" + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz", + "integrity": "sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=", + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "integrity": "sha1-eteWTWeauyi+5yzsY3WLHF0smSE=", + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/download/estraverse-5.3.0.tgz?cache=0&sync_timestamp=1635237716974&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-5.3.0.tgz", + "integrity": "sha1-LupSkHAvJquP5TcDcP+GyWXSESM=" + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/estree-walker/download/estree-walker-1.0.1.tgz", + "integrity": "sha1-MbxdYSyWtwQQa0d+bdXYqhOMtwA=" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz", + "integrity": "sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.nlark.com/etag/download/etag-1.8.1.tgz?cache=0&sync_timestamp=1618847044821&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fetag%2Fdownload%2Fetag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npm.taobao.org/eventemitter3/download/eventemitter3-4.0.7.tgz", + "integrity": "sha1-Lem2j2Uo1WRO9cWVJqG0oHMGFp8=" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/events/download/events-3.3.0.tgz?cache=0&sync_timestamp=1636449286836&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fevents%2Fdownload%2Fevents-3.3.0.tgz", + "integrity": "sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA=" + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/execa/download/execa-5.1.1.tgz?cache=0&sync_timestamp=1637147254617&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fexeca%2Fdownload%2Fexeca-5.1.1.tgz", + "integrity": "sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0=", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + }, + "expect": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/expect/download/expect-27.4.2.tgz", + "integrity": "sha512-BjAXIDC6ZOW+WBFNg96J22D27Nq5ohn+oGcuP2rtOtcjuxNoV9McpQ60PcQWhdFOSBIQdR72e+4HdnbZTFSTyg==", + "requires": { + "@jest/types": "^27.4.2", + "ansi-styles": "^5.0.0", + "jest-get-type": "^27.4.0", + "jest-matcher-utils": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-regex-util": "^27.4.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-5.2.0.tgz", + "integrity": "sha1-B0SWkK1Fd30ZJKwquy/IiV26g2s=" + } + } + }, + "express": { + "version": "4.17.2", + "resolved": "https://registry.npmmirror.com/express/download/express-4.17.2.tgz", + "integrity": "sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.4.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.9.6", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.17.2", + "serve-static": "1.14.2", + "setprototypeof": "1.2.0", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/safe-buffer/download/safe-buffer-5.2.1.tgz?cache=0&sync_timestamp=1618847044058&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsafe-buffer%2Fdownload%2Fsafe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=" + } + } + }, + "express-urlrewrite": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/express-urlrewrite/download/express-urlrewrite-1.4.0.tgz", + "integrity": "sha1-mF7gInc7rH7TISbxz57I7kjhKQo=", + "dev": true, + "requires": { + "debug": "*", + "path-to-regexp": "^1.0.3" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/isarray/download/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmmirror.com/path-to-regexp/download/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "requires": { + "isarray": "0.0.1" + } + } + } + }, + "extrude-polyline": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/extrude-polyline/download/extrude-polyline-1.0.6.tgz", + "integrity": "sha1-fmr+HzSaQYL6P2GgDZOXm5XxiyA=", + "requires": { + "as-number": "^1.0.0", + "gl-vec2": "^1.0.0", + "polyline-miter-util": "^1.0.1" + } + }, + "falafel": { + "version": "2.2.4", + "resolved": "https://registry.npm.taobao.org/falafel/download/falafel-2.2.4.tgz", + "integrity": "sha1-tdhsBgwkEqQxZiQ8sbzkTRq9KBk=", + "requires": { + "acorn": "^7.1.1", + "foreach": "^2.0.5", + "isarray": "^2.0.1", + "object-keys": "^1.0.6" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/isarray/download/isarray-2.0.5.tgz", + "integrity": "sha1-ivHkwSISRMxiRZ+vOJQNTmRKVyM=" + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz", + "integrity": "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=" + }, + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.nlark.com/fast-glob/download/fast-glob-3.2.7.tgz", + "integrity": "sha1-/Wy3otfpqnp4RhEehaGW1rL3ZqE=", + "requires": { + "@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" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/download/glob-parent-5.1.2.tgz", + "integrity": "sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz?cache=0&sync_timestamp=1618847186091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffast-json-stable-stringify%2Fdownload%2Ffast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "fast-shallow-equal": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fast-shallow-equal/download/fast-shallow-equal-1.0.0.tgz", + "integrity": "sha1-1NyvZHJEDc76b4i5jjJR4n8lYos=" + }, + "fastest-stable-stringify": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/fastest-stable-stringify/download/fastest-stable-stringify-2.0.2.tgz", + "integrity": "sha1-N1emd09uyN5AxOhuwo6gJBchTHY=" + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.nlark.com/fastq/download/fastq-1.13.0.tgz", + "integrity": "sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw=", + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz?cache=0&sync_timestamp=1621895685919&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffaye-websocket%2Fdownload%2Ffaye-websocket-0.11.4.tgz", + "integrity": "sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo=", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "integrity": "sha1-/IT7OdJwnPP/bXQ3BhV7tXCKioU=", + "requires": { + "bser": "2.1.1" + } + }, + "fecha": { + "version": "4.2.1", + "resolved": "https://registry.npm.taobao.org/fecha/download/fecha-4.2.1.tgz?cache=0&sync_timestamp=1617642874416&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffecha%2Fdownload%2Ffecha-4.2.1.tgz", + "integrity": "sha1-CoOtj4bvYqCR4iu1oDnNA9I+7M4=" + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/figures/download/figures-3.2.0.tgz", + "integrity": "sha1-YlwYvSk8YE3EqN2y/r8MiDQXRq8=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/file-entry-cache/download/file-entry-cache-6.0.1.tgz", + "integrity": "sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "6.2.0", + "resolved": "https://registry.nlark.com/file-loader/download/file-loader-6.2.0.tgz", + "integrity": "sha1-uu98+OGEDfMl5DkLRISHlIDuvk0=", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + } + }, + "filelist": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/filelist/download/filelist-1.0.2.tgz", + "integrity": "sha1-gCAvIUYtTRwuIUEZsYB8G8A4Dls=", + "requires": { + "minimatch": "^3.0.4" + } + }, + "filesize": { + "version": "8.0.6", + "resolved": "https://registry.npmmirror.com/filesize/download/filesize-8.0.6.tgz?cache=0&sync_timestamp=1635763993879&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffilesize%2Fdownload%2Ffilesize-8.0.6.tgz", + "integrity": "sha1-XwwnqhtQf6fZ9yyRKndMpqRBEbE=" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz", + "integrity": "sha1-GRmmp8df44ssfHflGYU12prN2kA=", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.2.tgz", + "integrity": "sha1-t+fQAP/RGTjQ/bBTUG9uur6fWH0=", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.2.tgz?cache=0&sync_timestamp=1630260035189&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffind-cache-dir%2Fdownload%2Ffind-cache-dir-3.3.2.tgz", + "integrity": "sha1-swxbbv8HMHMa6pu9nb7L2AJW1ks=", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "integrity": "sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-5.0.0.tgz", + "integrity": "sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-4.1.0.tgz", + "integrity": "sha1-o0KLtwiLOmApL2aRkni3wpetTwc=", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "integrity": "sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + } + } + }, + "find-root": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/find-root/download/find-root-1.1.0.tgz", + "integrity": "sha1-q8/Iunb3CMQql7PWhbfpRQv7nOQ=" + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-5.0.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-5.0.0.tgz", + "integrity": "sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/flat-cache/download/flat-cache-3.0.4.tgz?cache=0&sync_timestamp=1604831825098&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fflat-cache%2Fdownload%2Fflat-cache-3.0.4.tgz", + "integrity": "sha1-YbAzgwKy/p+Vfcwy/CqH8cMEixE=", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.4", + "resolved": "https://registry.npmmirror.com/flatted/download/flatted-3.2.4.tgz?cache=0&sync_timestamp=1636473925233&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fflatted%2Fdownload%2Fflatted-3.2.4.tgz", + "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==" + }, + "flubber": { + "version": "0.4.2", + "resolved": "https://registry.nlark.com/flubber/download/flubber-0.4.2.tgz", + "integrity": "sha1-FEUtSoOMw7ny+2F12pTjWs1V+6o=", + "requires": { + "d3-array": "^1.2.0", + "d3-polygon": "^1.0.3", + "earcut": "^2.1.1", + "svg-path-properties": "^0.2.1", + "svgpath": "^2.2.1", + "topojson-client": "^3.0.0" + }, + "dependencies": { + "svg-path-properties": { + "version": "0.2.2", + "resolved": "https://registry.npm.taobao.org/svg-path-properties/download/svg-path-properties-0.2.2.tgz", + "integrity": "sha1-sHPYG+cpLq4OIzq4qD9Y3CcRMpY=" + } + } + }, + "fmin": { + "version": "0.0.2", + "resolved": "https://registry.nlark.com/fmin/download/fmin-0.0.2.tgz", + "integrity": "sha1-Wbu0DUP/3ByUzQClaMQflfGXMBc=", + "requires": { + "contour_plot": "^0.0.1", + "json2module": "^0.0.3", + "rollup": "^0.25.8", + "tape": "^4.5.1", + "uglify-js": "^2.6.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + } + }, + "rollup": { + "version": "0.25.8", + "resolved": "https://registry.npmmirror.com/rollup/download/rollup-0.25.8.tgz", + "integrity": "sha1-v2zoO4dRDRY0Ru6qV37WpvxYNeA=", + "requires": { + "chalk": "^1.1.1", + "minimist": "^1.2.0", + "source-map-support": "^0.3.2" + } + }, + "source-map": { + "version": "0.1.32", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.1.32.tgz", + "integrity": "sha1-yLbBZ3l7pHQKjqMyUhYv8IWRsmY=", + "requires": { + "amdefine": ">=0.0.4" + } + }, + "source-map-support": { + "version": "0.3.3", + "resolved": "https://registry.npmmirror.com/source-map-support/download/source-map-support-0.3.3.tgz?cache=0&sync_timestamp=1637320322789&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsource-map-support%2Fdownload%2Fsource-map-support-0.3.3.tgz", + "integrity": "sha1-NJAJd9W6PwfHdX7nLnO7GptTdU8=", + "requires": { + "source-map": "0.1.32" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-3.0.1.tgz?cache=0&sync_timestamp=1632420562057&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "follow-redirects": { + "version": "1.14.6", + "resolved": "https://registry.npmmirror.com/follow-redirects/download/follow-redirects-1.14.6.tgz", + "integrity": "sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A==" + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.nlark.com/for-each/download/for-each-0.3.3.tgz", + "integrity": "sha1-abRH6IoKXTLD5whPPxcQA0shN24=", + "requires": { + "is-callable": "^1.1.3" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/foreach/download/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" + }, + "fork-ts-checker-webpack-plugin": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/fork-ts-checker-webpack-plugin/download/fork-ts-checker-webpack-plugin-6.5.0.tgz", + "integrity": "sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-6.0.0.tgz", + "integrity": "sha1-2k/uhTxS9rHmk19BwaL8UL1KmYI=", + "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" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.nlark.com/fs-extra/download/fs-extra-9.1.0.tgz", + "integrity": "sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0=", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-2.7.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-2.7.0.tgz", + "integrity": "sha1-FxUfdtjq5n+793lgwzxnatn078c=", + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/tapable/download/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + } + } + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/form-data/download/form-data-3.0.1.tgz", + "integrity": "sha1-69U3kbeDVqma+aMA1CgsTV65dV8=", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/forwarded/download/forwarded-0.2.0.tgz?cache=0&sync_timestamp=1622503451002&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fforwarded%2Fdownload%2Fforwarded-0.2.0.tgz", + "integrity": "sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=" + }, + "fraction.js": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/fraction.js/download/fraction.js-4.1.2.tgz?cache=0&sync_timestamp=1636702916529&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffraction.js%2Fdownload%2Ffraction.js-4.1.2.tgz", + "integrity": "sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.nlark.com/fresh/download/fresh-0.5.2.tgz?cache=0&sync_timestamp=1618846949012&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffresh%2Fdownload%2Ffresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.nlark.com/fs-extra/download/fs-extra-10.0.0.tgz", + "integrity": "sha1-n/YbZV3eU/s0qC34S7IUzoAuF8E=", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/fs-monkey/download/fs-monkey-1.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffs-monkey%2Fdownload%2Ffs-monkey-1.0.3.tgz", + "integrity": "sha1-rjrJLVO7Mo7+DpodlUH2rY1I4tM=" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/fs.realpath/download/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmmirror.com/fsevents/download/fsevents-2.3.2.tgz", + "integrity": "sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz", + "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=" + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz", + "integrity": "sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=" + }, + "geojson-vt": { + "version": "3.2.1", + "resolved": "https://registry.npm.taobao.org/geojson-vt/download/geojson-vt-3.2.1.tgz", + "integrity": "sha1-+K22FNLB0/bufEJlytS7861gyLc=" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz", + "integrity": "sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "integrity": "sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/get-own-enumerable-property-symbols/download/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha1-tf3nfyLL4185C04ImSLFC85u9mQ=" + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/get-package-type/download/get-package-type-0.1.0.tgz", + "integrity": "sha1-jeLYA8/0TfO8bEVuZmizbDkm4Ro=" + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-6.0.1.tgz", + "integrity": "sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=" + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/get-symbol-description/download/get-symbol-description-1.0.0.tgz", + "integrity": "sha1-f9uByQAQH71WTdXxowr1qtweWNY=", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "gl-matrix": { + "version": "3.4.3", + "resolved": "https://registry.npmmirror.com/gl-matrix/download/gl-matrix-3.4.3.tgz", + "integrity": "sha1-/BGR6DIACf1NIOkzlZXGBB3cIsk=" + }, + "gl-vec2": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/gl-vec2/download/gl-vec2-1.3.0.tgz", + "integrity": "sha1-g9Ry7UYDTejgnLyFcSP7bIHFEZk=" + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/glob/download/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "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" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/glob-parent/download/glob-parent-6.0.2.tgz", + "integrity": "sha1-bSN9mQg5UMeSkPJMdkKj3poo+eM=", + "requires": { + "is-glob": "^4.0.3" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/glob-to-regexp/download/glob-to-regexp-0.4.1.tgz", + "integrity": "sha1-x1KXCHyFG5pXi9IX3VmpL1n+VG4=" + }, + "global-dirs": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/global-dirs/download/global-dirs-3.0.0.tgz?cache=0&sync_timestamp=1610454843389&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobal-dirs%2Fdownload%2Fglobal-dirs-3.0.0.tgz", + "integrity": "sha1-cKdv6E6jFas3sfVXbL3n1I73JoY=", + "dev": true, + "requires": { + "ini": "2.0.0" + }, + "dependencies": { + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ini/download/ini-2.0.0.tgz?cache=0&sync_timestamp=1607907788001&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fini%2Fdownload%2Fini-2.0.0.tgz", + "integrity": "sha1-5f1Vbs3VcmvpePoQAYYurLCpS8U=", + "dev": true + } + } + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/global-modules/download/global-modules-2.0.0.tgz", + "integrity": "sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=", + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/global-prefix/download/global-prefix-3.0.0.tgz", + "integrity": "sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=", + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmmirror.com/globals/download/globals-11.12.0.tgz", + "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=" + }, + "globby": { + "version": "11.0.4", + "resolved": "https://registry.nlark.com/globby/download/globby-11.0.4.tgz?cache=0&sync_timestamp=1629801042235&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobby%2Fdownload%2Fglobby-11.0.4.tgz", + "integrity": "sha1-LLr/d8Lypi5x6bKBOme5ejowAaU=", + "requires": { + "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" + }, + "dependencies": { + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/ignore/download/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" + } + } + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmmirror.com/got/download/got-9.6.0.tgz", + "integrity": "sha1-7fRefWf5lUVwXeH3u+7rEhdl7YU=", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "dependencies": { + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz", + "integrity": "sha1-wbJVV189wh1Zv8ec09K0axw6VLU=", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + } + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmmirror.com/graceful-fs/download/graceful-fs-4.2.8.tgz", + "integrity": "sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo=" + }, + "graphlib": { + "version": "2.1.8", + "resolved": "https://registry.npm.taobao.org/graphlib/download/graphlib-2.1.8.tgz", + "integrity": "sha1-V2HUFHN4cAhMkux7XbywWSydNdo=", + "requires": { + "lodash": "^4.17.15" + } + }, + "grid-index": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/grid-index/download/grid-index-1.1.0.tgz", + "integrity": "sha1-l/giHt7BAmyDd7hkRqfHHnlSLqc=" + }, + "gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/gzip-size/download/gzip-size-6.0.0.tgz", + "integrity": "sha1-BlNn/VDCOcBnHLy61b4+LusQ5GI=", + "requires": { + "duplexer": "^0.1.2" + } + }, + "hammerjs": { + "version": "2.0.8", + "resolved": "https://registry.npm.taobao.org/hammerjs/download/hammerjs-2.0.8.tgz", + "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=" + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/handle-thing/download/handle-thing-2.0.1.tgz", + "integrity": "sha1-hX95zjWVgMNA1DCBzGSJcNC7I04=" + }, + "harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.nlark.com/harmony-reflect/download/harmony-reflect-1.6.2.tgz", + "integrity": "sha1-Mey9MuZIo00DDYattn1NR1R/5xA=" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/has/download/has-1.0.3.tgz", + "integrity": "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/has-ansi/download/has-ansi-2.0.0.tgz?cache=0&sync_timestamp=1631556941939&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhas-ansi%2Fdownload%2Fhas-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + } + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz", + "integrity": "sha1-ZP5qywIGc+O3jbA1pa9pqp0HsRM=" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/has-symbols/download/has-symbols-1.0.2.tgz", + "integrity": "sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-tostringtag/download/has-tostringtag-1.0.0.tgz", + "integrity": "sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/has-yarn/download/has-yarn-2.1.0.tgz?cache=0&sync_timestamp=1631298711761&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhas-yarn%2Fdownload%2Fhas-yarn-2.1.0.tgz", + "integrity": "sha1-E34RNUp7W/EapctknPDG8/8rLnc=", + "dev": true + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/he/download/he-1.2.0.tgz", + "integrity": "sha1-hK5l+n6vsWX922FWauFLrwVmTw8=" + }, + "heatmap.js": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/heatmap.js/-/heatmap.js-2.0.5.tgz", + "integrity": "sha512-CG2gYFP5Cv9IQCXEg3ZRxnJDyAilhWnQlAuHYGuWVzv6mFtQelS1bR9iN80IyDmFECbFPbg6I0LR5uAFHgCthw==" + }, + "history": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/history/download/history-5.2.0.tgz", + "integrity": "sha512-uPSF6lAJb3nSePJ43hN3eKj1dTWpN9gMod0ZssbFTIsen+WehTmEadgL+kg78xLJFdRfrrC//SavDzmRVdE+Ig==", + "requires": { + "@babel/runtime": "^7.7.6" + } + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.nlark.com/hoist-non-react-statics/download/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha1-7OCsr3HWLClpwuxZ/v9CpLGoW0U=", + "requires": { + "react-is": "^16.7.0" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz", + "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=" + } + } + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/hoopy/download/hoopy-0.1.4.tgz", + "integrity": "sha1-YJIH1mEQADOpqUAq096mdzgcGx0=" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npm.taobao.org/hpack.js/download/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.nlark.com/readable-stream/download/readable-stream-2.3.7.tgz", + "integrity": "sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=", + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/string_decoder/download/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-2.0.1.tgz?cache=0&sync_timestamp=1632005107907&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhtml-encoding-sniffer%2Fdownload%2Fhtml-encoding-sniffer-2.0.1.tgz", + "integrity": "sha1-QqbcT9M/ACgRduiyN1nKTk+hhfM=", + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-entities": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/html-entities/download/html-entities-2.3.2.tgz", + "integrity": "sha1-dgtARoXLHXlOT0t0QzLjsA3P5Ig=" + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/html-escaper/download/html-escaper-2.0.2.tgz", + "integrity": "sha1-39YAJ9o2o238viNiYsAKWCJoFFM=" + }, + "html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/html-minifier-terser/download/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "requires": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + } + }, + "html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/html-webpack-plugin/download/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "requires": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + } + }, + "html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "requires": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/htmlparser2/download/htmlparser2-6.1.0.tgz?cache=0&sync_timestamp=1636640862971&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fhtmlparser2%2Fdownload%2Fhtmlparser2-6.1.0.tgz", + "integrity": "sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/http-cache-semantics/download/http-cache-semantics-4.1.0.tgz", + "integrity": "sha1-SekcXL82yblLz81xwj1SSex045A=", + "dev": true + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.nlark.com/http-deceiver/download/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/http-errors/download/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + } + }, + "http-parser-js": { + "version": "0.5.5", + "resolved": "https://registry.npmmirror.com/http-parser-js/download/http-parser-js-0.5.5.tgz", + "integrity": "sha512-x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA==" + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.nlark.com/http-proxy/download/http-proxy-1.18.1.tgz", + "integrity": "sha1-QBVB8FNIhLv5UmAzTnL4juOXZUk=", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/http-proxy-agent/download/http-proxy-agent-4.0.1.tgz", + "integrity": "sha1-ioyO9/WTLM+VPClsqCkblap0qjo=", + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "http-proxy-middleware": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/http-proxy-middleware/download/http-proxy-middleware-2.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhttp-proxy-middleware%2Fdownload%2Fhttp-proxy-middleware-2.0.1.tgz", + "integrity": "sha1-fvNBekeft2ZqVx4Jlmxmo5vSwV8=", + "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" + } + }, + "https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/https-proxy-agent/download/https-proxy-agent-5.0.0.tgz", + "integrity": "sha1-4qkFQqu2inYuCghQ9sntrf2FBrI=", + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/human-signals/download/human-signals-2.1.0.tgz", + "integrity": "sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=" + }, + "hyphenate-style-name": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/hyphenate-style-name/download/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha1-aRh5r44iCupXUOiCfbTvYqVONh0=" + }, + "i18next": { + "version": "21.6.6", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-21.6.6.tgz", + "integrity": "sha512-K1Pw8K+nHVco56PO6UrqNq4K/ZVbb2eqBQwPqmzYDm4tGQYXBjdz8jrnvuNvV5STaE8oGpWKQMxHOvh2zhVE7Q==", + "requires": { + "@babel/runtime": "^7.12.0" + } + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.6.3.tgz", + "integrity": "sha1-pS+AvzjaGVLrXGgXkHGYcaGnJQE=", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-5.1.0.tgz", + "integrity": "sha1-xr5oWKvQE9do6YNmrkfiXViHsa4=", + "requires": {} + }, + "idb": { + "version": "6.1.5", + "resolved": "https://registry.npmmirror.com/idb/download/idb-6.1.5.tgz", + "integrity": "sha1-28U+et8ax8Wfmyv1bgC06k/OjHs=" + }, + "identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/identity-obj-proxy/download/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "requires": { + "harmony-reflect": "^1.4.6" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/ieee754/download/ieee754-1.2.1.tgz", + "integrity": "sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=" + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmmirror.com/ignore/download/ignore-4.0.6.tgz", + "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=" + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmmirror.com/image-size/download/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "optional": true + }, + "immer": { + "version": "9.0.7", + "resolved": "https://registry.npmmirror.com/immer/download/immer-9.0.7.tgz", + "integrity": "sha512-KGllzpbamZDvOIxnmJ0jI840g7Oikx58lBPWV0hUh7dtAyZpFqqrBZdKka5GlTwMTZ1Tjc/bKKW4VSFAt6BqMA==" + }, + "import-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/import-cwd/download/import-cwd-3.0.0.tgz", + "integrity": "sha1-IIRVR3GAFRJuqbNna3WS+4vUz5I=", + "requires": { + "import-from": "^3.0.0" + } + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npm.taobao.org/import-fresh/download/import-fresh-3.3.0.tgz?cache=0&sync_timestamp=1608469520474&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fimport-fresh%2Fdownload%2Fimport-fresh-3.3.0.tgz", + "integrity": "sha1-NxYsJfy566oublPVtNiM4X2eDCs=", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz", + "integrity": "sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=" + } + } + }, + "import-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/import-from/download/import-from-3.0.0.tgz", + "integrity": "sha1-BVz+w4zVon2AV8pRN219O/CJGWY=", + "requires": { + "resolve-from": "^5.0.0" + } + }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/import-lazy/download/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "dev": true + }, + "import-local": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/import-local/download/import-local-3.0.3.tgz", + "integrity": "sha1-TVHCxJXKk5PaJZ7Ga2LgIpICEeA=", + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "integrity": "sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-5.0.0.tgz", + "integrity": "sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-4.1.0.tgz", + "integrity": "sha1-o0KLtwiLOmApL2aRkni3wpetTwc=", + "requires": { + "p-limit": "^2.2.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "integrity": "sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=", + "requires": { + "find-up": "^4.0.0" + } + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npm.taobao.org/imurmurhash/download/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz", + "integrity": "sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz", + "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npm.taobao.org/ini/download/ini-1.3.8.tgz?cache=0&sync_timestamp=1607907788001&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fini%2Fdownload%2Fini-1.3.8.tgz", + "integrity": "sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=" + }, + "inline-style-prefixer": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/inline-style-prefixer/download/inline-style-prefixer-6.0.1.tgz", + "integrity": "sha1-xcDkO6iDFwevxfW7/Zft9Fwfp64=", + "requires": { + "css-in-js-utils": "^2.0.0" + } + }, + "insert-css": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/insert-css/download/insert-css-2.0.0.tgz", + "integrity": "sha1-610Ql7dUL0x56jBg067gfQU4gPQ=" + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/internal-slot/download/internal-slot-1.0.3.tgz", + "integrity": "sha1-c0fjB97uovqsKsYgXUvH00ln9Zw=", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "integrity": "sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "inversify": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/inversify/download/inversify-5.1.1.tgz?cache=0&sync_timestamp=1636450865053&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Finversify%2Fdownload%2Finversify-5.1.1.tgz", + "integrity": "sha1-b71mjFkTN0BOAFoZRr/g2ALAhzA=" + }, + "inversify-inject-decorators": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/inversify-inject-decorators/download/inversify-inject-decorators-3.1.0.tgz", + "integrity": "sha1-2ZQQgLrXfOyKZe4p2QXk1dc+HpU=" + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.nlark.com/ip/download/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-2.0.1.tgz", + "integrity": "sha1-7KJWp6h36Reus2iwp0l930LvgcA=" + }, + "is-any-array": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/is-any-array/download/is-any-array-1.0.1.tgz", + "integrity": "sha1-Bf7ewaTc7RhUvSebLsXfQx5b6p4=" + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/is-arguments/download/is-arguments-1.1.1.tgz?cache=0&sync_timestamp=1628202633313&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-arguments%2Fdownload%2Fis-arguments-1.1.1.tgz", + "integrity": "sha1-FbP4j9oB8ql/7ITKdhpWDxI++ps=", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-bigint/download/is-bigint-1.0.4.tgz?cache=0&sync_timestamp=1628747504782&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-bigint%2Fdownload%2Fis-bigint-1.0.4.tgz", + "integrity": "sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM=", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz", + "integrity": "sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.2.tgz", + "integrity": "sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk=", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npm.taobao.org/is-buffer/download/is-buffer-1.1.6.tgz?cache=0&sync_timestamp=1604432327227&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-buffer%2Fdownload%2Fis-buffer-1.1.6.tgz", + "integrity": "sha1-76ouqdqg16suoTqXsritUf776L4=" + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.4.tgz", + "integrity": "sha1-RzAdWN0CWUB4ZVR4U99tYf5HGUU=" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/is-ci/download/is-ci-2.0.0.tgz?cache=0&sync_timestamp=1635261090481&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fis-ci%2Fdownload%2Fis-ci-2.0.0.tgz", + "integrity": "sha1-a8YzQYGBDgS1wis9WJ/cpVAmQEw=", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": { + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ci-info/download/ci-info-2.0.0.tgz", + "integrity": "sha1-Z6npZL4xpR4V5QENWObxKDQAL0Y=", + "dev": true + } + } + }, + "is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmmirror.com/is-core-module/download/is-core-module-2.8.0.tgz?cache=0&sync_timestamp=1634236702465&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fis-core-module%2Fdownload%2Fis-core-module-2.8.0.tgz", + "integrity": "sha1-AyEzbD0JJeSX/Zf12VyxFKXM1Ug=", + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.5.tgz?cache=0&sync_timestamp=1628202499310&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-date-object%2Fdownload%2Fis-date-object-1.0.5.tgz", + "integrity": "sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8=", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/is-docker/download/is-docker-2.2.1.tgz", + "integrity": "sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao=" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/is-extglob/download/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-fullwidth-code-point%2Fdownload%2Fis-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=" + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz", + "integrity": "sha1-fRQK3DiarzARqPKipM+m+q3/sRg=" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/download/is-glob-4.0.3.tgz?cache=0&sync_timestamp=1632934586547&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fis-glob%2Fdownload%2Fis-glob-4.0.3.tgz", + "integrity": "sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/is-installed-globally/download/is-installed-globally-0.4.0.tgz", + "integrity": "sha1-mg/UB5ScMPhutpWe8beZTtC3tSA=", + "dev": true, + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + } + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-module/download/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/is-negative-zero/download/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + }, + "is-npm": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/is-npm/download/is-npm-5.0.0.tgz", + "integrity": "sha1-Q+jWXMVuG2f41HJiz2ZwmRk/Rag=", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz", + "integrity": "sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=" + }, + "is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-number-object/download/is-number-object-1.0.6.tgz", + "integrity": "sha1-anqvg4x/BoalC0VT9+VKlklOifA=", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/is-obj/download/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-path-cwd/download/is-path-cwd-2.2.0.tgz", + "integrity": "sha1-Z9Q7gmZKe1GR/ZEZEn6zAASKn9s=" + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/is-path-inside/download/is-path-inside-3.0.3.tgz?cache=0&sync_timestamp=1620047320094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-inside%2Fdownload%2Fis-path-inside-3.0.3.tgz", + "integrity": "sha1-0jE2LlOgf/Kw4Op/7QSRYf/RYoM=" + }, + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-plain-obj/download/is-plain-obj-3.0.0.tgz?cache=0&sync_timestamp=1618600554597&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-plain-obj%2Fdownload%2Fis-plain-obj-3.0.0.tgz", + "integrity": "sha1-r28uoUrFpkYYOlu9tbqrvBVq2dc=" + }, + "is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/is-potential-custom-element-name/download/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha1-Fx7W8Z46xVQ5Tt94yqBXhKRb67U=" + }, + "is-promise": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/is-promise/download/is-promise-2.2.2.tgz", + "integrity": "sha1-OauVnMv5p3TPB597QMeib3YxNfE=", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.4.tgz?cache=0&sync_timestamp=1628221905423&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.4.tgz", + "integrity": "sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-regexp/download/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + }, + "is-root": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/is-root/download/is-root-2.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-root%2Fdownload%2Fis-root-2.1.0.tgz", + "integrity": "sha1-gJ4YEpzxEpZEMCpPhUQDXVGYSpw=" + }, + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/is-shared-array-buffer/download/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha1-l7DIX72stZycRG/mU7gs8rW3z+Y=" + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-2.0.1.tgz", + "integrity": "sha1-+sHj1TuXrVqdCunO8jifWBClwHc=" + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.7.tgz", + "integrity": "sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "integrity": "sha1-ptrJO2NbBjymhyI23oiRClevE5w=", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-typedarray/download/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/is-weakref/download/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmmirror.com/is-what/download/is-what-3.14.1.tgz", + "integrity": "sha1-4SIvRt3ahd6tD9HJ3xMXYOd3VcE=" + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-2.2.0.tgz", + "integrity": "sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE=", + "requires": { + "is-docker": "^2.0.0" + } + }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/is-yarn-global/download/is-yarn-global-0.3.0.tgz?cache=0&sync_timestamp=1619356554445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-yarn-global%2Fdownload%2Fis-yarn-global-0.3.0.tgz", + "integrity": "sha1-1QLTOCWQ6jAEiTdGdUyJE5lz4jI=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/isarray/download/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/isobject/download/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/istanbul-lib-coverage/download/istanbul-lib-coverage-3.2.0.tgz?cache=0&sync_timestamp=1634527300482&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fistanbul-lib-coverage%2Fdownload%2Fistanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha1-GJ55CdCjn6Wj361bA/cZR3cBkdM=" + }, + "istanbul-lib-instrument": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/istanbul-lib-instrument/download/istanbul-lib-instrument-5.1.0.tgz?cache=0&sync_timestamp=1635386650079&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fistanbul-lib-instrument%2Fdownload%2Fistanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha1-e0kZi2V7J6cwuOnLYB8eG/8kxZo=", + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/istanbul-lib-report/download/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha1-dRj+UupE3jcvRgp2tezan/tz2KY=", + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/istanbul-lib-source-maps/download/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha1-iV86cJ/PujTG3lpCk5Ai8+Q1hVE=", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "istanbul-reports": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/istanbul-reports/download/istanbul-reports-3.1.3.tgz", + "integrity": "sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==", + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jake": { + "version": "10.8.2", + "resolved": "https://registry.nlark.com/jake/download/jake-10.8.2.tgz", + "integrity": "sha1-68nehVgWCmbYLQ6txqLlj7xQCns=", + "requires": { + "async": "0.9.x", + "chalk": "^2.4.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmmirror.com/async/download/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" + } + } + }, + "jest": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest/download/jest-27.4.5.tgz", + "integrity": "sha512-uT5MiVN3Jppt314kidCk47MYIRilJjA/l2mxwiuzzxGUeJIvA8/pDaJOAX5KWvjAo7SCydcW0/4WEtgbLMiJkg==", + "requires": { + "@jest/core": "^27.4.5", + "import-local": "^3.0.2", + "jest-cli": "^27.4.5" + } + }, + "jest-changed-files": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-changed-files/download/jest-changed-files-27.4.2.tgz", + "integrity": "sha512-/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A==", + "requires": { + "@jest/types": "^27.4.2", + "execa": "^5.0.0", + "throat": "^6.0.1" + } + }, + "jest-circus": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-circus/download/jest-circus-27.4.5.tgz", + "integrity": "sha512-eTNWa9wsvBwPykhMMShheafbwyakcdHZaEYh5iRrQ0PFJxkDP/e3U/FvzGuKWu2WpwUA3C3hPlfpuzvOdTVqnw==", + "requires": { + "@jest/environment": "^27.4.4", + "@jest/test-result": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.4.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.4.2", + "jest-matcher-utils": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-runtime": "^27.4.5", + "jest-snapshot": "^27.4.5", + "jest-util": "^27.4.2", + "pretty-format": "^27.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-cli": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-cli/download/jest-cli-27.4.5.tgz", + "integrity": "sha512-hrky3DSgE0u7sQxaCL7bdebEPHx5QzYmrGuUjaPLmPE8jx5adtvGuOlRspvMoVLTTDOHRnZDoRLYJuA+VCI7Hg==", + "requires": { + "@jest/core": "^27.4.5", + "@jest/test-result": "^27.4.2", + "@jest/types": "^27.4.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "jest-config": "^27.4.5", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-config": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-config/download/jest-config-27.4.5.tgz", + "integrity": "sha512-t+STVJtPt+fpqQ8GBw850NtSQbnDOw/UzdPfzDaHQ48/AylQlW7LHj3dH+ndxhC1UxJ0Q3qkq7IH+nM1skwTwA==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^27.4.5", + "@jest/types": "^27.4.2", + "babel-jest": "^27.4.5", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-circus": "^27.4.5", + "jest-environment-jsdom": "^27.4.4", + "jest-environment-node": "^27.4.4", + "jest-get-type": "^27.4.0", + "jest-jasmine2": "^27.4.5", + "jest-regex-util": "^27.4.0", + "jest-resolve": "^27.4.5", + "jest-runner": "^27.4.5", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "micromatch": "^4.0.4", + "pretty-format": "^27.4.2", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-diff/download/jest-diff-27.4.2.tgz", + "integrity": "sha512-ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q==", + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^27.4.0", + "jest-get-type": "^27.4.0", + "pretty-format": "^27.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/jest-docblock/download/jest-docblock-27.4.0.tgz", + "integrity": "sha512-7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg==", + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-each/download/jest-each-27.4.2.tgz", + "integrity": "sha512-53V2MNyW28CTruB3lXaHNk6PkiIFuzdOC9gR3C6j8YE/ACfrPnz+slB0s17AgU1TtxNzLuHyvNlLJ+8QYw9nBg==", + "requires": { + "@jest/types": "^27.4.2", + "chalk": "^4.0.0", + "jest-get-type": "^27.4.0", + "jest-util": "^27.4.2", + "pretty-format": "^27.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-jsdom": { + "version": "27.4.4", + "resolved": "https://registry.npmmirror.com/jest-environment-jsdom/download/jest-environment-jsdom-27.4.4.tgz", + "integrity": "sha512-cYR3ndNfHBqQgFvS1RL7dNqSvD//K56j/q1s2ygNHcfTCAp12zfIromO1w3COmXrxS8hWAh7+CmZmGCIoqGcGA==", + "requires": { + "@jest/environment": "^27.4.4", + "@jest/fake-timers": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "jest-mock": "^27.4.2", + "jest-util": "^27.4.2", + "jsdom": "^16.6.0" + } + }, + "jest-environment-node": { + "version": "27.4.4", + "resolved": "https://registry.npmmirror.com/jest-environment-node/download/jest-environment-node-27.4.4.tgz", + "integrity": "sha512-D+v3lbJ2GjQTQR23TK0kY3vFVmSeea05giInI41HHOaJnAwOnmUHTZgUaZL+VxUB43pIzoa7PMwWtCVlIUoVoA==", + "requires": { + "@jest/environment": "^27.4.4", + "@jest/fake-timers": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "jest-mock": "^27.4.2", + "jest-util": "^27.4.2" + } + }, + "jest-get-type": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/jest-get-type/download/jest-get-type-27.4.0.tgz", + "integrity": "sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==" + }, + "jest-haste-map": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-haste-map/download/jest-haste-map-27.4.5.tgz", + "integrity": "sha512-oJm1b5qhhPs78K24EDGifWS0dELYxnoBiDhatT/FThgB9yxqUm5F6li3Pv+Q+apMBmmPNzOBnZ7ZxWMB1Leq1Q==", + "requires": { + "@jest/types": "^27.4.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^27.4.0", + "jest-serializer": "^27.4.0", + "jest-util": "^27.4.2", + "jest-worker": "^27.4.5", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-jasmine2/download/jest-jasmine2-27.4.5.tgz", + "integrity": "sha512-oUnvwhJDj2LhOiUB1kdnJjkx8C5PwgUZQb9urF77mELH9DGR4e2GqpWQKBOYXWs5+uTN9BGDqRz3Aeg5Wts7aw==", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^27.4.4", + "@jest/source-map": "^27.4.0", + "@jest/test-result": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.4.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.4.2", + "jest-matcher-utils": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-runtime": "^27.4.5", + "jest-snapshot": "^27.4.5", + "jest-util": "^27.4.2", + "pretty-format": "^27.4.2", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-leak-detector": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-leak-detector/download/jest-leak-detector-27.4.2.tgz", + "integrity": "sha512-ml0KvFYZllzPBJWDei3mDzUhyp/M4ubKebX++fPaudpe8OsxUE+m+P6ciVLboQsrzOCWDjE20/eXew9QMx/VGw==", + "requires": { + "jest-get-type": "^27.4.0", + "pretty-format": "^27.4.2" + } + }, + "jest-matcher-utils": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-matcher-utils/download/jest-matcher-utils-27.4.2.tgz", + "integrity": "sha512-jyP28er3RRtMv+fmYC/PKG8wvAmfGcSNproVTW2Y0P/OY7/hWUOmsPfxN1jOhM+0u2xU984u2yEagGivz9OBGQ==", + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^27.4.2", + "jest-get-type": "^27.4.0", + "pretty-format": "^27.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-message-util/download/jest-message-util-27.4.2.tgz", + "integrity": "sha512-OMRqRNd9E0DkBLZpFtZkAGYOXl6ZpoMtQJWTAREJKDOFa0M6ptB7L67tp+cszMBkvSgKOhNtQp2Vbcz3ZZKo/w==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.4.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "pretty-format": "^27.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-mock/download/jest-mock-27.4.2.tgz", + "integrity": "sha512-PDDPuyhoukk20JrQKeofK12hqtSka7mWH0QQuxSNgrdiPsrnYYLS6wbzu/HDlxZRzji5ylLRULeuI/vmZZDrYA==", + "requires": { + "@jest/types": "^27.4.2", + "@types/node": "*" + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmmirror.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha1-twSsCuAoqJEIpNBAs/kZ393I4zw=", + "requires": {} + }, + "jest-regex-util": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/jest-regex-util/download/jest-regex-util-27.4.0.tgz", + "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==" + }, + "jest-resolve": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-resolve/download/jest-resolve-27.4.5.tgz", + "integrity": "sha512-xU3z1BuOz/hUhVUL+918KqUgK+skqOuUsAi7A+iwoUldK6/+PW+utK8l8cxIWT9AW7IAhGNXjSAh1UYmjULZZw==", + "requires": { + "@jest/types": "^27.4.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.4.5", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-resolve-dependencies/download/jest-resolve-dependencies-27.4.5.tgz", + "integrity": "sha512-elEVvkvRK51y037NshtEkEnukMBWvlPzZHiL847OrIljJ8yIsujD2GXRPqDXC4rEVKbcdsy7W0FxoZb4WmEs7w==", + "requires": { + "@jest/types": "^27.4.2", + "jest-regex-util": "^27.4.0", + "jest-snapshot": "^27.4.5" + } + }, + "jest-runner": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-runner/download/jest-runner-27.4.5.tgz", + "integrity": "sha512-/irauncTfmY1WkTaRQGRWcyQLzK1g98GYG/8QvIPviHgO1Fqz1JYeEIsSfF+9mc/UTA6S+IIHFgKyvUrtiBIZg==", + "requires": { + "@jest/console": "^27.4.2", + "@jest/environment": "^27.4.4", + "@jest/test-result": "^27.4.2", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-docblock": "^27.4.0", + "jest-environment-jsdom": "^27.4.4", + "jest-environment-node": "^27.4.4", + "jest-haste-map": "^27.4.5", + "jest-leak-detector": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-resolve": "^27.4.5", + "jest-runtime": "^27.4.5", + "jest-util": "^27.4.2", + "jest-worker": "^27.4.5", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-runtime": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-runtime/download/jest-runtime-27.4.5.tgz", + "integrity": "sha512-CIYqwuJQXHQtPd/idgrx4zgJ6iCb6uBjQq1RSAGQrw2S8XifDmoM1Ot8NRd80ooAm+ZNdHVwsktIMGlA1F1FAQ==", + "requires": { + "@jest/console": "^27.4.2", + "@jest/environment": "^27.4.4", + "@jest/globals": "^27.4.4", + "@jest/source-map": "^27.4.0", + "@jest/test-result": "^27.4.2", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.4.5", + "jest-message-util": "^27.4.2", + "jest-mock": "^27.4.2", + "jest-regex-util": "^27.4.0", + "jest-resolve": "^27.4.5", + "jest-snapshot": "^27.4.5", + "jest-util": "^27.4.2", + "jest-validate": "^27.4.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-serializer": { + "version": "27.4.0", + "resolved": "https://registry.npmmirror.com/jest-serializer/download/jest-serializer-27.4.0.tgz", + "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==", + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + } + }, + "jest-snapshot": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-snapshot/download/jest-snapshot-27.4.5.tgz", + "integrity": "sha512-eCi/iM1YJFrJWiT9de4+RpWWWBqsHiYxFG9V9o/n0WXs6GpW4lUt4FAHAgFPTLPqCUVzrMQmSmTZSgQzwqR7IQ==", + "requires": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/parser": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.4.5", + "@jest/types": "^27.4.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.4.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^27.4.2", + "jest-get-type": "^27.4.0", + "jest-haste-map": "^27.4.5", + "jest-matcher-utils": "^27.4.2", + "jest-message-util": "^27.4.2", + "jest-resolve": "^27.4.5", + "jest-util": "^27.4.2", + "natural-compare": "^1.4.0", + "pretty-format": "^27.4.2", + "semver": "^7.3.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-util": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-util/download/jest-util-27.4.2.tgz", + "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==", + "requires": { + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.4", + "picomatch": "^2.2.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-validate/download/jest-validate-27.4.2.tgz", + "integrity": "sha512-hWYsSUej+Fs8ZhOm5vhWzwSLmVaPAxRy+Mr+z5MzeaHm9AxUpXdoVMEW4R86y5gOobVfBsMFLk4Rb+QkiEpx1A==", + "requires": { + "@jest/types": "^27.4.2", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.4.0", + "leven": "^3.1.0", + "pretty-format": "^27.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watch-typeahead": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/jest-watch-typeahead/download/jest-watch-typeahead-1.0.0.tgz?cache=0&sync_timestamp=1632899984169&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-watch-typeahead%2Fdownload%2Fjest-watch-typeahead-1.0.0.tgz", + "integrity": "sha1-TeLKHrWWrLGIl1KvurhLdPzZkXM=", + "requires": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^27.0.0", + "jest-watcher": "^27.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-6.0.1.tgz", + "integrity": "sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "char-regex": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/char-regex/download/char-regex-2.0.0.tgz", + "integrity": "sha1-FvmPP4dO3O3dMA/aXVjfOAp2QaY=" + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/slash/download/slash-4.0.0.tgz", + "integrity": "sha1-JCI3IXbExsWt214q2oha+YSzlqc=" + }, + "string-length": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/string-length/download/string-length-5.0.1.tgz?cache=0&sync_timestamp=1631558154323&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstring-length%2Fdownload%2Fstring-length-5.0.1.tgz", + "integrity": "sha1-PWR/SXtujo1B5CL34LI7xTbIOB4=", + "requires": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-7.0.1.tgz?cache=0&sync_timestamp=1632420562057&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-7.0.1.tgz", + "integrity": "sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I=", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/jest-watcher/download/jest-watcher-27.4.2.tgz", + "integrity": "sha512-NJvMVyyBeXfDezhWzUOCOYZrUmkSCiatpjpm+nFUid74OZEHk6aMLrZAukIiFDwdbqp6mTM6Ui1w4oc+8EobQg==", + "requires": { + "@jest/test-result": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.4.2", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-worker": { + "version": "27.4.5", + "resolved": "https://registry.npmmirror.com/jest-worker/download/jest-worker-27.4.5.tgz", + "integrity": "sha512-f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-8.1.1.tgz", + "integrity": "sha1-zW/BfihQDP9WwbhsCn/UpUpzAFw=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jju": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/jju/download/jju-1.4.0.tgz", + "integrity": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=", + "dev": true + }, + "jquery": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/jquery/download/jquery-3.6.0.tgz", + "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==" + }, + "jquery-mousewheel": { + "version": "3.1.13", + "resolved": "https://registry.npm.taobao.org/jquery-mousewheel/download/jquery-mousewheel-3.1.13.tgz", + "integrity": "sha1-BvAzXxbjU6aV5yBr9QUDy1I6buU=" + }, + "js-cookie": { + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/js-cookie/download/js-cookie-2.2.1.tgz", + "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==" + }, + "js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npm.taobao.org/js-sha3/download/js-sha3-0.8.0.tgz", + "integrity": "sha1-ubel2nOvrX3t0PjEY5VMveaBiEA=" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz", + "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmmirror.com/js-yaml/download/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmmirror.com/jsdom/download/jsdom-16.7.0.tgz", + "integrity": "sha1-kYrnGWVCSxl8gZ+Bg6dU4Yl3txA=", + "requires": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-2.5.2.tgz", + "integrity": "sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=" + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/json-buffer/download/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=" + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npm.taobao.org/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=" + }, + "json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/json-parse-helpfulerror/download/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha1-E/FM4C7tTpgSl7ZOueO5MuLdE9w=", + "dev": true, + "requires": { + "jju": "^1.1.0" + } + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/json-schema/download/json-schema-0.4.0.tgz?cache=0&sync_timestamp=1636423528947&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjson-schema%2Fdownload%2Fjson-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz", + "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=" + }, + "json-server": { + "version": "0.17.0", + "resolved": "https://registry.npmmirror.com/json-server/download/json-server-0.17.0.tgz", + "integrity": "sha1-bbPR0QKKkMRkL/XlYnTRBjSOxEw=", + "dev": true, + "requires": { + "body-parser": "^1.19.0", + "chalk": "^4.1.2", + "compression": "^1.7.4", + "connect-pause": "^0.1.1", + "cors": "^2.8.5", + "errorhandler": "^1.5.1", + "express": "^4.17.1", + "express-urlrewrite": "^1.4.0", + "json-parse-helpfulerror": "^1.0.3", + "lodash": "^4.17.21", + "lodash-id": "^0.14.1", + "lowdb": "^1.0.0", + "method-override": "^3.0.0", + "morgan": "^1.10.0", + "nanoid": "^3.1.23", + "please-upgrade-node": "^3.2.0", + "pluralize": "^8.0.0", + "server-destroy": "^1.0.1", + "update-notifier": "^5.1.0", + "yargs": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yargs": { + "version": "17.3.1", + "resolved": "https://registry.npmmirror.com/yargs/download/yargs-17.3.1.tgz", + "integrity": "sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.0.0" + } + }, + "yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmmirror.com/yargs-parser/download/yargs-parser-21.0.0.tgz?cache=0&sync_timestamp=1637030983058&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fyargs-parser%2Fdownload%2Fyargs-parser-21.0.0.tgz", + "integrity": "sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==", + "dev": true + } + } + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "json2module": { + "version": "0.0.3", + "resolved": "https://registry.nlark.com/json2module/download/json2module-0.0.3.tgz", + "integrity": "sha1-APtfSpt638PwZHwpyxe80Zeb6bI=", + "requires": { + "rw": "^1.3.2" + } + }, + "json2mq": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/json2mq/download/json2mq-0.2.0.tgz", + "integrity": "sha1-tje9O6nqvhIsg+lyBIOusQ0skEo=", + "requires": { + "string-convert": "^0.2.0" + } + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "integrity": "sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=", + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/jsonfile/download/jsonfile-6.1.0.tgz?cache=0&sync_timestamp=1618846895804&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjsonfile%2Fdownload%2Fjsonfile-6.1.0.tgz", + "integrity": "sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4=", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonpointer": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/jsonpointer/download/jsonpointer-5.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjsonpointer%2Fdownload%2Fjsonpointer-5.0.0.tgz", + "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==" + }, + "jsx-ast-utils": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/jsx-ast-utils/download/jsx-ast-utils-3.2.1.tgz?cache=0&sync_timestamp=1631856506022&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjsx-ast-utils%2Fdownload%2Fjsx-ast-utils-3.2.1.tgz", + "integrity": "sha1-cguXv+fZAbkn2Hw3c2N66OpIeBs=", + "requires": { + "array-includes": "^3.1.3", + "object.assign": "^4.1.2" + } + }, + "kdbush": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/kdbush/download/kdbush-3.0.0.tgz", + "integrity": "sha1-+EhHlNRwBMwthe06eTU9vgq8K/A=" + }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/keyv/download/keyv-3.1.0.tgz", + "integrity": "sha1-7MIoSG9pmR5J6UdkhaW+Ho/FxNk=", + "dev": true, + "requires": { + "json-buffer": "3.0.0" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", + "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=" + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/kleur/download/kleur-3.0.3.tgz", + "integrity": "sha1-p5yezIbuHOP6YgbRIWxQHxR/wH4=" + }, + "klona": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/klona/download/klona-2.0.5.tgz?cache=0&sync_timestamp=1635385383825&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fklona%2Fdownload%2Fklona-2.0.5.tgz", + "integrity": "sha1-0WZXTZAHY5XZljqnqSj6u412r7w=" + }, + "l7-tiny-sdf": { + "version": "0.0.2", + "resolved": "https://registry.npmmirror.com/l7-tiny-sdf/download/l7-tiny-sdf-0.0.2.tgz", + "integrity": "sha1-Qal6F5J5y9oJTlh0xhrYjRBWNHk=" + }, + "l7eval5": { + "version": "0.0.3", + "resolved": "https://registry.npmmirror.com/l7eval5/download/l7eval5-0.0.3.tgz", + "integrity": "sha512-xnn9x/T0zawTM1L9DASmRXVMb5fTCib83FtGZQcn5ToM1lAo4dutNOK2JAC+jd3mEMWa9MMq188dyoQcqG2WOg==", + "requires": { + "@babel/runtime": "^7.8.4", + "@types/acorn": "^4.0.5", + "@types/estree": "0.0.41", + "acorn": "^7.1.0" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.41", + "resolved": "https://registry.npmmirror.com/@types/estree/download/@types/estree-0.0.41.tgz", + "integrity": "sha1-/ZB1QVC1dDK3K/VgUwUAWX/wRCE=" + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } + } + }, + "l7hammerjs": { + "version": "0.0.6", + "resolved": "https://registry.npmmirror.com/l7hammerjs/download/l7hammerjs-0.0.6.tgz", + "integrity": "sha512-MwzZZibiwqHVq2AMJtXVGENvP03KAvhNtPwRUFszzSXe2Flt6mdrpv41TPHKOn5beYTcDL0iPQ+NvlSndkX6ag==" + }, + "l7regl": { + "version": "0.0.16", + "resolved": "https://registry.npmmirror.com/l7regl/download/l7regl-0.0.16.tgz", + "integrity": "sha512-sQjRezX2SN168K+NoE6MrDzehLEomD4KhDT8XdpU3mms8s7L4oOuWX0TslSXDMUPSBNrJRf0vGMdrouGRqvQZQ==", + "requires": { + "falafel": "^2.2.4", + "l7eval5": "^0.0.3" + } + }, + "language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.nlark.com/language-subtag-registry/download/language-subtag-registry-0.3.21.tgz", + "integrity": "sha1-BKwhi+pG8EywOQhGAsbanniN1Fo=" + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/language-tags/download/language-tags-1.0.5.tgz", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/latest-version/download/latest-version-5.1.0.tgz", + "integrity": "sha1-EZ3+kI/jjRXfpD7NE/oS7Igy+s4=", + "dev": true, + "requires": { + "package-json": "^6.3.0" + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/lazy-cache/download/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" + }, + "less": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/less/download/less-4.1.2.tgz", + "integrity": "sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==", + "requires": { + "copy-anything": "^2.0.1", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^2.5.2", + "parse-node-version": "^1.0.1", + "source-map": "~0.6.0", + "tslib": "^2.3.0" + }, + "dependencies": { + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "integrity": "sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=", + "optional": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.nlark.com/semver/download/semver-5.7.1.tgz", + "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=", + "optional": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", + "optional": true + } + } + }, + "less-loader": { + "version": "10.2.0", + "resolved": "https://registry.npmmirror.com/less-loader/download/less-loader-10.2.0.tgz", + "integrity": "sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg==", + "requires": { + "klona": "^2.0.4" + } + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz?cache=0&sync_timestamp=1628597922950&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fleven%2Fdownload%2Fleven-3.1.0.tgz", + "integrity": "sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I=" + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/levn/download/levn-0.4.1.tgz", + "integrity": "sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lilconfig": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/lilconfig/download/lilconfig-2.0.4.tgz", + "integrity": "sha1-9FB9BD1wWLOAtqj1y3vNSzTO4II=" + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/lines-and-columns/download/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npm.taobao.org/loader-runner/download/loader-runner-4.2.0.tgz?cache=0&sync_timestamp=1610027880902&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floader-runner%2Fdownload%2Floader-runner-4.2.0.tgz", + "integrity": "sha1-1wIjgNZtFMX7HUlriYZOvP1Hg4Q=" + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/loader-utils/download/loader-utils-2.0.2.tgz", + "integrity": "sha1-1uO0+4GHByGuTghoqxHdY4NowSk=", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-6.0.0.tgz", + "integrity": "sha1-VTIeswn+u8WcSAHZMackUqaB0oY=", + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/download/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash-es/download/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "lodash-id": { + "version": "0.14.1", + "resolved": "https://registry.nlark.com/lodash-id/download/lodash-id-0.14.1.tgz", + "integrity": "sha1-3/ofH4uQ0YA7sNcLfXVH4QdR6As=", + "dev": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + }, + "lodash.isarray": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/lodash.isarray/download/lodash.isarray-4.0.0.tgz", + "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=" + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/lodash.isequal/download/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/lodash.isnil/download/lodash.isnil-4.0.0.tgz", + "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=" + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.nlark.com/lodash.isplainobject/download/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npm.taobao.org/lodash.memoize/download/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npm.taobao.org/lodash.merge/download/lodash.merge-4.6.2.tgz", + "integrity": "sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo=" + }, + "lodash.mergewith": { + "version": "4.6.2", + "resolved": "https://registry.npmmirror.com/lodash.mergewith/download/lodash.mergewith-4.6.2.tgz", + "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmmirror.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/log-update/download/log-update-4.0.0.tgz?cache=0&sync_timestamp=1634542395049&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flog-update%2Fdownload%2Flog-update-4.0.0.tgz", + "integrity": "sha1-WJ7NNSRx8qHAxXAodUOmTf0g4KE=", + "dev": true, + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.nlark.com/wrap-ansi/download/wrap-ansi-6.2.0.tgz", + "integrity": "sha1-6Tk7oHEC5skaOyIUePAlfNKFblM=", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/longest/download/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz", + "integrity": "sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lowdb": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/lowdb/download/lowdb-1.0.0.tgz?cache=0&sync_timestamp=1631543358836&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flowdb%2Fdownload%2Flowdb-1.0.0.tgz", + "integrity": "sha1-UkO+ayJ4bMzjDlDJoz6sNrIMgGQ=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.3", + "is-promise": "^2.1.0", + "lodash": "4", + "pify": "^3.0.0", + "steno": "^0.4.1" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/lower-case/download/lower-case-2.0.2.tgz", + "integrity": "sha1-b6I3xj29xKgsoP2ILkci3F5jTig=", + "requires": { + "tslib": "^2.0.3" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/lowercase-keys/download/lowercase-keys-1.0.1.tgz?cache=0&sync_timestamp=1634551808987&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flowercase-keys%2Fdownload%2Flowercase-keys-1.0.1.tgz", + "integrity": "sha1-b54wtHCE2XGnyCD/FabFFnt0wm8=", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/lru-cache/download/lru-cache-6.0.0.tgz", + "integrity": "sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=", + "requires": { + "yallist": "^4.0.0" + } + }, + "lz-string": { + "version": "1.4.4", + "resolved": "https://registry.nlark.com/lz-string/download/lz-string-1.4.4.tgz", + "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=" + }, + "magic-string": { + "version": "0.25.7", + "resolved": "https://registry.nlark.com/magic-string/download/magic-string-0.25.7.tgz", + "integrity": "sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE=", + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "integrity": "sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8=", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=" + } + } + }, + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmmirror.com/makeerror/download/makeerror-1.0.12.tgz?cache=0&sync_timestamp=1635238291084&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmakeerror%2Fdownload%2Fmakeerror-1.0.12.tgz", + "integrity": "sha1-Pl3SB5qC6BLpg8xmEMSiyw6qgBo=", + "requires": { + "tmpl": "1.0.5" + } + }, + "mana-common": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/mana-common/download/mana-common-0.1.0.tgz", + "integrity": "sha1-iM9tXUKlVGujGedH6HblDSRGmBU=", + "requires": { + "debug": "^4.3.1" + } + }, + "mana-syringe": { + "version": "0.2.2", + "resolved": "https://registry.npmmirror.com/mana-syringe/download/mana-syringe-0.2.2.tgz", + "integrity": "sha512-Sv5r0/PrQRq4pW+9lDicGsEPzPLkd1PwjTs5zHUV1I293S3alkBNyuSjktVeBploofH8MAMLd4DS2crwct48wg==", + "requires": { + "inversify": "^5.0.1" + } + }, + "mapbox-gl": { + "version": "1.13.2", + "resolved": "https://registry.npmmirror.com/mapbox-gl/download/mapbox-gl-1.13.2.tgz", + "integrity": "sha1-dmOcRPFB+N/3G32PFQTyrtEfdRc=", + "requires": { + "@mapbox/geojson-rewind": "^0.5.0", + "@mapbox/geojson-types": "^1.0.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^1.5.0", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^1.1.1", + "@mapbox/unitbezier": "^0.0.0", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "csscolorparser": "~1.0.3", + "earcut": "^2.2.2", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.2.1", + "grid-index": "^1.1.0", + "minimist": "^1.2.5", + "murmurhash-js": "^1.0.0", + "pbf": "^3.2.1", + "potpack": "^1.0.1", + "quickselect": "^2.0.0", + "rw": "^1.3.3", + "supercluster": "^7.1.0", + "tinyqueue": "^2.0.3", + "vt-pbf": "^3.1.1" + }, + "dependencies": { + "@mapbox/geojson-rewind": { + "version": "0.5.1", + "resolved": "https://registry.nlark.com/@mapbox/geojson-rewind/download/@mapbox/geojson-rewind-0.5.1.tgz", + "integrity": "sha1-rb4W3Gg+tA6Qk0xRpeKMe79E9OE=", + "requires": { + "get-stream": "^6.0.1", + "minimist": "^1.2.5" + } + } + } + }, + "match-sorter": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/match-sorter/download/match-sorter-6.3.1.tgz", + "integrity": "sha1-mMw3/adWCTQk3fPLxiv+nHW5K9o=", + "requires": { + "@babel/runtime": "^7.12.5", + "remove-accents": "0.4.2" + } + }, + "material-colors": { + "version": "1.2.6", + "resolved": "https://registry.npm.taobao.org/material-colors/download/material-colors-1.2.6.tgz", + "integrity": "sha1-bRlYhxEmmSzuzHL0vMTY8BCGX0Y=" + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/mdn-data/download/mdn-data-2.0.4.tgz", + "integrity": "sha1-aZs8OKxvHXKAkaZGULZdOIUC/Vs=" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "memfs": { + "version": "3.4.1", + "resolved": "https://registry.npmmirror.com/memfs/download/memfs-3.4.1.tgz", + "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==", + "requires": { + "fs-monkey": "1.0.3" + } + }, + "memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/memoize-one/download/memoize-one-6.0.0.tgz?cache=0&sync_timestamp=1634697208428&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmemoize-one%2Fdownload%2Fmemoize-one-6.0.0.tgz", + "integrity": "sha1-slkbhx7YKUiu5HJ9xqvO7qyMEEU=" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/merge-descriptors/download/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "merge-json-schemas": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/merge-json-schemas/download/merge-json-schemas-1.0.0.tgz", + "integrity": "sha1-LWNeqoQBxfo9A/MPiTSfx8r+5i8=", + "requires": { + "lodash.isarray": "^4.0.0", + "lodash.isnil": "^4.0.0", + "lodash.isplainobject": "^4.0.6", + "lodash.mergewith": "^4.6.0", + "lodash.uniq": "^4.5.0" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz?cache=0&sync_timestamp=1622025345923&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmerge-stream%2Fdownload%2Fmerge-stream-2.0.0.tgz", + "integrity": "sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz", + "integrity": "sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=" + }, + "method-override": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/method-override/download/method-override-3.0.0.tgz", + "integrity": "sha1-arDV1XTjII8VsMnPRatSAARo16I=", + "dev": true, + "requires": { + "debug": "3.1.0", + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/methods/download/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npm.taobao.org/micromatch/download/micromatch-4.0.4.tgz?cache=0&sync_timestamp=1618054841521&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmicromatch%2Fdownload%2Fmicromatch-4.0.4.tgz", + "integrity": "sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "microseconds": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/microseconds/download/microseconds-0.2.0.tgz", + "integrity": "sha1-Izsl9Qxipl2GH5eKSk+OwYeX3Dk=" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/mime/download/mime-1.6.0.tgz", + "integrity": "sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=" + }, + "mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmmirror.com/mime-db/download/mime-db-1.51.0.tgz?cache=0&sync_timestamp=1636426024486&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmime-db%2Fdownload%2Fmime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==" + }, + "mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmmirror.com/mime-types/download/mime-types-2.1.34.tgz?cache=0&sync_timestamp=1636432244120&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmime-types%2Fdownload%2Fmime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "requires": { + "mime-db": "1.51.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-2.1.0.tgz?cache=0&sync_timestamp=1617823824094&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmimic-fn%2Fdownload%2Fmimic-fn-2.1.0.tgz", + "integrity": "sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=" + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/mimic-response/download/mimic-response-1.0.1.tgz", + "integrity": "sha1-SSNTiHju9CBjy4o+OweYeBSHqxs=", + "dev": true + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/min-indent/download/min-indent-1.0.1.tgz", + "integrity": "sha1-pj9oFnOzBXH76LwlaGrnRu76mGk=" + }, + "mini-css-extract-plugin": { + "version": "2.4.5", + "resolved": "https://registry.npmmirror.com/mini-css-extract-plugin/download/mini-css-extract-plugin-2.4.5.tgz?cache=0&sync_timestamp=1637170563108&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmini-css-extract-plugin%2Fdownload%2Fmini-css-extract-plugin-2.4.5.tgz", + "integrity": "sha512-oEIhRucyn1JbT/1tU2BhnwO6ft1jjH1iCX9Gc59WFMg0n5773rQU0oyQ0zzeYFFuBfONaRbQJyGoPtuNseMxjA==", + "requires": { + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-5.1.0.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-4.0.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz", + "integrity": "sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/minimatch/download/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.nlark.com/minimist/download/minimist-1.2.5.tgz", + "integrity": "sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmmirror.com/mkdirp/download/mkdirp-0.5.5.tgz?cache=0&sync_timestamp=1636300883420&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmkdirp%2Fdownload%2Fmkdirp-0.5.5.tgz", + "integrity": "sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8=", + "requires": { + "minimist": "^1.2.5" + } + }, + "ml-array-max": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/ml-array-max/download/ml-array-max-1.2.3.tgz", + "integrity": "sha1-ktH/72Z0MtFFHTWBenJ2xShjXmQ=", + "requires": { + "is-any-array": "^1.0.0" + } + }, + "ml-array-min": { + "version": "1.2.2", + "resolved": "https://registry.npm.taobao.org/ml-array-min/download/ml-array-min-1.2.2.tgz", + "integrity": "sha1-q9aFEqV/6EmVE+byJlUzgH4rvms=", + "requires": { + "is-any-array": "^1.0.0" + } + }, + "ml-array-rescale": { + "version": "1.3.6", + "resolved": "https://registry.nlark.com/ml-array-rescale/download/ml-array-rescale-1.3.6.tgz?cache=0&sync_timestamp=1630485037748&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fml-array-rescale%2Fdownload%2Fml-array-rescale-1.3.6.tgz", + "integrity": "sha1-Bg0cY2+7X4dyZfT8xODhV1IdYVo=", + "requires": { + "is-any-array": "^1.0.0", + "ml-array-max": "^1.2.3", + "ml-array-min": "^1.2.2" + } + }, + "ml-matrix": { + "version": "6.8.2", + "resolved": "https://registry.npmmirror.com/ml-matrix/download/ml-matrix-6.8.2.tgz", + "integrity": "sha512-5o2gVLFyieDSgsStEU5mqty4MZqfeytYA/gJqBSw5/Xuob0X2UrFX/k7FDh+YAwjzG/1l8nYa0oDaJ0sGs/RlA==", + "requires": { + "ml-array-rescale": "^1.3.6" + } + }, + "moment": { + "version": "2.29.1", + "resolved": "https://registry.npmmirror.com/moment/download/moment-2.29.1.tgz", + "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==" + }, + "morgan": { + "version": "1.10.0", + "resolved": "https://registry.nlark.com/morgan/download/morgan-1.10.0.tgz", + "integrity": "sha1-CRd4q8H8R801CYJGU9rh+qtrF9c=", + "dev": true, + "requires": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-2.0.0.tgz", + "integrity": "sha1-tpYWPMdXVg0JzyLMj60Vcbeedt8=", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "mousetrap": { + "version": "1.6.5", + "resolved": "https://registry.npmmirror.com/mousetrap/download/mousetrap-1.6.5.tgz", + "integrity": "sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==" + }, + "mrmime": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/mrmime/download/mrmime-1.0.0.tgz", + "integrity": "sha1-FNOH8FhaUjPSkbq6M5sGN1KiOYs=", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.1.2.tgz", + "integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=" + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmmirror.com/multicast-dns/download/multicast-dns-6.2.3.tgz?cache=0&sync_timestamp=1633354851092&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmulticast-dns%2Fdownload%2Fmulticast-dns-6.2.3.tgz", + "integrity": "sha1-oOx72QVcQoL3kMPIL04o2zsxsik=", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/multicast-dns-service-types/download/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "murmurhash-js": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/murmurhash-js/download/murmurhash-js-1.0.0.tgz", + "integrity": "sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E=" + }, + "nano-css": { + "version": "5.3.4", + "resolved": "https://registry.nlark.com/nano-css/download/nano-css-5.3.4.tgz", + "integrity": "sha1-QK9qg6dvhCBPNG6MyqkWnNrpFns=", + "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.npmmirror.com/css-tree/download/css-tree-1.1.3.tgz", + "integrity": "sha1-60hw+2/XcHMn7JXC/yqwm16NuR0=", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmmirror.com/mdn-data/download/mdn-data-2.0.14.tgz", + "integrity": "sha1-cRP8QoGRfWPOKbQ0RvcB5owlulA=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "nano-time": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/nano-time/download/nano-time-1.0.0.tgz", + "integrity": "sha1-sFVPaa2J4i0JB/ehKwmTpdlhN+8=", + "requires": { + "big-integer": "^1.6.16" + } + }, + "nanoid": { + "version": "3.1.30", + "resolved": "https://registry.npmmirror.com/nanoid/download/nanoid-3.1.30.tgz", + "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "needle": { + "version": "2.9.1", + "resolved": "https://registry.nlark.com/needle/download/needle-2.9.1.tgz?cache=0&sync_timestamp=1630678823714&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fneedle%2Fdownload%2Fneedle-2.9.1.tgz", + "integrity": "sha1-ItHf++NJDCuD4wH3cJtnNs2PJoQ=", + "optional": true, + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "optional": true, + "requires": { + "ms": "^2.1.1" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz", + "integrity": "sha1-/qz3zPUlp3rpY0Q2pkiD/+yjRvs=" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz", + "integrity": "sha1-tKr7k+OustgXTKU88WOrfXMIMF8=" + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/no-case/download/no-case-3.0.4.tgz", + "integrity": "sha1-02H9XJgA9VhVGoNp/A3NRmK2Ek0=", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.nlark.com/node-forge/download/node-forge-0.10.0.tgz", + "integrity": "sha1-Mt6ir7Ppkm8C7lzoeUkCaRpna/M=" + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/node-int64/download/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + }, + "node-releases": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/node-releases/download/node-releases-2.0.1.tgz?cache=0&sync_timestamp=1634806914912&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnode-releases%2Fdownload%2Fnode-releases-2.0.1.tgz", + "integrity": "sha1-PR05XyBPHy8ppUNYuftnh2WtL8U=" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz", + "integrity": "sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/normalize-range/download/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-6.1.0.tgz", + "integrity": "sha1-QNCIW1Nd7/4/MUe+yHfQX+TFZoo=" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/npm-run-path/download/npm-run-path-4.0.1.tgz?cache=0&sync_timestamp=1633420566316&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-4.0.1.tgz", + "integrity": "sha1-t+zR5e1T2o43pV4cImnguX7XSOo=", + "requires": { + "path-key": "^3.0.0" + } + }, + "nth-check": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-2.0.1.tgz", + "integrity": "sha1-Lv4WL1w9oGoolZ+9PbddvuqfD8I=", + "requires": { + "boolbase": "^1.0.0" + } + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz", + "integrity": "sha1-IEh5qePQaP8qVROcLHcngGgaOLc=" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/object-assign/download/object-assign-4.1.1.tgz?cache=0&sync_timestamp=1618846798176&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-assign%2Fdownload%2Fobject-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-hash": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/object-hash/download/object-hash-2.2.0.tgz?cache=0&sync_timestamp=1622020508616&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-hash%2Fdownload%2Fobject-hash-2.2.0.tgz", + "integrity": "sha1-WtUYWB7vxEO9djRyuP8unCwNVKU=" + }, + "object-inspect": { + "version": "1.12.0", + "resolved": "https://registry.npmmirror.com/object-inspect/download/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==" + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npm.taobao.org/object-is/download/object-is-1.1.5.tgz?cache=0&sync_timestamp=1613857744782&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fobject-is%2Fdownload%2Fobject-is-1.1.5.tgz", + "integrity": "sha1-ud7qpfx/GEag+uzc7sE45XePU6w=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz", + "integrity": "sha1-HEfyct8nfzsdrwYWd9nILiMixg4=" + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npm.taobao.org/object.assign/download/object.assign-4.1.2.tgz?cache=0&sync_timestamp=1604115300532&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fobject.assign%2Fdownload%2Fobject.assign-4.1.2.tgz", + "integrity": "sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA=", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmmirror.com/object.entries/download/object.entries-1.1.5.tgz", + "integrity": "sha1-4azdF8TeLNltWghIfPuduE2IGGE=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/object.fromentries/download/object.fromentries-2.0.5.tgz", + "integrity": "sha1-ezeyBRCcIedB5gVyf+iwrV+gglE=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.3.tgz?cache=0&sync_timestamp=1633321669707&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fobject.getownpropertydescriptors%2Fdownload%2Fobject.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha1-siPPOOF/77l6Y8EMkd9yzLOG354=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.hasown": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/object.hasown/download/object.hasown-1.1.0.tgz?cache=0&sync_timestamp=1633321914311&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fobject.hasown%2Fdownload%2Fobject.hasown-1.1.0.tgz", + "integrity": "sha1-cjLtJm800ZfRXKxYgCMvekeQr+U=", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmmirror.com/object.values/download/object.values-1.1.5.tgz", + "integrity": "sha1-lZ9j486e8QhyAzMIITHkpFm3Fqw=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "oblivious-set": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/oblivious-set/download/oblivious-set-1.0.0.tgz", + "integrity": "sha1-yDFvLC+2/3sRthWNsyNMSfczxWY=" + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/obuf/download/obuf-1.1.2.tgz", + "integrity": "sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4=" + }, + "omit.js": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/omit.js/download/omit.js-2.0.2.tgz", + "integrity": "sha1-3ZuENvq5R6Xz/yFMslOGMeMT7C8=" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/on-finished/download/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/on-headers/download/on-headers-1.0.2.tgz", + "integrity": "sha1-dysK5qqlJcOZ5Imt+tkMQD6zwo8=" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/once/download/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "integrity": "sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "8.4.0", + "resolved": "https://registry.npmmirror.com/open/download/open-8.4.0.tgz?cache=0&sync_timestamp=1635048361939&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fopen%2Fdownload%2Fopen-8.4.0.tgz", + "integrity": "sha1-NFMhrhj4E4+CVlqRD9xrOejCRPg=", + "requires": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + } + }, + "opener": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/opener/download/opener-1.5.2.tgz", + "integrity": "sha1-XTfh81B3udysQwE3InGv3rKhNZg=", + "dev": true + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.9.1.tgz", + "integrity": "sha1-TyNqY3Pa4FZqbUPhMmZ09QwpFJk=", + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/p-cancelable/download/p-cancelable-1.1.0.tgz", + "integrity": "sha1-0HjRWjr0CSIMiG8dmgyi5EGrJsw=", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-3.1.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-3.1.0.tgz", + "integrity": "sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-5.0.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-5.0.0.tgz", + "integrity": "sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=", + "requires": { + "p-limit": "^3.0.2" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/p-map/download/p-map-4.0.0.tgz?cache=0&sync_timestamp=1635931916150&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fp-map%2Fdownload%2Fp-map-4.0.0.tgz", + "integrity": "sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs=", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-retry": { + "version": "4.6.1", + "resolved": "https://registry.npmmirror.com/p-retry/download/p-retry-4.6.1.tgz", + "integrity": "sha1-j83dXN96Z6CRGpzy7w5d9/YCMWw=", + "requires": { + "@types/retry": "^0.12.0", + "retry": "^0.13.1" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/p-try/download/p-try-2.2.0.tgz", + "integrity": "sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=" + }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.nlark.com/package-json/download/package-json-6.5.0.tgz?cache=0&sync_timestamp=1624550852446&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpackage-json%2Fdownload%2Fpackage-json-6.5.0.tgz", + "integrity": "sha1-b+7ayjXnVyWHbQsOZJdGl/7RRbA=", + "dev": true, + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true + } + } + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/param-case/download/param-case-3.0.4.tgz", + "integrity": "sha1-fRf+SqEr3jTUp32RrPtiGcqtAcU=", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parent-module/download/parent-module-1.0.1.tgz?cache=0&sync_timestamp=1633337474992&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fparent-module%2Fdownload%2Fparent-module-1.0.1.tgz", + "integrity": "sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=", + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/parse-json/download/parse-json-5.2.0.tgz?cache=0&sync_timestamp=1637475717072&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fparse-json%2Fdownload%2Fparse-json-5.2.0.tgz", + "integrity": "sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=", + "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" + } + }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parse-node-version/download/parse-node-version-1.0.1.tgz", + "integrity": "sha1-4rXb7eAOf6m8NjYH9TMn6LBzGJs=" + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/parse5/download/parse5-6.0.1.tgz", + "integrity": "sha1-4aHAhcVps9wIMhGE8Zo5zCf3wws=" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.nlark.com/parseurl/download/parseurl-1.3.3.tgz", + "integrity": "sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=" + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npm.taobao.org/pascal-case/download/pascal-case-3.1.2.tgz", + "integrity": "sha1-tI4O8rmOIF58Ha50fQsVCCN2YOs=", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/path-exists/download/path-exists-4.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-4.0.0.tgz", + "integrity": "sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npm.taobao.org/path-key/download/path-key-3.1.1.tgz?cache=0&sync_timestamp=1617971691339&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-key%2Fdownload%2Fpath-key-3.1.1.tgz", + "integrity": "sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz", + "integrity": "sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/path-type/download/path-type-4.0.0.tgz?cache=0&sync_timestamp=1611752074264&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-type%2Fdownload%2Fpath-type-4.0.0.tgz", + "integrity": "sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=" + }, + "pbf": { + "version": "3.2.1", + "resolved": "https://registry.npm.taobao.org/pbf/download/pbf-3.2.1.tgz", + "integrity": "sha1-tMG55yr5Zs2CxlMWkRFcwECf/io=", + "requires": { + "ieee754": "^1.1.12", + "resolve-protobuf-schema": "^2.1.0" + } + }, + "pdfast": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/pdfast/download/pdfast-0.2.0.tgz", + "integrity": "sha1-jLxVbhvyUiF3eHwN4uDUNzuohck=" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/performance-now/download/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/picocolors/download/picocolors-1.0.0.tgz?cache=0&sync_timestamp=1634093339035&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpicocolors%2Fdownload%2Fpicocolors-1.0.0.tgz", + "integrity": "sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=" + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz", + "integrity": "sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/pify/download/pify-4.0.1.tgz", + "integrity": "sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=", + "optional": true + }, + "pirates": { + "version": "4.0.4", + "resolved": "https://registry.npmmirror.com/pirates/download/pirates-4.0.4.tgz", + "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==" + }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/pkg-dir/download/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "requires": { + "find-up": "^2.1.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-2.1.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-1.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-1.3.0.tgz", + "integrity": "sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-2.0.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/p-try/download/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/pkg-up/download/pkg-up-3.1.0.tgz?cache=0&sync_timestamp=1636035062199&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpkg-up%2Fdownload%2Fpkg-up-3.1.0.tgz", + "integrity": "sha1-EA7CNcwVDk/UJRlBJZaihRKg3vU=", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1633618703174&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "integrity": "sha1-SRafHXmTQwZG2mHsxa41XCHJe3M=", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/locate-path/download/locate-path-3.0.0.tgz", + "integrity": "sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4=", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1628812721654&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/p-locate/download/p-locate-3.0.0.tgz?cache=0&sync_timestamp=1629892761309&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-3.0.0.tgz", + "integrity": "sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ=", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/please-upgrade-node/download/please-upgrade-node-3.2.0.tgz", + "integrity": "sha1-rt3T+ZTJM+StmLmdmlVu+g4v6UI=", + "dev": true, + "requires": { + "semver-compare": "^1.0.0" + } + }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://registry.nlark.com/pluralize/download/pluralize-8.0.0.tgz", + "integrity": "sha1-Gm+hajjRKhkB4DIPoBcFHFOc47E=", + "dev": true + }, + "polyline-miter-util": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/polyline-miter-util/download/polyline-miter-util-1.0.1.tgz", + "integrity": "sha1-tpPyOJ6g3tNqa89ezS7OS2kX2Vc=", + "requires": { + "gl-vec2": "^1.0.0" + } + }, + "polyline-normals": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/polyline-normals/download/polyline-normals-2.0.2.tgz", + "integrity": "sha1-oXN+ddjA3MsaWR+csn8J7vS30TU=", + "requires": { + "polyline-miter-util": "^1.0.1" + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npm.taobao.org/portfinder/download/portfinder-1.0.28.tgz", + "integrity": "sha1-Z8RiKFK9U3TdHdkA93n1NGL6x3g=", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "postcss": { + "version": "8.4.5", + "resolved": "https://registry.npmmirror.com/postcss/download/postcss-8.4.5.tgz", + "integrity": "sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==", + "requires": { + "nanoid": "^3.1.30", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.1" + } + }, + "postcss-attribute-case-insensitive": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/postcss-attribute-case-insensitive/download/postcss-attribute-case-insensitive-5.0.0.tgz", + "integrity": "sha1-Ocv2ur897R5KvzfQnW7aIcZEEFw=", + "requires": { + "postcss-selector-parser": "^6.0.2" + } + }, + "postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/postcss-browser-comments/download/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha1-vPyGE031gH9dPA7voZHUITa15yo=", + "requires": {} + }, + "postcss-calc": { + "version": "8.0.0", + "resolved": "https://registry.nlark.com/postcss-calc/download/postcss-calc-8.0.0.tgz", + "integrity": "sha1-oFuHqs0TJ0Cl2wlGKjYSRT5d+Qo=", + "requires": { + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "postcss-color-functional-notation": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/postcss-color-functional-notation/download/postcss-color-functional-notation-4.2.0.tgz", + "integrity": "sha512-ptwZWYEN2w/3z7HeWbWQRr/7MjJDf2zFO/6CdJ5gsQlC5O6kvjU0RAC3UeKCdxRS8+4bs17CMbTH+hlNs93q1Q==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-color-hex-alpha": { + "version": "8.0.1", + "resolved": "https://registry.npmmirror.com/postcss-color-hex-alpha/download/postcss-color-hex-alpha-8.0.1.tgz", + "integrity": "sha512-kzp95xRLSFnFdmVIWwbWa3QohE3v/G/wNBvW4U66Lt4wq119I6Bz1EVErrARWZ5+7HskgQ6M4mpiwjo+jOdApA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-color-rebeccapurple": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/postcss-color-rebeccapurple/download/postcss-color-rebeccapurple-7.0.1.tgz", + "integrity": "sha512-uA5MAOoCwCK32VgYXWwPD3vBDDOi1oMOkLnO+U1Af6ex7JOE0xHVJqnc9w5QS+fPJ9yveXeHKVtdVqzP2WiCsQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-colormin": { + "version": "5.2.2", + "resolved": "https://registry.npmmirror.com/postcss-colormin/download/postcss-colormin-5.2.2.tgz", + "integrity": "sha512-tSEe3NpqWARUTidDlF0LntPkdlhXqfDFuA1yslqpvvGAfpZ7oBaw+/QXd935NKm2U9p4PED0HDZlzmMk7fVC6g==", + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-convert-values": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-convert-values/download/postcss-convert-values-5.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-convert-values%2Fdownload%2Fpostcss-convert-values-5.0.2.tgz", + "integrity": "sha1-h5uEncNnfH1ryUtqLBo/CAh5gFk=", + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-custom-media": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-custom-media/download/postcss-custom-media-8.0.0.tgz?cache=0&sync_timestamp=1612199037468&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-custom-media%2Fdownload%2Fpostcss-custom-media-8.0.0.tgz", + "integrity": "sha1-G+av+L59yb8f4BS947cbkrtFUvE=", + "requires": {} + }, + "postcss-custom-properties": { + "version": "12.0.1", + "resolved": "https://registry.npmmirror.com/postcss-custom-properties/download/postcss-custom-properties-12.0.1.tgz", + "integrity": "sha512-Z3WjuML7qn6ehesWD4vDqOmM5CZO/qfVknpI9/gDOwMNhcLg3OSgT5wENR4kFDZtCricAE7cxL97bsj5lFnuZQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-custom-selectors": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/postcss-custom-selectors/download/postcss-custom-selectors-6.0.0.tgz?cache=0&sync_timestamp=1618846905419&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-custom-selectors%2Fdownload%2Fpostcss-custom-selectors-6.0.0.tgz", + "integrity": "sha1-Aig55B+/ccR65uMWyw5iEwEt9e8=", + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-dir-pseudo-class": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/postcss-dir-pseudo-class/download/postcss-dir-pseudo-class-6.0.1.tgz", + "integrity": "sha512-nA6+XVUc5VDe6LrJ5KWFqJ05dxZXzoYiUQJFZSuwLW/8aI462w7gCEhB+RnOA+N3dtrj8B2WTSfcjCac6RJW0A==", + "requires": { + "postcss-selector-parser": "^6.0.7" + } + }, + "postcss-discard-comments": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-comments/download/postcss-discard-comments-5.0.1.tgz", + "integrity": "sha1-nq5LdHz3YNMfJEfCfwYZ1XGJAf4=", + "requires": {} + }, + "postcss-discard-duplicates": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-duplicates/download/postcss-discard-duplicates-5.0.1.tgz", + "integrity": "sha1-aPfMZFj+a6suRsn1WuUoafaA5m0=", + "requires": {} + }, + "postcss-discard-empty": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-empty/download/postcss-discard-empty-5.0.1.tgz", + "integrity": "sha1-7hNsOeJ9XS7U2g7l7QK8ip+L9tg=", + "requires": {} + }, + "postcss-discard-overridden": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-overridden/download/postcss-discard-overridden-5.0.1.tgz", + "integrity": "sha1-RUtB9wcwC5gQmnUAXKSrD/J0OsY=", + "requires": {} + }, + "postcss-double-position-gradients": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/postcss-double-position-gradients/download/postcss-double-position-gradients-3.0.3.tgz", + "integrity": "sha512-x3DYDhCsKS/sjH6t+sM9R+pq4lCwdHGVeUOpE/gDybfY33acJJie+NzRigKJVze7E/jH/1WGl/qPRV90Lso7Mg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-env-function": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/postcss-env-function/download/postcss-env-function-4.0.3.tgz", + "integrity": "sha512-RQ0CwXX161FLuC525Lx7VqsHXSPQvgErgOMcbfuAKPq1hgHDPJLemowVaPuWF4E3IO8rgUbStaRLGTM5VlN/vw==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.nlark.com/postcss-flexbugs-fixes/download/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha1-ICjhRTEwdPyavidst8oU5UAetJ0=", + "requires": {} + }, + "postcss-focus-visible": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/postcss-focus-visible/download/postcss-focus-visible-6.0.2.tgz", + "integrity": "sha512-KYztrdQRRr+pPJQRAyr9HAEr8I8TUfpSyqOo8qddrjtMLap7Ud1FAF8szi4ZWrhMmch3EwL4RQMqsneOByWZIA==", + "requires": { + "postcss-selector-parser": "^6.0.7" + } + }, + "postcss-focus-within": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-focus-within/download/postcss-focus-within-5.0.2.tgz", + "integrity": "sha512-0zm8gM/fpFZtWM8drbj5M6HKVztHgLqtHygCMB494SOkudtnePpq5nv0ie2Jx/BrD+A5nhj0uK3tuMnEpjKonA==", + "requires": { + "postcss-selector-parser": "^6.0.7" + } + }, + "postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-font-variant/download/postcss-font-variant-5.0.0.tgz", + "integrity": "sha1-79WbS36ouwYSfy0DG/u38k0y+mY=", + "requires": {} + }, + "postcss-gap-properties": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/postcss-gap-properties/download/postcss-gap-properties-3.0.1.tgz", + "integrity": "sha512-t7ztwUmG17KQRTHDWeekeSQ41ZsjYK+OJagee3E3hFS46n9RD5QcT/NRxwbc2DWjVSL5GQf46al3wEiH6FRSKg==", + "requires": {} + }, + "postcss-image-set-function": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/postcss-image-set-function/download/postcss-image-set-function-4.0.3.tgz", + "integrity": "sha512-+EZRaCg/MzsKW2ggTy26mG/uoHnEAjCcGICCkUYgg2PPguZaRjSBKY4KHiWcdH6ydsR7enlnO3i7bQ+Fpbx7vQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/postcss-initial/download/postcss-initial-4.0.1.tgz", + "integrity": "sha1-Up9zX3LFckoPswUn32+3rFTX3kI=", + "requires": {} + }, + "postcss-js": { + "version": "3.0.3", + "resolved": "https://registry.npm.taobao.org/postcss-js/download/postcss-js-3.0.3.tgz", + "integrity": "sha1-LwvTcKLoWZ1FQ59pcEA7WHOr2jM=", + "requires": { + "camelcase-css": "^2.0.1", + "postcss": "^8.1.6" + } + }, + "postcss-lab-function": { + "version": "4.0.2", + "resolved": "https://registry.npmmirror.com/postcss-lab-function/download/postcss-lab-function-4.0.2.tgz", + "integrity": "sha512-IkX1S1CROQF9uCu5F4/Ib5SRFDJXlJg3ig9x4OJkKIF16y0o7WRKfFje2ym+yThfwYjozwHZgf37Xwbnscpipg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-load-config": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/postcss-load-config/download/postcss-load-config-3.1.0.tgz", + "integrity": "sha1-05xHCRxK7Df1AnI3OmpkjvXpeCk=", + "requires": { + "import-cwd": "^3.0.0", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + } + }, + "postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/postcss-loader/download/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "requires": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + } + }, + "postcss-logical": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/postcss-logical/download/postcss-logical-5.0.1.tgz", + "integrity": "sha512-cKekWCoZrxdQktbj8PyCOqQWxsYAPyHjoeBPedkQzfWuEqRm0KVFRHypsHAiH2dDVUae52yx8PBtWS+V3BqT5w==", + "requires": {} + }, + "postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-media-minmax/download/postcss-media-minmax-5.0.0.tgz?cache=0&sync_timestamp=1610466339723&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-media-minmax%2Fdownload%2Fpostcss-media-minmax-5.0.0.tgz", + "integrity": "sha1-cUC93sFz4tbWV+29hVSlV5TipbU=", + "requires": {} + }, + "postcss-merge-longhand": { + "version": "5.0.4", + "resolved": "https://registry.npmmirror.com/postcss-merge-longhand/download/postcss-merge-longhand-5.0.4.tgz?cache=0&sync_timestamp=1637084921462&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-merge-longhand%2Fdownload%2Fpostcss-merge-longhand-5.0.4.tgz", + "integrity": "sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==", + "requires": { + "postcss-value-parser": "^4.1.0", + "stylehacks": "^5.0.1" + } + }, + "postcss-merge-rules": { + "version": "5.0.3", + "resolved": "https://registry.npmmirror.com/postcss-merge-rules/download/postcss-merge-rules-5.0.3.tgz?cache=0&sync_timestamp=1637085409669&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-merge-rules%2Fdownload%2Fpostcss-merge-rules-5.0.3.tgz", + "integrity": "sha512-cEKTMEbWazVa5NXd8deLdCnXl+6cYG7m2am+1HzqH0EnTdy8fRysatkaXb2dEnR+fdaDxTvuZ5zoBdv6efF6hg==", + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^2.0.1", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-minify-font-values": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-minify-font-values/download/postcss-minify-font-values-5.0.1.tgz", + "integrity": "sha1-qQzvv9qgdb09uqGzNYi7TcJord8=", + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-minify-gradients": { + "version": "5.0.3", + "resolved": "https://registry.npmmirror.com/postcss-minify-gradients/download/postcss-minify-gradients-5.0.3.tgz?cache=0&sync_timestamp=1635856917388&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-minify-gradients%2Fdownload%2Fpostcss-minify-gradients-5.0.3.tgz", + "integrity": "sha1-+XChHMceCOkJXnjsOms0uRwZVQ4=", + "requires": { + "colord": "^2.9.1", + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-minify-params": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-minify-params/download/postcss-minify-params-5.0.2.tgz?cache=0&sync_timestamp=1637084921655&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-minify-params%2Fdownload%2Fpostcss-minify-params-5.0.2.tgz", + "integrity": "sha512-qJAPuBzxO1yhLad7h2Dzk/F7n1vPyfHfCCh5grjGfjhi1ttCnq4ZXGIW77GSrEbh9Hus9Lc/e/+tB4vh3/GpDg==", + "requires": { + "alphanum-sort": "^1.0.2", + "browserslist": "^4.16.6", + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-minify-selectors": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/postcss-minify-selectors/download/postcss-minify-selectors-5.1.0.tgz", + "integrity": "sha1-Q4XIRdOXn/FgKRd0Uj/6VOr9WlQ=", + "requires": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-modules-extract-imports/download/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha1-zaHwR8CugMl9vijD52pDuIAldB0=", + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha1-67tU+uFZjuz99pGgKz/zs5ClpRw=", + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/postcss-modules-scope/download/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha1-nvMVFFbTu/oSDKRImN/Kby+gHwY=", + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-4.0.0.tgz", + "integrity": "sha1-18Xn5ow7s8myfL9Iyguz/7RgLJw=", + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-nested": { + "version": "5.0.6", + "resolved": "https://registry.nlark.com/postcss-nested/download/postcss-nested-5.0.6.tgz", + "integrity": "sha1-RmND9/yNPUavPn26P81H0FKpRbw=", + "requires": { + "postcss-selector-parser": "^6.0.6" + } + }, + "postcss-nesting": { + "version": "10.1.0", + "resolved": "https://registry.npmmirror.com/postcss-nesting/download/postcss-nesting-10.1.0.tgz", + "integrity": "sha512-HQ8kc/kLid2YjTOjlUC2Lk9JCGTJ/WDqRtEbJWWTQNs0KObgp3a1DFQhS19toVK8d/2q2YmVasjdQaWqZhotPg==", + "requires": { + "postcss-selector-parser": "^6.0.7" + } + }, + "postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize/download/postcss-normalize-10.0.1.tgz", + "integrity": "sha1-RkaSZ2tSeSoGsGiAoXYnkhZUDdc=", + "requires": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + } + }, + "postcss-normalize-charset": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-charset/download/postcss-normalize-charset-5.0.1.tgz", + "integrity": "sha1-EhVZ0b68VayNJK839nvU2p79kdA=", + "requires": {} + }, + "postcss-normalize-display-values": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-display-values/download/postcss-normalize-display-values-5.0.1.tgz", + "integrity": "sha1-YmULllmBqVXf/ugzY0U9uC9q0f0=", + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-positions": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-positions/download/postcss-normalize-positions-5.0.1.tgz", + "integrity": "sha1-ho9q8Xlf36hvu+lg3OtH5flJL+U=", + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-repeat-style": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-repeat-style/download/postcss-normalize-repeat-style-5.0.1.tgz", + "integrity": "sha1-y8DeE4O1f1u2Hd1qhGU7XoZlsrU=", + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-string": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-string/download/postcss-normalize-string-5.0.1.tgz", + "integrity": "sha1-2er6pN94x6O5c640bvDkfFVJhbA=", + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-timing-functions": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-timing-functions/download/postcss-normalize-timing-functions-5.0.1.tgz", + "integrity": "sha1-juQRA7kTBCnGy7pzaTK3XF4ssIw=", + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-unicode": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-unicode/download/postcss-normalize-unicode-5.0.1.tgz", + "integrity": "sha1-gtZy1kikEYFKpb865WU3nM2fXjc=", + "requires": { + "browserslist": "^4.16.0", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-url": { + "version": "5.0.4", + "resolved": "https://registry.npmmirror.com/postcss-normalize-url/download/postcss-normalize-url-5.0.4.tgz", + "integrity": "sha512-cNj3RzK2pgQQyNp7dzq0dqpUpQ/wYtdDZM3DepPmFjCmYIfceuD9VIAcOdvrNetjIU65g1B4uwdP/Krf6AFdXg==", + "requires": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-whitespace": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-whitespace/download/postcss-normalize-whitespace-5.0.1.tgz", + "integrity": "sha1-sLQLW8rINYX/B+rS2vLc++7vjpo=", + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-ordered-values": { + "version": "5.0.2", + "resolved": "https://registry.nlark.com/postcss-ordered-values/download/postcss-ordered-values-5.0.2.tgz", + "integrity": "sha1-HzUUJpd74A4PdlsxZK11PayO0EQ=", + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-overflow-shorthand": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/postcss-overflow-shorthand/download/postcss-overflow-shorthand-3.0.1.tgz", + "integrity": "sha512-/ajDNoTF+LiuhIZjenjb/ndBoKP/WYy/dTT8BCCtLU1wrezkax+lXw5r3c5qR4cadNNMbksAnhWJXNjd9xNTHA==", + "requires": {} + }, + "postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/postcss-page-break/download/postcss-page-break-3.0.4.tgz", + "integrity": "sha1-f790HCM2IWIraNQ1ur+3DdjB7l8=", + "requires": {} + }, + "postcss-place": { + "version": "7.0.2", + "resolved": "https://registry.npmmirror.com/postcss-place/download/postcss-place-7.0.2.tgz", + "integrity": "sha512-XsZCU8X8M9dHKGlxdycihxPajSkRd4u+cIUJz/FgC61Mr/swStI3xAvsYai9Fh22kU+VVAn7ihoZk8h9pQhDfA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-preset-env": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/postcss-preset-env/download/postcss-preset-env-7.1.0.tgz", + "integrity": "sha512-YZI44uxVJQQu18TeHEoDtdLsjKLQpCpzt/4FAzadIcnNYwvKSQqvxaHE6uWobEWQrcfU42zIddMPUKgYQxZs8g==", + "requires": { + "autoprefixer": "^10.4.0", + "browserslist": "^4.19.1", + "caniuse-lite": "^1.0.30001291", + "css-blank-pseudo": "^3.0.0", + "css-has-pseudo": "^3.0.0", + "css-prefers-color-scheme": "^6.0.0", + "cssdb": "^5.0.0", + "postcss-attribute-case-insensitive": "^5.0.0", + "postcss-color-functional-notation": "^4.1.0", + "postcss-color-hex-alpha": "^8.0.1", + "postcss-color-rebeccapurple": "^7.0.1", + "postcss-custom-media": "^8.0.0", + "postcss-custom-properties": "^12.0.1", + "postcss-custom-selectors": "^6.0.0", + "postcss-dir-pseudo-class": "^6.0.1", + "postcss-double-position-gradients": "^3.0.3", + "postcss-env-function": "^4.0.3", + "postcss-focus-visible": "^6.0.2", + "postcss-focus-within": "^5.0.2", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.1", + "postcss-image-set-function": "^4.0.3", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.0.2", + "postcss-logical": "^5.0.1", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.0.3", + "postcss-overflow-shorthand": "^3.0.1", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.2", + "postcss-pseudo-class-any-link": "^7.0.1", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^5.0.0" + } + }, + "postcss-pseudo-class-any-link": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/postcss-pseudo-class-any-link/download/postcss-pseudo-class-any-link-7.0.1.tgz", + "integrity": "sha512-Zt+VMw9qX7Um/cYOaywOQvXipDw/U3U83L6MFHocbjVIhLd+x5G4SSDmKm8sW2/HlaTno2Cazub8USrDvJ4DLA==", + "requires": { + "postcss-selector-parser": "^6.0.7" + } + }, + "postcss-reduce-initial": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-reduce-initial/download/postcss-reduce-initial-5.0.2.tgz", + "integrity": "sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw==", + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/postcss-reduce-transforms/download/postcss-reduce-transforms-5.0.1.tgz", + "integrity": "sha1-k8EvahWUdKpxHVJpkj4jg87c9kA=", + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/postcss-replace-overflow-wrap/download/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha1-0t9r7RC0d7+cUvqyjFaLSynKQxk=", + "requires": {} + }, + "postcss-selector-not": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/postcss-selector-not/download/postcss-selector-not-5.0.0.tgz", + "integrity": "sha1-rF/FBvdWXdhy+C9TFMD4GgVjDcc=", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "postcss-selector-parser": { + "version": "6.0.8", + "resolved": "https://registry.npmmirror.com/postcss-selector-parser/download/postcss-selector-parser-6.0.8.tgz", + "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "5.0.3", + "resolved": "https://registry.npmmirror.com/postcss-svgo/download/postcss-svgo-5.0.3.tgz", + "integrity": "sha1-2UUYV1bl36rgf57bDTyuf/efmzA=", + "requires": { + "postcss-value-parser": "^4.1.0", + "svgo": "^2.7.0" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/commander/download/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + }, + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/css-tree/download/css-tree-1.1.3.tgz", + "integrity": "sha1-60hw+2/XcHMn7JXC/yqwm16NuR0=", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmmirror.com/mdn-data/download/mdn-data-2.0.14.tgz", + "integrity": "sha1-cRP8QoGRfWPOKbQ0RvcB5owlulA=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + }, + "svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmmirror.com/svgo/download/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + } + } + } + }, + "postcss-unique-selectors": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/postcss-unique-selectors/download/postcss-unique-selectors-5.0.2.tgz?cache=0&sync_timestamp=1637084921567&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-unique-selectors%2Fdownload%2Fpostcss-unique-selectors-5.0.2.tgz", + "integrity": "sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==", + "requires": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/postcss-value-parser/download/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "potpack": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/potpack/download/potpack-1.0.2.tgz?cache=0&sync_timestamp=1635501196917&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpotpack%2Fdownload%2Fpotpack-1.0.2.tgz", + "integrity": "sha1-I7meZOt09XQf/nZWtbXE3c6N/BQ=" + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/prelude-ls/download/prelude-ls-1.2.1.tgz", + "integrity": "sha1-3rxkidem5rDnYRiIzsiAM30xY5Y=" + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/prepend-http/download/prepend-http-2.0.0.tgz?cache=0&sync_timestamp=1628547565904&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprepend-http%2Fdownload%2Fprepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "dev": true + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.nlark.com/pretty-bytes/download/pretty-bytes-5.6.0.tgz", + "integrity": "sha1-NWJW9kOAR3PIL2RyP+eMksYr6us=" + }, + "pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/pretty-error/download/pretty-error-4.0.0.tgz", + "integrity": "sha1-kKcD9G3XI0rbRtD4SCPp0cuPENY=", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "pretty-format": { + "version": "27.4.2", + "resolved": "https://registry.npmmirror.com/pretty-format/download/pretty-format-27.4.2.tgz", + "integrity": "sha512-p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw==", + "requires": { + "@jest/types": "^27.4.2", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-5.2.0.tgz", + "integrity": "sha1-B0SWkK1Fd30ZJKwquy/IiV26g2s=" + } + } + }, + "probe.gl": { + "version": "3.5.0", + "resolved": "https://registry.npmmirror.com/probe.gl/download/probe.gl-3.5.0.tgz", + "integrity": "sha512-KWj8u0PNytr/rVwcQFcN7O8SK7n/ITOsUZ91l4fSX95oHhKvVCI7eadrzFUzFRlXkFfBWpMWZXFHITsHHHUctw==", + "requires": { + "@babel/runtime": "^7.0.0", + "@probe.gl/env": "3.5.0", + "@probe.gl/log": "3.5.0", + "@probe.gl/stats": "3.5.0" + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/process-nextick-args/download/process-nextick-args-2.0.1.tgz", + "integrity": "sha1-eCDZsWEgzFXKmud5JoCufbptf+I=" + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/progress/download/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + }, + "promise": { + "version": "8.1.0", + "resolved": "https://registry.nlark.com/promise/download/promise-8.1.0.tgz", + "integrity": "sha1-aXwlw9/nQ13Xn81Yw4oTWIjq8F4=", + "requires": { + "asap": "~2.0.6" + } + }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/prompts/download/prompts-2.4.2.tgz?cache=0&sync_timestamp=1633642460453&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fprompts%2Fdownload%2Fprompts-2.4.2.tgz", + "integrity": "sha1-e1fnOzpIAprRDr1E90sBcipMsGk=", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "prop-types": { + "version": "15.8.0", + "resolved": "https://registry.npmmirror.com/prop-types/download/prop-types-15.8.0.tgz", + "integrity": "sha512-fDGekdaHh65eI3lMi5OnErU6a8Ighg2KjcjQxO7m8VHyWjcPyj5kiOgV1LQDOOOgVy3+5FgjXvdSSX7B8/5/4g==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz", + "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=" + } + } + }, + "protocol-buffers-schema": { + "version": "3.6.0", + "resolved": "https://registry.nlark.com/protocol-buffers-schema/download/protocol-buffers-schema-3.6.0.tgz", + "integrity": "sha1-d7x1pIsv8ULBrVtbkMlM0Pou/QM=" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.nlark.com/proxy-addr/download/proxy-addr-2.0.7.tgz", + "integrity": "sha1-8Z/mnOqzEe65S0LnDowgcPm6ECU=", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz", + "integrity": "sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=" + } + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/prr/download/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "optional": true + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.nlark.com/psl/download/psl-1.8.0.tgz", + "integrity": "sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ=" + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pump/download/pump-3.0.0.tgz", + "integrity": "sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/punycode/download/punycode-2.1.1.tgz", + "integrity": "sha1-tYsBCsQMIsVldhbI0sLALHv0eew=" + }, + "pupa": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/pupa/download/pupa-2.1.1.tgz", + "integrity": "sha1-9ej9SvwsXZeCj6pSNUnth0SiDWI=", + "dev": true, + "requires": { + "escape-goat": "^2.0.0" + } + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/q/download/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.9.6", + "resolved": "https://registry.npmmirror.com/qs/download/qs-6.9.6.tgz", + "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==" + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/queue-microtask/download/queue-microtask-1.2.3.tgz", + "integrity": "sha1-SSkii7xyTfrEPg77BYyve2z7YkM=" + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/quick-lru/download/quick-lru-5.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fquick-lru%2Fdownload%2Fquick-lru-5.1.1.tgz", + "integrity": "sha1-NmST5rPkKjpoheLpnRj4D7eoyTI=" + }, + "quickselect": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/quickselect/download/quickselect-2.0.0.tgz", + "integrity": "sha1-8ZaApIal7vtYEwPgI+mPqvJd0Bg=" + }, + "raf": { + "version": "3.4.1", + "resolved": "https://registry.nlark.com/raf/download/raf-3.4.1.tgz", + "integrity": "sha1-B0LpmkplUvRF1z4+4DKK8P8e3jk=", + "requires": { + "performance-now": "^2.1.0" + } + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "integrity": "sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo=", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz", + "integrity": "sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=" + }, + "raw-body": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/raw-body/download/raw-body-2.4.2.tgz?cache=0&sync_timestamp=1637116849434&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fraw-body%2Fdownload%2Fraw-body-2.4.2.tgz", + "integrity": "sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ==", + "requires": { + "bytes": "3.1.1", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/bytes/download/bytes-3.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbytes%2Fdownload%2Fbytes-3.1.1.tgz", + "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.nlark.com/rc/download/rc-1.2.8.tgz?cache=0&sync_timestamp=1628478870081&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frc%2Fdownload%2Frc-1.2.8.tgz", + "integrity": "sha1-zZJL9SAKB1uDwYjNa54hG3/A0+0=", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-2.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-json-comments%2Fdownload%2Fstrip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true + } + } + }, + "rc-align": { + "version": "4.0.11", + "resolved": "https://registry.nlark.com/rc-align/download/rc-align-4.0.11.tgz", + "integrity": "sha1-gZjGLbJmvBuO8F5WwTJ1v3Jiil4=", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "dom-align": "^1.7.0", + "lodash": "^4.17.21", + "rc-util": "^5.3.0", + "resize-observer-polyfill": "^1.5.1" + } + }, + "rc-cascader": { + "version": "3.0.0-alpha.7", + "resolved": "https://registry.npmmirror.com/rc-cascader/download/rc-cascader-3.0.0-alpha.7.tgz", + "integrity": "sha512-hHhPJW9ll41vMd36gmZWYem9749KI9cW51tPQWCp/AS98wgdz/m71y0eXzHIsiVrsIq54sAvccmHK/ZwrRi13Q==", + "requires": { + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "classnames": "^2.3.1", + "rc-select": "~14.0.0-alpha.8", + "rc-tree": "~5.3.4", + "rc-util": "^5.6.1" + } + }, + "rc-checkbox": { + "version": "2.3.2", + "resolved": "https://registry.npm.taobao.org/rc-checkbox/download/rc-checkbox-2.3.2.tgz", + "integrity": "sha1-+Rs2eMftsrqoEhyUg8Zk+m8K78E=", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + } + }, + "rc-collapse": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/rc-collapse/download/rc-collapse-3.1.2.tgz?cache=0&sync_timestamp=1630552186473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frc-collapse%2Fdownload%2Frc-collapse-3.1.2.tgz", + "integrity": "sha1-dgKKgRuEXQPZRgzMQJx+qK0J2xQ=", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.3.4", + "rc-util": "^5.2.1", + "shallowequal": "^1.1.0" + } + }, + "rc-dialog": { + "version": "8.6.0", + "resolved": "https://registry.nlark.com/rc-dialog/download/rc-dialog-8.6.0.tgz", + "integrity": "sha1-OyKNrAhd5e7YxiN/MRYhBGh0Quc=", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-motion": "^2.3.0", + "rc-util": "^5.6.1" + } + }, + "rc-drawer": { + "version": "4.4.3", + "resolved": "https://registry.npmmirror.com/rc-drawer/download/rc-drawer-4.4.3.tgz?cache=0&sync_timestamp=1637134392366&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frc-drawer%2Fdownload%2Frc-drawer-4.4.3.tgz", + "integrity": "sha512-FYztwRs3uXnFOIf1hLvFxIQP9MiZJA+0w+Os8dfDh/90X7z/HqP/Yg+noLCIeHEbKln1Tqelv8ymCAN24zPcfQ==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.7.0" + } + }, + "rc-dropdown": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/rc-dropdown/download/rc-dropdown-3.2.2.tgz", + "integrity": "sha512-oA9VYYg+jQaPRdFoYFfBn5EAQk2NlL6H0vR2v6JG/8i4HEfUq8p1TTt6HyQ/dGxLe8lpnK+nM7WCjgZT/cpSRQ==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-trigger": "^5.0.4" + } + }, + "rc-field-form": { + "version": "1.22.1", + "resolved": "https://registry.npmmirror.com/rc-field-form/download/rc-field-form-1.22.1.tgz", + "integrity": "sha512-LweU7nBeqmC5r3HDUjRprcOXXobHXp/TGIxD7ppBq5FX6Iptt3ibdpRVg4RSyNulBNGHOuknHlRcguuIpvVMVg==", + "requires": { + "@babel/runtime": "^7.8.4", + "async-validator": "^4.0.2", + "rc-util": "^5.8.0" + } + }, + "rc-image": { + "version": "5.2.5", + "resolved": "https://registry.nlark.com/rc-image/download/rc-image-5.2.5.tgz?cache=0&sync_timestamp=1627892899241&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frc-image%2Fdownload%2Frc-image-5.2.5.tgz", + "integrity": "sha1-ROb/yEJiaCeWDnq3LhwNbzqM5EA=", + "requires": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-dialog": "~8.6.0", + "rc-util": "^5.0.6" + } + }, + "rc-input-number": { + "version": "7.3.4", + "resolved": "https://registry.npmmirror.com/rc-input-number/download/rc-input-number-7.3.4.tgz", + "integrity": "sha512-W9uqSzuvJUnz8H8vsVY4kx+yK51SsAxNTwr8SNH4G3XqQNocLVmKIibKFRjocnYX1RDHMND9FFbgj2h7E7nvGA==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.9.8" + } + }, + "rc-mentions": { + "version": "1.6.1", + "resolved": "https://registry.nlark.com/rc-mentions/download/rc-mentions-1.6.1.tgz", + "integrity": "sha1-RgNQJ9ZKoz74QLoPvUEYceNGF64=", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-menu": "^9.0.0", + "rc-textarea": "^0.3.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1" + } + }, + "rc-menu": { + "version": "9.2.1", + "resolved": "https://registry.npmmirror.com/rc-menu/download/rc-menu-9.2.1.tgz", + "integrity": "sha512-UbEtn3rflJ8zS+etYGTVQuzy7Fm+yWXR5c0Rl6ecNTS/dPknRyWAyhJcbeR0Hu1+RdQT+0VCqrUPrgKnm4iY+w==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.4.3", + "rc-overflow": "^1.2.0", + "rc-trigger": "^5.1.2", + "rc-util": "^5.12.0", + "shallowequal": "^1.1.0" + } + }, + "rc-motion": { + "version": "2.4.4", + "resolved": "https://registry.nlark.com/rc-motion/download/rc-motion-2.4.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frc-motion%2Fdownload%2Frc-motion-2.4.4.tgz", + "integrity": "sha1-6ZXV+iT8kwZcJPcUhXzyZ31lW7A=", + "requires": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.2.1" + } + }, + "rc-notification": { + "version": "4.5.7", + "resolved": "https://registry.nlark.com/rc-notification/download/rc-notification-4.5.7.tgz", + "integrity": "sha1-Jl5uagwaD6xj1qvU2DLrj/MVIvE=", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.2.0", + "rc-util": "^5.0.1" + } + }, + "rc-overflow": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/rc-overflow/download/rc-overflow-1.2.2.tgz", + "integrity": "sha1-lbAiIBbAzb3A24X1acJi53BqXyI=", + "requires": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.1" + } + }, + "rc-pagination": { + "version": "3.1.15", + "resolved": "https://registry.npmmirror.com/rc-pagination/download/rc-pagination-3.1.15.tgz", + "integrity": "sha512-4L3fot8g4E+PjWEgoVGX0noFCg+8ZFZmeLH4vsnZpB3O2T2zThtakjNxG+YvSaYtyMVT4B+GLayjKrKbXQpdAg==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + } + }, + "rc-picker": { + "version": "2.5.19", + "resolved": "https://registry.npmmirror.com/rc-picker/download/rc-picker-2.5.19.tgz", + "integrity": "sha1-c9B1RvrDmS8L+r8niWVKyto55G8=", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "date-fns": "2.x", + "dayjs": "1.x", + "moment": "^2.24.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.4.0", + "shallowequal": "^1.1.0" + } + }, + "rc-progress": { + "version": "3.2.4", + "resolved": "https://registry.npmmirror.com/rc-progress/download/rc-progress-3.2.4.tgz", + "integrity": "sha512-M9WWutRaoVkPUPIrTpRIDpX0SPSrVHzxHdCRCbeoBFrd9UFWTYNWRlHsruJM5FH1AZI+BwB4wOJUNNylg/uFSw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.16.1" + } + }, + "rc-rate": { + "version": "2.9.1", + "resolved": "https://registry.nlark.com/rc-rate/download/rc-rate-2.9.1.tgz", + "integrity": "sha1-5Dy5XE65CiweCxbsZhTYxDUwpzE=", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + } + }, + "rc-resize-observer": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/rc-resize-observer/download/rc-resize-observer-1.2.0.tgz", + "integrity": "sha512-6W+UzT3PyDM0wVCEHfoW3qTHPTvbdSgiA43buiy8PzmeMnfgnDeb9NjdimMXMl3/TcrvvWl5RRVdp+NqcR47pQ==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.15.0", + "resize-observer-polyfill": "^1.5.1" + } + }, + "rc-select": { + "version": "14.0.0-alpha.22", + "resolved": "https://registry.npmmirror.com/rc-select/download/rc-select-14.0.0-alpha.22.tgz", + "integrity": "sha512-ScNdwUPMgXQbHlk5EisZchrs+HiqdBLzSh/hcjJh2dOA56DhawcZOGn8URS0rJSW4V3IbE26SVYBH60jV56SwQ==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-overflow": "^1.0.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.16.1", + "rc-virtual-list": "^3.2.0" + } + }, + "rc-slider": { + "version": "9.7.5", + "resolved": "https://registry.npmmirror.com/rc-slider/download/rc-slider-9.7.5.tgz", + "integrity": "sha512-LV/MWcXFjco1epPbdw1JlLXlTgmWpB9/Y/P2yinf8Pg3wElHxA9uajN21lJiWtZjf5SCUekfSP6QMJfDo4t1hg==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-tooltip": "^5.0.1", + "rc-util": "^5.16.1", + "shallowequal": "^1.1.0" + } + }, + "rc-steps": { + "version": "4.1.4", + "resolved": "https://registry.npmmirror.com/rc-steps/download/rc-steps-4.1.4.tgz?cache=0&sync_timestamp=1632734183540&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frc-steps%2Fdownload%2Frc-steps-4.1.4.tgz", + "integrity": "sha1-C6gtsgLVnKUtBpPcmIDdFFsZ3CM=", + "requires": { + "@babel/runtime": "^7.10.2", + "classnames": "^2.2.3", + "rc-util": "^5.0.1" + } + }, + "rc-switch": { + "version": "3.2.2", + "resolved": "https://registry.npm.taobao.org/rc-switch/download/rc-switch-3.2.2.tgz", + "integrity": "sha1-0AH3fxJmTVJZW09vtCXdnmb7qOg=", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.1" + } + }, + "rc-table": { + "version": "7.22.2", + "resolved": "https://registry.npmmirror.com/rc-table/download/rc-table-7.22.2.tgz", + "integrity": "sha512-Ng2gNkGi6ybl6dzneRn2H4Gp8XhIbRa5rXQ7ZhZcgWVmfVMok70UHGPXcf68tXW6O0/qckTf/eOVsoviSvK4sw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-resize-observer": "^1.1.0", + "rc-util": "^5.14.0", + "shallowequal": "^1.1.0" + } + }, + "rc-tabs": { + "version": "11.10.5", + "resolved": "https://registry.npmmirror.com/rc-tabs/download/rc-tabs-11.10.5.tgz", + "integrity": "sha512-DDuUdV6b9zGRYLtjI5hyejWLKoz1QiLWNgMeBzc3aMeQylZFhTYnFGdDc6HRqj5IYearNTsFPVSA+6VIT8g5cg==", + "requires": { + "@babel/runtime": "^7.11.2", + "classnames": "2.x", + "rc-dropdown": "^3.2.0", + "rc-menu": "^9.0.0", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.0" + } + }, + "rc-textarea": { + "version": "0.3.7", + "resolved": "https://registry.npmmirror.com/rc-textarea/download/rc-textarea-0.3.7.tgz", + "integrity": "sha512-yCdZ6binKmAQB13hc/oehh0E/QRwoPP1pjF21aHBxlgXO3RzPF6dUu4LG2R4FZ1zx/fQd2L1faktulrXOM/2rw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.7.0", + "shallowequal": "^1.1.0" + } + }, + "rc-tooltip": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/rc-tooltip/download/rc-tooltip-5.1.1.tgz", + "integrity": "sha1-lBeO0WLQJSvEmTtyX13CrA/M8VQ=", + "requires": { + "@babel/runtime": "^7.11.2", + "rc-trigger": "^5.0.0" + } + }, + "rc-tree": { + "version": "5.3.8", + "resolved": "https://registry.npmmirror.com/rc-tree/download/rc-tree-5.3.8.tgz", + "integrity": "sha512-YuobEryPymqPmHFUOvsoOrYdm24psaj0CrGEUuDUQUeG/nNcTGw6FA2YmF4NsEaNBvNSJUSzwfZnFHrKa/xv0A==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-util": "^5.16.1", + "rc-virtual-list": "^3.4.1" + } + }, + "rc-tree-select": { + "version": "5.0.0-alpha.4", + "resolved": "https://registry.npmmirror.com/rc-tree-select/download/rc-tree-select-5.0.0-alpha.4.tgz", + "integrity": "sha512-jKM8XoN3W/7cQmOP+Ypqcu2b2aa7GS8ZIzbAvdLzHt0h0/pTTuyzsNDpejgrX0+S0D0VkpYaZ1dxJQQ7Tinc1Q==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-select": "~14.0.0-alpha.8", + "rc-tree": "~5.3.3", + "rc-util": "^5.16.1" + } + }, + "rc-trigger": { + "version": "5.2.10", + "resolved": "https://registry.nlark.com/rc-trigger/download/rc-trigger-5.2.10.tgz", + "integrity": "sha1-igBXqUCxuQJ+qjO+7IpuzYXM4rE=", + "requires": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-align": "^4.0.0", + "rc-motion": "^2.0.0", + "rc-util": "^5.5.0" + } + }, + "rc-tween-one": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/rc-tween-one/download/rc-tween-one-3.0.3.tgz", + "integrity": "sha512-sU4Ci6sgN9Rglsctdk2C3G7r0bWcOv/4l3xBWfrBoTTV8c3Qsoch8a7oBR7ZRovW2PyzdPnCmM08byEYwHbPDQ==", + "requires": { + "@babel/runtime": "^7.11.1", + "style-utils": "^0.3.4", + "tween-one": "^1.0.50" + } + }, + "rc-upload": { + "version": "4.3.3", + "resolved": "https://registry.npmmirror.com/rc-upload/download/rc-upload-4.3.3.tgz", + "integrity": "sha512-YoJ0phCRenMj1nzwalXzciKZ9/FAaCrFu84dS5pphwucTC8GUWClcDID/WWNGsLFcM97NqIboDqrV82rVRhW/w==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.2.0" + } + }, + "rc-util": { + "version": "5.16.1", + "resolved": "https://registry.npmmirror.com/rc-util/download/rc-util-5.16.1.tgz", + "integrity": "sha512-kSCyytvdb3aRxQacS/71ta6c+kBWvM1v8/2h9d/HaNWauc3qB8pLnF20PJ8NajkNN8gb+rR1l0eWO+D4Pz+LLQ==", + "requires": { + "@babel/runtime": "^7.12.5", + "react-is": "^16.12.0", + "shallowequal": "^1.1.0" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz", + "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=" + } + } + }, + "rc-virtual-list": { + "version": "3.4.2", + "resolved": "https://registry.npmmirror.com/rc-virtual-list/download/rc-virtual-list-3.4.2.tgz?cache=0&sync_timestamp=1634880957545&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frc-virtual-list%2Fdownload%2Frc-virtual-list-3.4.2.tgz", + "integrity": "sha1-EHgyeqcjC15FbWee0s6Z88A269E=", + "requires": { + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.0.7" + } + }, + "react": { + "version": "17.0.2", + "resolved": "https://registry.npmmirror.com/react/download/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/react-app-polyfill/download/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "requires": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + } + }, + "react-color": { + "version": "2.17.3", + "resolved": "https://registry.npmmirror.com/react-color/download/react-color-2.17.3.tgz", + "integrity": "sha1-uFVtdE+VGTRoxwYdKqGRgBGNSkg=", + "requires": { + "@icons/material": "^0.2.4", + "lodash": "^4.17.11", + "material-colors": "^1.2.1", + "prop-types": "^15.5.10", + "reactcss": "^1.2.0", + "tinycolor2": "^1.4.1" + } + }, + "react-content-loader": { + "version": "5.1.4", + "resolved": "https://registry.npmmirror.com/react-content-loader/download/react-content-loader-5.1.4.tgz", + "integrity": "sha1-hUuv5EFd2d4HF0YhN1vDCO3Q67U=", + "requires": {} + }, + "react-dev-utils": { + "version": "12.0.0", + "resolved": "https://registry.npmmirror.com/react-dev-utils/download/react-dev-utils-12.0.0.tgz", + "integrity": "sha512-xBQkitdxozPxt1YZ9O1097EJiVpwHr9FoAuEVURCKV0Av8NBERovJauzP7bo1ThvuhZ4shsQ1AJiu4vQpoT1AQ==", + "requires": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.10", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz", + "integrity": "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "loader-utils": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/loader-utils/download/loader-utils-3.2.0.tgz", + "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmmirror.com/react-dom/download/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + } + }, + "react-error-overlay": { + "version": "6.0.10", + "resolved": "https://registry.npmmirror.com/react-error-overlay/download/react-error-overlay-6.0.10.tgz", + "integrity": "sha512-mKR90fX7Pm5seCOfz8q9F+66VCc1PGsWSBxKbITjfKVQHMNF2zudxHnMdJiB1fRCb+XsbQV9sO9DCkgsMQgBIA==" + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmmirror.com/react-is/download/react-is-17.0.2.tgz", + "integrity": "sha1-5pHUqOnHiTZWVVOas3J2Kw77VPA=" + }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/react-lifecycles-compat/download/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha1-TxonOv38jzSIqMUWv9p4+HI1I2I=" + }, + "react-query": { + "version": "3.34.8", + "resolved": "https://registry.npmmirror.com/react-query/download/react-query-3.34.8.tgz", + "integrity": "sha512-pl9e2VmVbgKf29Qn/WpmFVtB2g17JPqLLyOQg3GfSs/S2WABvip5xlT464vfXtilLPcJVg9bEHHlqmC38/nvDw==", + "requires": { + "@babel/runtime": "^7.5.5", + "broadcast-channel": "^3.4.1", + "match-sorter": "^6.0.2" + } + }, + "react-redux": { + "version": "7.2.6", + "resolved": "https://registry.npmmirror.com/react-redux/download/react-redux-7.2.6.tgz", + "integrity": "sha512-10RPdsz0UUrRL1NZE0ejTkucnclYSgXp5q+tB5SWx2qeG2ZJQJyymgAhwKy73yiL/13btfB6fPr+rgbMAaZIAQ==", + "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" + } + }, + "react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmmirror.com/react-refresh/download/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==" + }, + "react-resize-detector": { + "version": "6.7.8", + "resolved": "https://registry.npmmirror.com/react-resize-detector/download/react-resize-detector-6.7.8.tgz", + "integrity": "sha512-0FaEcUBAbn+pq3PT5a9hHRebUfuS1SRLGLpIw8LydU7zX429I6XJgKerKAMPsJH0qWAl6o5bVKNqFJqr6tGPYw==", + "requires": { + "@types/resize-observer-browser": "^0.1.6", + "lodash": "^4.17.21", + "resize-observer-polyfill": "^1.5.1" + } + }, + "react-router": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/react-router/download/react-router-6.2.1.tgz", + "integrity": "sha512-2fG0udBtxou9lXtK97eJeET2ki5//UWfQSl1rlJ7quwe6jrktK9FCCc8dQb5QY6jAv3jua8bBQRhhDOM/kVRsg==", + "requires": { + "history": "^5.2.0" + } + }, + "react-router-dom": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/react-router-dom/download/react-router-dom-6.2.1.tgz", + "integrity": "sha512-I6Zax+/TH/cZMDpj3/4Fl2eaNdcvoxxHoH1tYOREsQ22OKDYofGebrNm6CTPUcvLvZm63NL/vzCYdjf9CUhqmA==", + "requires": { + "history": "^5.2.0", + "react-router": "6.2.1" + } + }, + "react-sortable-hoc": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/react-sortable-hoc/download/react-sortable-hoc-2.0.0.tgz", + "integrity": "sha1-9ngNiqS5IqIfPnVK9ULwMmdweLc=", + "requires": { + "@babel/runtime": "^7.2.0", + "invariant": "^2.2.4", + "prop-types": "^15.5.7" + } + }, + "react-universal-interface": { + "version": "0.6.2", + "resolved": "https://registry.npm.taobao.org/react-universal-interface/download/react-universal-interface-0.6.2.tgz", + "integrity": "sha1-Xo1DigFymk27y+7OsLhr4Ub+Kzs=", + "requires": {} + }, + "react-use": { + "version": "17.3.1", + "resolved": "https://registry.npmmirror.com/react-use/download/react-use-17.3.1.tgz", + "integrity": "sha1-ErJIVVd1UZqiuQCyLxko0Cm/mdE=", + "requires": { + "@types/js-cookie": "^2.2.6", + "@xobotyi/scrollbar-width": "^1.9.5", + "copy-to-clipboard": "^3.3.1", + "fast-deep-equal": "^3.1.3", + "fast-shallow-equal": "^1.0.0", + "js-cookie": "^2.2.1", + "nano-css": "^5.3.1", + "react-universal-interface": "^0.6.2", + "resize-observer-polyfill": "^1.5.1", + "screenfull": "^5.1.0", + "set-harmonic-interval": "^1.0.1", + "throttle-debounce": "^3.0.1", + "ts-easing": "^0.2.0", + "tslib": "^2.1.0" + } + }, + "reactcss": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/reactcss/download/reactcss-1.2.3.tgz", + "integrity": "sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==", + "requires": { + "lodash": "^4.0.1" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.nlark.com/readable-stream/download/readable-stream-3.6.0.tgz", + "integrity": "sha1-M3u9o63AcGvT4CRCaihtS0sskZg=", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.nlark.com/readdirp/download/readdirp-3.6.0.tgz", + "integrity": "sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=", + "requires": { + "picomatch": "^2.2.1" + } + }, + "recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/recursive-readdir/download/recursive-readdir-2.2.2.tgz", + "integrity": "sha1-mUb7MnThYo3m42svZxSVO0hFCU8=", + "requires": { + "minimatch": "3.0.4" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/redent/download/redent-3.0.0.tgz?cache=0&sync_timestamp=1620071175005&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fredent%2Fdownload%2Fredent-3.0.0.tgz", + "integrity": "sha1-5Ve3mYMWu1PJ8fVvpiY1LGljBZ8=", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "redeyed": { + "version": "0.4.4", + "resolved": "https://registry.npm.taobao.org/redeyed/download/redeyed-0.4.4.tgz", + "integrity": "sha1-N+mQpvKyGyoRwuakj9QTVpjLqX8=", + "requires": { + "esprima": "~1.0.4" + }, + "dependencies": { + "esprima": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/esprima/download/esprima-1.0.4.tgz", + "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=" + } + } + }, + "redux": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/redux/download/redux-4.1.2.tgz", + "integrity": "sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw==", + "requires": { + "@babel/runtime": "^7.9.2" + } + }, + "redux-thunk": { + "version": "2.4.1", + "resolved": "https://registry.npmmirror.com/redux-thunk/download/redux-thunk-2.4.1.tgz", + "integrity": "sha512-OOYGNY5Jy2TWvTL1KgAlVy6dcx3siPJ1wTq741EPyUKfn6W6nChdICjZwCd0p8AZBs5kWpZlbkXW2nE/zjUa+Q==", + "requires": {} + }, + "reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npm.taobao.org/reflect-metadata/download/reflect-metadata-0.1.13.tgz", + "integrity": "sha1-Z648pXyXKiqhZCsQ/jY/4y1J3Ag=" + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz", + "integrity": "sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=" + }, + "regenerate-unicode-properties": { + "version": "9.0.0", + "resolved": "https://registry.npmmirror.com/regenerate-unicode-properties/download/regenerate-unicode-properties-9.0.0.tgz", + "integrity": "sha1-VNCccRXh9T3CMUqXSzLBw0Tv4yY=", + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.9.tgz", + "integrity": "sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I=" + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.nlark.com/regenerator-transform/download/regenerator-transform-0.14.5.tgz?cache=0&sync_timestamp=1627057533376&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregenerator-transform%2Fdownload%2Fregenerator-transform-0.14.5.tgz", + "integrity": "sha1-yY2hVGg2ccnE3LFuznNlF+G3/rQ=", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.nlark.com/regex-parser/download/regex-parser-2.2.11.tgz", + "integrity": "sha1-OzfskEnhlHmAboeMq+fByoPM/lg=" + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npm.taobao.org/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz?cache=0&sync_timestamp=1610725711521&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregexp.prototype.flags%2Fdownload%2Fregexp.prototype.flags-1.3.1.tgz", + "integrity": "sha1-fvNSro0VnnWMDq3Kb4/LTu8HviY=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/regexpp/download/regexpp-3.2.0.tgz?cache=0&sync_timestamp=1623668905417&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregexpp%2Fdownload%2Fregexpp-3.2.0.tgz", + "integrity": "sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=" + }, + "regexpu-core": { + "version": "4.8.0", + "resolved": "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.8.0.tgz?cache=0&sync_timestamp=1631619113277&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregexpu-core%2Fdownload%2Fregexpu-core-4.8.0.tgz", + "integrity": "sha1-5WBbo2G2excYR4UBMnUC9EeamPA=", + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + } + }, + "registry-auth-token": { + "version": "4.2.1", + "resolved": "https://registry.npm.taobao.org/registry-auth-token/download/registry-auth-token-4.2.1.tgz?cache=0&sync_timestamp=1605012436264&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregistry-auth-token%2Fdownload%2Fregistry-auth-token-4.2.1.tgz", + "integrity": "sha1-bXtABkQZGJcszV/tzUHcMix5slA=", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npm.taobao.org/registry-url/download/registry-url-5.1.0.tgz?cache=0&sync_timestamp=1618681920538&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregistry-url%2Fdownload%2Fregistry-url-5.1.0.tgz", + "integrity": "sha1-6YM0tQ1UNLgRNrROxjjZwgCcUAk=", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/regjsgen/download/regjsgen-0.5.2.tgz", + "integrity": "sha1-kv8pX7He7L9uzaslQ9IH6RqjNzM=" + }, + "regjsparser": { + "version": "0.7.0", + "resolved": "https://registry.npmmirror.com/regjsparser/download/regjsparser-0.7.0.tgz", + "integrity": "sha1-prZntUyIXhi1JVTLSWDvcRh+mWg=", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + } + }, + "regl": { + "version": "1.7.0", + "resolved": "https://registry.npm.taobao.org/regl/download/regl-1.7.0.tgz", + "integrity": "sha1-DRhUMQRKNWv4Dpt3WxG5Ne8nRtM=" + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npm.taobao.org/relateurl/download/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + }, + "remove-accents": { + "version": "0.4.2", + "resolved": "https://registry.nlark.com/remove-accents/download/remove-accents-0.4.2.tgz", + "integrity": "sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U=" + }, + "renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/renderkid/download/renderkid-3.0.0.tgz", + "integrity": "sha1-X9gj5NaVHTc1jsyaWLHwaDa2Joo=", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npm.taobao.org/repeat-string/download/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/require-from-string/download/require-from-string-2.0.2.tgz", + "integrity": "sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk=" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/requires-port/download/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "reselect": { + "version": "4.1.5", + "resolved": "https://registry.npmmirror.com/reselect/download/reselect-4.1.5.tgz", + "integrity": "sha512-uVdlz8J7OO+ASpBYoz1Zypgx0KasCY20H+N8JD13oUMtPvSHQuscrHop4KbXrbsBcdB9Ds7lVK7eRkBIfO43vQ==" + }, + "resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz?cache=0&sync_timestamp=1618847256390&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresize-observer-polyfill%2Fdownload%2Fresize-observer-polyfill-1.5.1.tgz", + "integrity": "sha1-DpAg3T0hAkRY1OvSfiPkAmmBBGQ=" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npm.taobao.org/resolve/download/resolve-1.20.0.tgz?cache=0&sync_timestamp=1613054862388&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.20.0.tgz", + "integrity": "sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/resolve-cwd/download/resolve-cwd-3.0.0.tgz", + "integrity": "sha1-DwB18bslRHZs9zumpuKt/ryxPy0=", + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-5.0.0.tgz", + "integrity": "sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=" + }, + "resolve-protobuf-schema": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/resolve-protobuf-schema/download/resolve-protobuf-schema-2.1.0.tgz", + "integrity": "sha1-nKmp5pzxkrva8QBuwZc5SKpKN1g=", + "requires": { + "protocol-buffers-schema": "^3.3.1" + } + }, + "resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/resolve-url-loader/download/resolve-url-loader-4.0.0.tgz", + "integrity": "sha1-1Q1N3HRrsQRoRDFnrPgA3NbDrVc=", + "requires": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmmirror.com/picocolors/download/picocolors-0.2.1.tgz?cache=0&sync_timestamp=1634093339035&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpicocolors%2Fdownload%2Fpicocolors-0.2.1.tgz", + "integrity": "sha1-VwZw95NkaFHRuhNZlpYqutWHhZ8=" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmmirror.com/postcss/download/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "resolve.exports": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/resolve.exports/download/resolve.exports-1.1.0.tgz", + "integrity": "sha1-XOhCuUsFFGwOAwdphdHQ5+SMkMk=" + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/responselike/download/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz?cache=0&sync_timestamp=1629747087185&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frestore-cursor%2Fdownload%2Frestore-cursor-3.1.0.tgz", + "integrity": "sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "resumer": { + "version": "0.0.0", + "resolved": "https://registry.nlark.com/resumer/download/resumer-0.0.0.tgz", + "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", + "requires": { + "through": "~2.3.4" + } + }, + "retry": { + "version": "0.13.1", + "resolved": "https://registry.nlark.com/retry/download/retry-0.13.1.tgz", + "integrity": "sha1-GFsVh6z2eRnWOzVzSeA1N7JIRlg=" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/reusify/download/reusify-1.0.4.tgz", + "integrity": "sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=" + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.nlark.com/right-align/download/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "requires": { + "align-text": "^0.1.1" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/rimraf/download/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "2.62.0", + "resolved": "https://registry.npmmirror.com/rollup/download/rollup-2.62.0.tgz", + "integrity": "sha512-cJEQq2gwB0GWMD3rYImefQTSjrPYaC6s4J9pYqnstVLJ1CHa/aZNVkD4Epuvg4iLeMA4KRiq7UM7awKK6j7jcw==", + "requires": { + "fsevents": "~2.3.2" + } + }, + "rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.nlark.com/rollup-plugin-terser/download/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha1-6Pu6SGmYGy3DWufopQLVxsBNMk0=", + "requires": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmmirror.com/jest-worker/download/jest-worker-26.6.2.tgz", + "integrity": "sha1-f3LLxNZDw2Xie5/XdfnQ6qnHqO0=", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "integrity": "sha1-tSXhI4SJpez8Qq+sw/6Z5mb0sao=", + "requires": { + "randombytes": "^2.1.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "rtl-css-js": { + "version": "1.15.0", + "resolved": "https://registry.npmmirror.com/rtl-css-js/download/rtl-css-js-1.15.0.tgz", + "integrity": "sha512-99Cu4wNNIhrI10xxUaABHsdDqzalrSRTie4GeCmbGVuehm4oj+fIy8fTzB+16pmKe8Bv9rl+hxIBez6KxExTew==", + "requires": { + "@babel/runtime": "^7.1.2" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/run-parallel/download/run-parallel-1.2.0.tgz?cache=0&sync_timestamp=1612925912322&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frun-parallel%2Fdownload%2Frun-parallel-1.2.0.tgz", + "integrity": "sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rw": { + "version": "1.3.3", + "resolved": "https://registry.npmmirror.com/rw/download/rw-1.3.3.tgz", + "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=" + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmmirror.com/rxjs/download/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmmirror.com/tslib/download/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/safe-buffer/download/safe-buffer-5.1.2.tgz?cache=0&sync_timestamp=1618847044058&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsafe-buffer%2Fdownload%2Fsafe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz", + "integrity": "sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=" + }, + "sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.nlark.com/sanitize.css/download/sanitize.css-13.0.0.tgz", + "integrity": "sha1-JnVVOXSyeWTHVWKt472F15h58XM=" + }, + "sass-loader": { + "version": "12.4.0", + "resolved": "https://registry.npmmirror.com/sass-loader/download/sass-loader-12.4.0.tgz", + "integrity": "sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==", + "requires": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz", + "integrity": "sha1-KBYjTiN4vdxOU1T6tcqold9xANk=" + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/saxes/download/saxes-5.0.1.tgz?cache=0&sync_timestamp=1636312060591&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsaxes%2Fdownload%2Fsaxes-5.0.1.tgz", + "integrity": "sha1-7rq5U/o7dgjb6U5drbFciI+maW0=", + "requires": { + "xmlchars": "^2.2.0" + } + }, + "scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/scheduler/download/scheduler-0.20.2.tgz", + "integrity": "sha1-S67jlDbjSqk7SHS93L8P6Li1DpE=", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-3.1.1.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-3.1.1.tgz", + "integrity": "sha1-vHTEtraZXB2I92qLd76nIZ4MgoE=", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "screenfull": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/screenfull/download/screenfull-5.2.0.tgz", + "integrity": "sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==" + }, + "scroll-into-view-if-needed": { + "version": "2.2.28", + "resolved": "https://registry.npmmirror.com/scroll-into-view-if-needed/download/scroll-into-view-if-needed-2.2.28.tgz", + "integrity": "sha1-WhWy9YpSZCyIyOylhGROAXA9ZFo=", + "requires": { + "compute-scroll-into-view": "^1.0.17" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/select-hose/download/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.nlark.com/selfsigned/download/selfsigned-1.10.11.tgz?cache=0&sync_timestamp=1620160245612&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fselfsigned%2Fdownload%2Fselfsigned-1.10.11.tgz", + "integrity": "sha1-JJKc2Qb+D0S20B+yOZmnOVN6y+k=", + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.nlark.com/semver/download/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/semver-compare/download/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true + }, + "semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/semver-diff/download/semver-diff-3.1.1.tgz", + "integrity": "sha1-Bfd85Z8yXgDicGr9Z7tQbdscoys=", + "dev": true, + "requires": { + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.nlark.com/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true + } + } + }, + "send": { + "version": "0.17.2", + "resolved": "https://registry.npmmirror.com/send/download/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "1.8.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.1.3.tgz", + "integrity": "sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=" + } + } + }, + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-6.0.0.tgz", + "integrity": "sha1-765diPRdeSQUHai1w6en5mP+/rg=", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/serve-index/download/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "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.npmmirror.com/debug/download/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmmirror.com/http-errors/download/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "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.npm.taobao.org/inherits/download/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/setprototypeof/download/setprototypeof-1.1.0.tgz", + "integrity": "sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY=" + } + } + }, + "serve-static": { + "version": "1.14.2", + "resolved": "https://registry.npmmirror.com/serve-static/download/serve-static-1.14.2.tgz", + "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.2" + } + }, + "server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/server-destroy/download/server-destroy-1.0.1.tgz", + "integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=", + "dev": true + }, + "set-harmonic-interval": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/set-harmonic-interval/download/set-harmonic-interval-1.0.1.tgz", + "integrity": "sha1-4Xc3BVOc37gM4cPZnn8pi7OZUkk=" + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/setprototypeof/download/setprototypeof-1.2.0.tgz", + "integrity": "sha1-ZsmiSnP5/CjL5msJ/tPTPcrxtCQ=" + }, + "shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/shallowequal/download/shallowequal-1.1.0.tgz", + "integrity": "sha1-GI1SHelbkIdAT9TctosT3wrk5/g=" + }, + "sharkdown": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/sharkdown/download/sharkdown-0.1.1.tgz", + "integrity": "sha1-ZEhL0PCPNH+DGen/lHpnD2tIsbI=", + "requires": { + "cardinal": "~0.4.2", + "minimist": "0.0.5", + "split": "~0.2.10" + }, + "dependencies": { + "minimist": { + "version": "0.0.5", + "resolved": "https://registry.nlark.com/minimist/download/minimist-0.0.5.tgz", + "integrity": "sha1-16oye87PUY+RBqxrjwA/o7zqhWY=" + } + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/shebang-command/download/shebang-command-2.0.0.tgz", + "integrity": "sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz?cache=0&sync_timestamp=1628896304371&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fshebang-regex%2Fdownload%2Fshebang-regex-3.0.0.tgz", + "integrity": "sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=" + }, + "shell-quote": { + "version": "1.7.3", + "resolved": "https://registry.npmmirror.com/shell-quote/download/shell-quote-1.7.3.tgz?cache=0&sync_timestamp=1634798222474&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fshell-quote%2Fdownload%2Fshell-quote-1.7.3.tgz", + "integrity": "sha1-qkDtrBcERbmkMeF7tiwLiBucQSM=" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/side-channel/download/side-channel-1.0.4.tgz", + "integrity": "sha1-785cj9wQTudRslxY1CkAEfpeos8=", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.6", + "resolved": "https://registry.npmmirror.com/signal-exit/download/signal-exit-3.0.6.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsignal-exit%2Fdownload%2Fsignal-exit-3.0.6.tgz", + "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" + }, + "simple-progress-webpack-plugin": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/simple-progress-webpack-plugin/download/simple-progress-webpack-plugin-2.0.0.tgz", + "integrity": "sha1-LVGmPiZgcM3RgSFaZmXinqboIFU=", + "dev": true, + "requires": { + "chalk": "4.1.x", + "figures": "3.2.x", + "log-update": "4.0.x" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmmirror.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.3.2.tgz", + "integrity": "sha1-RXSirlb3qyBolvtDHq7tBm/fjwM=" + } + } + }, + "sirv": { + "version": "1.0.19", + "resolved": "https://registry.npmmirror.com/sirv/download/sirv-1.0.19.tgz", + "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", + "dev": true, + "requires": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^1.0.0" + } + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/sisteransi/download/sisteransi-1.0.5.tgz", + "integrity": "sha1-E01oEpd1ZDfMBcoBNw06elcQde0=" + }, + "size-sensor": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/size-sensor/download/size-sensor-1.0.1.tgz", + "integrity": "sha1-+E5GIG0+JZ+v8dVI5LO+ypMhnbs=" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/slash/download/slash-3.0.0.tgz", + "integrity": "sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=" + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/slice-ansi/download/slice-ansi-4.0.0.tgz", + "integrity": "sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + } + } + }, + "sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmmirror.com/sockjs/download/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz", + "integrity": "sha1-OZO9hzv8SEecyp6jpUeDXHwVSzQ=" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "source-map-js": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/source-map-js/download/source-map-js-1.0.1.tgz?cache=0&sync_timestamp=1636400915509&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsource-map-js%2Fdownload%2Fsource-map-js-1.0.1.tgz", + "integrity": "sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==" + }, + "source-map-loader": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/source-map-loader/download/source-map-loader-3.0.0.tgz", + "integrity": "sha1-8qBO4oCK0Bx3TeprfSY5g587MEk=", + "requires": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.2", + "source-map-js": "^0.6.2" + }, + "dependencies": { + "source-map-js": { + "version": "0.6.2", + "resolved": "https://registry.npmmirror.com/source-map-js/download/source-map-js-0.6.2.tgz?cache=0&sync_timestamp=1636400915509&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsource-map-js%2Fdownload%2Fsource-map-js-0.6.2.tgz", + "integrity": "sha1-C7XeYxtBz72mz7qL0FqA79/SOF4=" + } + } + }, + "source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.6.0.tgz", + "integrity": "sha1-PZ34fiNrU/FtAeWBUPx3EROOXtI=", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" + } + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmmirror.com/source-map-support/download/source-map-support-0.5.21.tgz?cache=0&sync_timestamp=1637320322789&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsource-map-support%2Fdownload%2Fsource-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/source-map-url/download/source-map-url-0.4.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map-url%2Fdownload%2Fsource-map-url-0.4.1.tgz", + "integrity": "sha1-CvZmBadFpaL5HPG7+KevvCg97FY=" + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.nlark.com/sourcemap-codec/download/sourcemap-codec-1.4.8.tgz", + "integrity": "sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=" + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/spdy/download/spdy-4.0.2.tgz", + "integrity": "sha1-t09GYgOj7aRSwCSSuR+56EonZ3s=", + "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.nlark.com/spdy-transport/download/spdy-transport-3.0.0.tgz", + "integrity": "sha1-ANSGOmQArXXfkzYaFghgXl3NzzE=", + "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" + } + }, + "split": { + "version": "0.2.10", + "resolved": "https://registry.nlark.com/split/download/split-0.2.10.tgz", + "integrity": "sha1-Zwl8YB1pfOE2j0GPBs0gHPBSGlc=", + "requires": { + "through": "2" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/sprintf-js/download/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmmirror.com/stable/download/stable-0.1.8.tgz", + "integrity": "sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88=" + }, + "stack-generator": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/stack-generator/download/stack-generator-2.0.5.tgz", + "integrity": "sha1-+wDltO6X3mA+B3PqeM6UTYFZbDY=", + "requires": { + "stackframe": "^1.1.1" + } + }, + "stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-2.0.5.tgz?cache=0&sync_timestamp=1631896396458&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstack-utils%2Fdownload%2Fstack-utils-2.0.5.tgz", + "integrity": "sha1-0lJl/KmVFUZZ27+6O0klR3jS/dU=", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz", + "integrity": "sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q=" + } + } + }, + "stackframe": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/stackframe/download/stackframe-1.2.0.tgz", + "integrity": "sha1-UkKUktY8YuuYmATBFVLj0i53kwM=" + }, + "stacktrace-gps": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/stacktrace-gps/download/stacktrace-gps-3.0.4.tgz", + "integrity": "sha1-dojcL8Cf+zoTFl6+DbyvQbzwxpo=", + "requires": { + "source-map": "0.5.6", + "stackframe": "^1.1.1" + }, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=" + } + } + }, + "stacktrace-js": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/stacktrace-js/download/stacktrace-js-2.0.2.tgz?cache=0&sync_timestamp=1609348415805&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstacktrace-js%2Fdownload%2Fstacktrace-js-2.0.2.tgz", + "integrity": "sha1-TKk+qfSUdS1VcJoIHUAP2uvuiXs=", + "requires": { + "error-stack-parser": "^2.0.6", + "stack-generator": "^2.0.5", + "stacktrace-gps": "^3.0.4" + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.nlark.com/statuses/download/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "steno": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/steno/download/steno-0.4.4.tgz", + "integrity": "sha1-BxEFvfwobmYVwEA8J+nXtdy4Vcs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.3" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/string_decoder/download/string_decoder-1.3.0.tgz", + "integrity": "sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/safe-buffer/download/safe-buffer-5.2.1.tgz?cache=0&sync_timestamp=1618847044058&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsafe-buffer%2Fdownload%2Fsafe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=" + } + } + }, + "string-convert": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/string-convert/download/string-convert-0.2.1.tgz", + "integrity": "sha1-aYLMMEn7tM2F+LJFaLnZvznu/5c=" + }, + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/string-length/download/string-length-4.0.2.tgz?cache=0&sync_timestamp=1631558154323&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstring-length%2Fdownload%2Fstring-length-4.0.2.tgz", + "integrity": "sha1-qKjce9XBqCubPIuH4SX2aHG25Xo=", + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/string-natural-compare/download/string-natural-compare-3.0.1.tgz", + "integrity": "sha1-ekLVhHRFSWN1no6LeuY9ccHn/fQ=" + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/string-width/download/string-width-4.2.3.tgz", + "integrity": "sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/download/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=" + } + } + }, + "string.prototype.matchall": { + "version": "4.0.6", + "resolved": "https://registry.npmmirror.com/string.prototype.matchall/download/string.prototype.matchall-4.0.6.tgz?cache=0&sync_timestamp=1633405409079&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstring.prototype.matchall%2Fdownload%2Fstring.prototype.matchall-4.0.6.tgz", + "integrity": "sha1-Wrtdq8lMew6iOA9lumELOlRLFfo=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trim": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/string.prototype.trim/download/string.prototype.trim-1.2.5.tgz?cache=0&sync_timestamp=1633325929200&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstring.prototype.trim%2Fdownload%2Fstring.prototype.trim-1.2.5.tgz", + "integrity": "sha1-pYe8yL+tjLmCmld/XeMN0XDBaCw=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha1-51rpDClCxjUEaGwYsoe0oLGkX4A=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha1-s2OZr0qymZtMnGSL16P7K7Jv7u0=", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/stringify-object/download/stringify-object-3.3.0.tgz", + "integrity": "sha1-cDBlrvyhkwDTzoivT1s5VtdVZik=", + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-6.0.1.tgz?cache=0&sync_timestamp=1632420562057&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-4.0.0.tgz", + "integrity": "sha1-nDUFwdtFvO3KPZz3oW9cWqOQGHg=" + }, + "strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/strip-comments/download/strip-comments-2.0.1.tgz", + "integrity": "sha1-StEcP7ysF3pnpArCJMoznKHBups=" + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/strip-final-newline/download/strip-final-newline-2.0.0.tgz?cache=0&sync_timestamp=1620047319874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-final-newline%2Fdownload%2Fstrip-final-newline-2.0.0.tgz", + "integrity": "sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=" + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-indent/download/strip-indent-3.0.0.tgz", + "integrity": "sha1-wy4c7pQLazQyx3G8LFS8znPNMAE=", + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-json-comments%2Fdownload%2Fstrip-json-comments-3.1.1.tgz", + "integrity": "sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=" + }, + "style-loader": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/style-loader/download/style-loader-3.3.1.tgz", + "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", + "requires": {} + }, + "style-utils": { + "version": "0.3.4", + "resolved": "https://registry.nlark.com/style-utils/download/style-utils-0.3.4.tgz", + "integrity": "sha1-/0B8Ng07XBoJcSeVhuOc4nJRBk8=" + }, + "stylehacks": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/stylehacks/download/stylehacks-5.0.1.tgz", + "integrity": "sha1-Mj7FVBmFIJhoBjiMf9rrw40sBvs=", + "requires": { + "browserslist": "^4.16.0", + "postcss-selector-parser": "^6.0.4" + } + }, + "stylis": { + "version": "4.0.13", + "resolved": "https://registry.npmmirror.com/stylis/download/stylis-4.0.13.tgz", + "integrity": "sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==" + }, + "supercluster": { + "version": "7.1.4", + "resolved": "https://registry.npmmirror.com/supercluster/download/supercluster-7.1.4.tgz", + "integrity": "sha1-Z2Kqv9mF0zkLSfE7gVVn1RFqgoo=", + "requires": { + "kdbush": "^3.0.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-5.5.0.tgz", + "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=", + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/supports-hyperlinks/download/supports-hyperlinks-2.2.0.tgz", + "integrity": "sha1-T3e0JIh2WJF3S3DHm6vYf5vVlLs=", + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/svg-parser/download/svg-parser-2.0.4.tgz", + "integrity": "sha1-/cLinhOVFzYUC3bLEiyO5mMOtrU=" + }, + "svg-path-properties": { + "version": "1.0.11", + "resolved": "https://registry.npm.taobao.org/svg-path-properties/download/svg-path-properties-1.0.11.tgz", + "integrity": "sha1-2AS3feoobd1WvRglSLnE9ZgNz4M=" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmmirror.com/svgo/download/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": { + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/css-select/download/css-select-2.1.0.tgz", + "integrity": "sha1-ajRlM1ZjWTSoG6ymjQJVQyEF2+8=", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmmirror.com/css-what/download/css-what-3.4.2.tgz", + "integrity": "sha1-6nAm/LAXd+295SEk4h8yfnrpUOQ=" + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-0.2.2.tgz", + "integrity": "sha1-GvuB9TNxcXXUeGVd68XjMtn5u1E=", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-1.7.0.tgz?cache=0&sync_timestamp=1630106535879&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdomutils%2Fdownload%2Fdomutils-1.7.0.tgz", + "integrity": "sha1-Vuo0HoNOBuZ0ivehyyXaZ+qfjCo=", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz", + "integrity": "sha1-0EjESzew0Qp/Kj1f7j9DM9eQSB8=" + } + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-1.0.2.tgz", + "integrity": "sha1-sr0pXDfj3VijvwcAN2Zjuk2c8Fw=", + "requires": { + "boolbase": "~1.0.0" + } + } + } + }, + "svgpath": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/svgpath/download/svgpath-2.5.0.tgz", + "integrity": "sha512-o/vohwqjUO9nDAh4rcjE3KaW/v//At8UJu2LJMybXidf5QLQLVA4bxH0//4YCsr+1H4Gw1Wi/Jc62ynzSBYidw==" + }, + "swr": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/swr/download/swr-1.1.0.tgz", + "integrity": "sha512-MFL3mkl752Uap81nLA1tEu7vQmikPamSziW+6dBidYKAo4oLOlUx/x5GZy4ZCkCwfZe2uedylkz1UMGnatUX4g==", + "requires": {} + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz", + "integrity": "sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I=" + }, + "tailwindcss": { + "version": "3.0.8", + "resolved": "https://registry.npmmirror.com/tailwindcss/download/tailwindcss-3.0.8.tgz", + "integrity": "sha512-Yww1eRYO1AxITJmW/KduZPxNvYdHuedeKwPju9Oakp7MdiixRi5xkpLhirsc81QCxHL0eoce6qKmxXwYGt4Cjw==", + "requires": { + "arg": "^5.0.1", + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "color-name": "^1.1.4", + "cosmiconfig": "^7.0.1", + "detective": "^5.2.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "normalize-path": "^3.0.0", + "object-hash": "^2.2.0", + "postcss-js": "^3.0.3", + "postcss-load-config": "^3.1.0", + "postcss-nested": "5.0.6", + "postcss-selector-parser": "^6.0.7", + "postcss-value-parser": "^4.2.0", + "quick-lru": "^5.1.1", + "resolve": "^1.20.0", + "tmp": "^0.2.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/tapable/download/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + }, + "tape": { + "version": "4.14.0", + "resolved": "https://registry.npmmirror.com/tape/download/tape-4.14.0.tgz", + "integrity": "sha1-5NRgl+EpgXF1uQkl8jhfaxvPqCY=", + "requires": { + "call-bind": "~1.0.2", + "deep-equal": "~1.1.1", + "defined": "~1.0.0", + "dotignore": "~0.1.2", + "for-each": "~0.3.3", + "glob": "~7.1.7", + "has": "~1.0.3", + "inherits": "~2.0.4", + "is-regex": "~1.1.3", + "minimist": "~1.2.5", + "object-inspect": "~1.11.0", + "resolve": "~1.20.0", + "resumer": "~0.0.0", + "string.prototype.trim": "~1.2.4", + "through": "~2.3.8" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmmirror.com/glob/download/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" + } + }, + "object-inspect": { + "version": "1.11.1", + "resolved": "https://registry.npmmirror.com/object-inspect/download/object-inspect-1.11.1.tgz", + "integrity": "sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==" + } + } + }, + "temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/temp-dir/download/temp-dir-2.0.0.tgz", + "integrity": "sha1-vekrBb3+sVFugEycAK1FF38xMh4=" + }, + "tempy": { + "version": "0.6.0", + "resolved": "https://registry.nlark.com/tempy/download/tempy-0.6.0.tgz?cache=0&sync_timestamp=1629290366852&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftempy%2Fdownload%2Ftempy-0.6.0.tgz", + "integrity": "sha1-ZeLDWrwG8RJKl/OHsIMDRCveWfM=", + "requires": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "dependencies": { + "type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.16.0.tgz", + "integrity": "sha1-MkC4kaeLDerpENvrhlU+VSoUiGA=" + } + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/terminal-link/download/terminal-link-2.1.1.tgz", + "integrity": "sha1-FKZKJ6s8Dfkz6lRvulXy0HjtyZQ=", + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "terser": { + "version": "5.10.0", + "resolved": "https://registry.npmmirror.com/terser/download/terser-5.10.0.tgz?cache=0&sync_timestamp=1636988125723&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fterser%2Fdownload%2Fterser-5.10.0.tgz", + "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmmirror.com/commander/download/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.7.3.tgz", + "integrity": "sha1-UwL4FpAxc1ImVECS5kmB91F1A4M=" + } + } + }, + "terser-webpack-plugin": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/terser-webpack-plugin/download/terser-webpack-plugin-5.3.0.tgz", + "integrity": "sha512-LPIisi3Ol4chwAaPP8toUJ3L4qCM1G0wao7L3qNv57Drezxj6+VEyySpPw4B1HSO2Eg/hDY/MNF5XihCAoqnsQ==", + "requires": { + "jest-worker": "^27.4.1", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + } + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.nlark.com/test-exclude/download/test-exclude-6.0.0.tgz", + "integrity": "sha1-BKhphmHYBepvopO2y55jrARO8V4=", + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "requires": { + "utrie": "^1.0.2" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "three": { + "version": "0.137.5", + "resolved": "https://registry.npmmirror.com/three/-/three-0.137.5.tgz", + "integrity": "sha512-rTyr+HDFxjnN8+N/guZjDgfVxgHptZQpf6xfL/Mo7a5JYIFwK6tAq3bzxYYB4Ae0RosDZlDuP+X5aXDXz+XnHQ==" + }, + "throat": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/throat/download/throat-6.0.1.tgz", + "integrity": "sha1-1RT+2tlXQMEsLX/HDqhj61Gt43U=" + }, + "throttle-debounce": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/throttle-debounce/download/throttle-debounce-3.0.1.tgz", + "integrity": "sha1-MvlNhN+olPeGyaHykOemRbahmrs=" + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.nlark.com/through/download/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/thunky/download/thunky-1.1.0.tgz", + "integrity": "sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30=" + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/timsort/download/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + }, + "tinycolor2": { + "version": "1.4.2", + "resolved": "https://registry.npm.taobao.org/tinycolor2/download/tinycolor2-1.4.2.tgz", + "integrity": "sha1-P2pNEHGtB2dtf6Ry4frECnGdiAM=" + }, + "tinyqueue": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/tinyqueue/download/tinyqueue-2.0.3.tgz", + "integrity": "sha1-ZNhJLr8554Ade9NAYuKbRbIDXwg=" + }, + "tmp": { + "version": "0.2.1", + "resolved": "https://registry.npm.taobao.org/tmp/download/tmp-0.2.1.tgz", + "integrity": "sha1-hFf8MDfc9HGcJRNnoa9lAO4czxQ=", + "requires": { + "rimraf": "^3.0.0" + } + }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/tmpl/download/tmpl-1.0.5.tgz?cache=0&sync_timestamp=1630997259079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftmpl%2Fdownload%2Ftmpl-1.0.5.tgz", + "integrity": "sha1-hoPguQK7nCDE9ybjwLafNlGMB8w=" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1628418855671&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/to-readable-stream/download/to-readable-stream-1.0.0.tgz?cache=0&sync_timestamp=1619072466944&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fto-readable-stream%2Fdownload%2Fto-readable-stream-1.0.0.tgz", + "integrity": "sha1-zgqgwvPfat+FLvtASng+d8BHV3E=", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz", + "integrity": "sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=", + "requires": { + "is-number": "^7.0.0" + } + }, + "toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/toggle-selection/download/toggle-selection-1.0.6.tgz", + "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/toidentifier/download/toidentifier-1.0.1.tgz?cache=0&sync_timestamp=1636938515603&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftoidentifier%2Fdownload%2Ftoidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "topojson-client": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/topojson-client/download/topojson-client-3.1.0.tgz", + "integrity": "sha1-Iuix7QiiuSL+60r29Ttu8JpGe5k=", + "requires": { + "commander": "2" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmmirror.com/commander/download/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + } + }, + "toposort": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/toposort/download/toposort-2.0.2.tgz", + "integrity": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=" + }, + "totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/totalist/download/totalist-1.1.0.tgz", + "integrity": "sha1-pNZaPlRlF3AePlw3pHpwrJf+Vt8=", + "dev": true + }, + "tough-cookie": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-4.0.0.tgz", + "integrity": "sha1-2CIjTuyogvmR8PkIgkrSYi3b7OQ=", + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + }, + "dependencies": { + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz", + "integrity": "sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=" + } + } + }, + "tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/tr46/download/tr46-2.1.0.tgz?cache=0&sync_timestamp=1633302360065&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftr46%2Fdownload%2Ftr46-2.1.0.tgz", + "integrity": "sha1-+oeqgcpdWUHajL8fm3SdyWmk4kA=", + "requires": { + "punycode": "^2.1.1" + } + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/tryer/download/tryer-1.0.1.tgz", + "integrity": "sha1-8shUBoALmw90yfdGW4HqrSQSUvg=" + }, + "ts-easing": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/ts-easing/download/ts-easing-0.2.0.tgz", + "integrity": "sha1-yKijUCUQVWZYjYfb2gXdf7+lpOw=" + }, + "tsconfig-paths": { + "version": "3.12.0", + "resolved": "https://registry.npmmirror.com/tsconfig-paths/download/tsconfig-paths-3.12.0.tgz?cache=0&sync_timestamp=1637404842509&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftsconfig-paths%2Fdownload%2Ftsconfig-paths-3.12.0.tgz", + "integrity": "sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=", + "requires": { + "minimist": "^1.2.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + } + } + }, + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.nlark.com/tslib/download/tslib-2.3.1.tgz?cache=0&sync_timestamp=1628722580350&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftslib%2Fdownload%2Ftslib-2.3.1.tgz", + "integrity": "sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.nlark.com/tsutils/download/tsutils-3.21.0.tgz", + "integrity": "sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=", + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.nlark.com/tslib/download/tslib-1.14.1.tgz?cache=0&sync_timestamp=1628722580350&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftslib%2Fdownload%2Ftslib-1.14.1.tgz", + "integrity": "sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=" + } + } + }, + "tween-functions": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/tween-functions/download/tween-functions-1.2.0.tgz", + "integrity": "sha1-GuOlDnxguz3vd06scHrLynO7w/8=" + }, + "tween-one": { + "version": "1.0.57", + "resolved": "https://registry.npmmirror.com/tween-one/download/tween-one-1.0.57.tgz?cache=0&sync_timestamp=1637219643902&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftween-one%2Fdownload%2Ftween-one-1.0.57.tgz", + "integrity": "sha512-TlK4RMISb3UCXq/wlk+yghWLQeybEi3Ktu8efGOzIy201urhAkdrXO2nyuIgaIQQa8v27Nkmh5DhBEFx211+Dw==", + "requires": { + "@babel/runtime": "^7.11.1", + "flubber": "^0.4.2", + "raf": "^3.4.1", + "style-utils": "^0.3.0", + "svg-path-properties": "^1.0.4", + "tween-functions": "^1.2.0" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/type-check/download/type-check-0.4.0.tgz", + "integrity": "sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=", + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npm.taobao.org/type-detect/download/type-detect-4.0.8.tgz", + "integrity": "sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw=" + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmmirror.com/type-fest/download/type-fest-0.21.3.tgz", + "integrity": "sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.nlark.com/type-is/download/type-is-1.6.18.tgz", + "integrity": "sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.nlark.com/typedarray/download/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.nlark.com/typedarray-to-buffer/download/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha1-qX7nqf9CaRufeD/xvFES/j/KkIA=", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.5.4", + "resolved": "https://registry.npmmirror.com/typescript/download/typescript-4.5.4.tgz", + "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==" + }, + "ua-parser-js": { + "version": "0.7.31", + "resolved": "https://registry.npmmirror.com/ua-parser-js/download/ua-parser-js-0.7.31.tgz", + "integrity": "sha1-ZJplaxkd/6tPIdXgU+J8oXy/9cY=" + }, + "uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmmirror.com/uglify-js/download/uglify-js-2.8.29.tgz", + "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "requires": { + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/camelcase/download/camelcase-1.2.1.tgz", + "integrity": "sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g==" + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-2.1.0.tgz?cache=0&sync_timestamp=1604880226973&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcliui%2Fdownload%2Fcliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "requires": { + "center-align": "^0.1.1", + "right-align": "^0.1.1", + "wordwrap": "0.0.2" + } + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmmirror.com/yargs/download/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "requires": { + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", + "window-size": "0.1.0" + } + } + } + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/uglify-to-browserify/download/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "optional": true + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/unbox-primitive/download/unbox-primitive-1.0.1.tgz", + "integrity": "sha1-CF4hViXsMWJXTciFmr7nilmxRHE=", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=" + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-2.0.0.tgz?cache=0&sync_timestamp=1631618607567&other_urls=https%3A%2F%2Fregistry.nlark.com%2Funicode-match-property-ecmascript%2Fdownload%2Funicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=", + "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.nlark.com/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-2.0.0.tgz?cache=0&sync_timestamp=1631618097559&other_urls=https%3A%2F%2Fregistry.nlark.com%2Funicode-match-property-value-ecmascript%2Fdownload%2Funicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha1-GgGqVyR8FMVouJd1pUk4eIGJpxQ=" + }, + "unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-2.0.0.tgz?cache=0&sync_timestamp=1631609471881&other_urls=https%3A%2F%2Fregistry.nlark.com%2Funicode-property-aliases-ecmascript%2Fdownload%2Funicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha1-CjbLmlhcT2q9Ua0d7dsoXBZSl8g=" + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/unique-string/download/unique-string-2.0.0.tgz", + "integrity": "sha1-OcZFH4GvsnSd4rIz4/fF6IQ72J0=", + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/universalify/download/universalify-2.0.0.tgz", + "integrity": "sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=" + }, + "unload": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/unload/download/unload-2.2.0.tgz", + "integrity": "sha1-zMiP3K00X6oGqSA57A+AtIiIDvc=", + "requires": { + "@babel/runtime": "^7.6.2", + "detect-node": "^2.0.4" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/unpipe/download/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/unquote/download/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "unstated-next": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/unstated-next/download/unstated-next-1.1.0.tgz", + "integrity": "sha1-e7SRGhL988yK0+sRoLMV5KhoXqg=" + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/upath/download/upath-1.2.0.tgz", + "integrity": "sha1-j2bbzVWog6za5ECK+LA1pQRMGJQ=" + }, + "update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/update-notifier/download/update-notifier-5.1.0.tgz", + "integrity": "sha1-SrDXx/NqIx3XMWz3cpMT8CFNmtk=", + "dev": true, + "requires": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.nlark.com/uri-js/download/uri-js-4.4.1.tgz", + "integrity": "sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=", + "requires": { + "punycode": "^2.1.0" + } + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/url-parse-lax/download/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "dev": true, + "requires": { + "prepend-http": "^2.0.0" + } + }, + "use-json-comparison": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/use-json-comparison/download/use-json-comparison-1.0.6.tgz", + "integrity": "sha1-oBK7wljOdF2x9WdF3GU/V1ImyyE=", + "requires": {} + }, + "use-media-antd-query": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/use-media-antd-query/download/use-media-antd-query-1.1.0.tgz", + "integrity": "sha1-8IOtfiksHAJhtrv6rA7cPgkg2F0=", + "requires": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.1.tgz", + "integrity": "sha1-a693dLgO6w91INi4HQeYKlmruu4=", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npm.taobao.org/utila/download/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + }, + "utility-types": { + "version": "3.10.0", + "resolved": "https://registry.nlark.com/utility-types/download/utility-types-3.10.0.tgz", + "integrity": "sha1-6kFI+adBAV8F7XT9YV4dIOa+2Cs=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "requires": { + "base64-arraybuffer": "^1.0.2" + } + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmmirror.com/uuid/download/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz", + "integrity": "sha1-LeGWGMZtwkfc+2+ZM4A12CRaLO4=" + }, + "v8-to-istanbul": { + "version": "8.1.0", + "resolved": "https://registry.npmmirror.com/v8-to-istanbul/download/v8-to-istanbul-8.1.0.tgz", + "integrity": "sha1-Cut2OJTxoKFnat+Ki3YSo4kCRGw=", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.7.3.tgz", + "integrity": "sha1-UwL4FpAxc1ImVECS5kmB91F1A4M=" + } + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/vary/download/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "viewport-mercator-project": { + "version": "6.2.3", + "resolved": "https://registry.nlark.com/viewport-mercator-project/download/viewport-mercator-project-6.2.3.tgz?cache=0&sync_timestamp=1630867671298&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fviewport-mercator-project%2Fdownload%2Fviewport-mercator-project-6.2.3.tgz", + "integrity": "sha1-QSIED1HvlVP6QaRrzGUCl3s5CcY=", + "requires": { + "@babel/runtime": "^7.0.0", + "gl-matrix": "^3.0.0" + } + }, + "vt-pbf": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/vt-pbf/download/vt-pbf-3.1.3.tgz?cache=0&sync_timestamp=1623057849875&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvt-pbf%2Fdownload%2Fvt-pbf-3.1.3.tgz", + "integrity": "sha1-aP0VB1ZGXi7a4cxcBI4GORbc+qw=", + "requires": { + "@mapbox/point-geometry": "0.1.0", + "@mapbox/vector-tile": "^1.3.1", + "pbf": "^3.2.1" + } + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz", + "integrity": "sha1-ConN9cwVgi35w2BUNnaWPgzDCM0=", + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/w3c-xmlserializer/download/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha1-PnEEoFt1FGzGD1ZDgLf2g6zxAgo=", + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/walker/download/walker-1.0.8.tgz?cache=0&sync_timestamp=1635238315480&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwalker%2Fdownload%2Fwalker-1.0.8.tgz", + "integrity": "sha1-vUmNtHev5XPcBBhfAR06uKjXZT8=", + "requires": { + "makeerror": "1.0.12" + } + }, + "warning": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/warning/download/warning-4.0.3.tgz", + "integrity": "sha1-Fungd+uKhtavfWSqHgX9hbRnjKM=", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "watchpack": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/watchpack/download/watchpack-2.3.1.tgz", + "integrity": "sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "integrity": "sha1-wdjRSTFtPqhShIiVy2oL/oh7h98=", + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "web-vitals": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/web-vitals/download/web-vitals-2.1.2.tgz", + "integrity": "sha1-OmyPrr+Ql6bM0X9fRclIXY1i2rE=" + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-6.1.0.tgz", + "integrity": "sha1-kRG01+qArNQPUnDWZmIa+ni2lRQ=" + }, + "webpack": { + "version": "5.65.0", + "resolved": "https://registry.npmmirror.com/webpack/download/webpack-5.65.0.tgz", + "integrity": "sha512-Q5or2o6EKs7+oKmJo7LaqZaMOlDWQse9Tm5l1WAfU/ujLGN5Pb0SqGeVkN/4bpPmEqEP5RnVhiqsOtWtUVwGRw==", + "requires": { + "@types/eslint-scope": "^3.7.0", + "@types/estree": "^0.0.50", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.8.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.4", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.2" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1637466831846&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz", + "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz?cache=0&sync_timestamp=1635237716974&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=" + } + } + }, + "webpack-bundle-analyzer": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/webpack-bundle-analyzer/download/webpack-bundle-analyzer-4.5.0.tgz", + "integrity": "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==", + "dev": true, + "requires": { + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "opener": "^1.5.2", + "sirv": "^1.0.7", + "ws": "^7.3.1" + }, + "dependencies": { + "acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-8.2.0.tgz?cache=0&sync_timestamp=1630916588767&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-8.2.0.tgz", + "integrity": "sha1-dBIQ8uJCZFRQiFOi9E0KuDt/acE=", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/commander/download/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "webpack-dev-middleware": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/webpack-dev-middleware/download/webpack-dev-middleware-5.3.0.tgz", + "integrity": "sha512-MouJz+rXAm9B1OTOYaJnn6rtD/lWZPy2ufQCH3BPs8Rloh/Du6Jze4p7AeLYHkVi0giJnYLaSGDC7S+GM9arhg==", + "requires": { + "colorette": "^2.0.10", + "memfs": "^3.2.2", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-5.1.0.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-4.0.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + } + } + }, + "webpack-dev-server": { + "version": "4.7.2", + "resolved": "https://registry.npmmirror.com/webpack-dev-server/download/webpack-dev-server-4.7.2.tgz", + "integrity": "sha512-s6yEOSfPpB6g1T2+C5ZOUt5cQOMhjI98IVmmvMNb5cdiqHoxSUfACISHqU/wZy+q4ar/A9jW0pbNj7sa50XRVA==", + "requires": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/serve-index": "^1.9.1", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.2.2", + "ansi-html-community": "^0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^3.5.2", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "default-gateway": "^6.0.3", + "del": "^6.0.0", + "express": "^4.17.1", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.0", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "portfinder": "^1.0.28", + "schema-utils": "^4.0.0", + "selfsigned": "^1.10.11", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "spdy": "^4.0.2", + "strip-ansi": "^7.0.0", + "webpack-dev-middleware": "^5.3.0", + "ws": "^8.1.0" + }, + "dependencies": { + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/ajv-keywords/download/ajv-keywords-5.1.0.tgz?cache=0&sync_timestamp=1637523772179&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv-keywords%2Fdownload%2Fajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-6.0.1.tgz", + "integrity": "sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=" + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/schema-utils/download/schema-utils-4.0.0.tgz?cache=0&sync_timestamp=1637075922747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fschema-utils%2Fdownload%2Fschema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + }, + "strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-7.0.1.tgz?cache=0&sync_timestamp=1632420562057&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-7.0.1.tgz", + "integrity": "sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I=", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "ws": { + "version": "8.4.0", + "resolved": "https://registry.npmmirror.com/ws/download/ws-8.4.0.tgz", + "integrity": "sha512-IHVsKe2pjajSUIl4KYMQOdlyliovpEPquKkqbwswulszzI7r0SfQrxnXdWAEqOlDCLrVSJzo+O1hAwdog2sKSQ==", + "requires": {} + } + } + }, + "webpack-manifest-plugin": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webpack-manifest-plugin/download/webpack-manifest-plugin-4.0.2.tgz?cache=0&sync_timestamp=1627559799242&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebpack-manifest-plugin%2Fdownload%2Fwebpack-manifest-plugin-4.0.2.tgz", + "integrity": "sha1-p+5GIZpsggpc2uD33bfLBIN0SPs=", + "requires": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + }, + "webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/webpack-sources/download/webpack-sources-2.3.1.tgz?cache=0&sync_timestamp=1636982683302&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwebpack-sources%2Fdownload%2Fwebpack-sources-2.3.1.tgz", + "integrity": "sha1-Vw3grxY5Sf4nIjPCzv4bVvdFEf0=", + "requires": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + } + } + } + }, + "webpack-sources": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/webpack-sources/download/webpack-sources-3.2.2.tgz?cache=0&sync_timestamp=1636982683302&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwebpack-sources%2Fdownload%2Fwebpack-sources-3.2.2.tgz", + "integrity": "sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw==" + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npm.taobao.org/websocket-driver/download/websocket-driver-0.7.4.tgz", + "integrity": "sha1-ia1Slbv2S0gKvLox5JU6ynBvV2A=", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npm.taobao.org/websocket-extensions/download/websocket-extensions-0.1.4.tgz", + "integrity": "sha1-f4RzvIOd/YdgituV1+sHUhFXikI=" + }, + "wgs84": { + "version": "0.0.0", + "resolved": "https://registry.npm.taobao.org/wgs84/download/wgs84-0.0.0.tgz", + "integrity": "sha1-NP3FVZF7blfPKigu0ENxDASc3HY=" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "integrity": "sha1-WrrPd3wyFmpR0IXWtPPn0nET3bA=", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.nlark.com/whatwg-fetch/download/whatwg-fetch-3.6.2.tgz", + "integrity": "sha1-3O0k838mJO0CgXJdUdDi4/5nf4w=" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz?cache=0&sync_timestamp=1631993408310&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwhatwg-mimetype%2Fdownload%2Fwhatwg-mimetype-2.3.0.tgz", + "integrity": "sha1-PUseAxLSB5h5+Cav8Y2+7KWWD78=" + }, + "whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmmirror.com/whatwg-url/download/whatwg-url-8.7.0.tgz", + "integrity": "sha1-ZWp45RD/jzk3vAvL6fXArDWUG3c=", + "requires": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/which/download/which-2.0.2.tgz", + "integrity": "sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha1-E3V7yJsgmwSf5dhkMOIc9AqJqOY=", + "requires": { + "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" + } + }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/widest-line/download/widest-line-3.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwidest-line%2Fdownload%2Fwidest-line-3.1.0.tgz", + "integrity": "sha1-gpIzO79my0X/DeFgOxNreuFJbso=", + "dev": true, + "requires": { + "string-width": "^4.0.0" + } + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/window-size/download/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=" + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz", + "integrity": "sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=" + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npm.taobao.org/wordwrap/download/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" + }, + "workbox-background-sync": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-background-sync/download/workbox-background-sync-6.4.2.tgz", + "integrity": "sha512-P7c8uG5X2k+DMICH9xeSA9eUlCOjHHYoB42Rq+RtUpuwBxUOflAXR1zdsMWj81LopE4gjKXlTw7BFd1BDAHo7g==", + "requires": { + "idb": "^6.1.4", + "workbox-core": "6.4.2" + } + }, + "workbox-broadcast-update": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-broadcast-update/download/workbox-broadcast-update-6.4.2.tgz", + "integrity": "sha512-qnBwQyE0+PWFFc/n4ISXINE49m44gbEreJUYt2ldGH3+CNrLmJ1egJOOyUqqu9R4Eb7QrXcmB34ClXG7S37LbA==", + "requires": { + "workbox-core": "6.4.2" + } + }, + "workbox-build": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-build/download/workbox-build-6.4.2.tgz", + "integrity": "sha512-WMdYLhDIsuzViOTXDH+tJ1GijkFp5khSYolnxR/11zmfhNDtuo7jof72xPGFy+KRpsz6tug39RhivCj77qqO0w==", + "requires": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "source-map-url": "^0.4.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.4.2", + "workbox-broadcast-update": "6.4.2", + "workbox-cacheable-response": "6.4.2", + "workbox-core": "6.4.2", + "workbox-expiration": "6.4.2", + "workbox-google-analytics": "6.4.2", + "workbox-navigation-preload": "6.4.2", + "workbox-precaching": "6.4.2", + "workbox-range-requests": "6.4.2", + "workbox-recipes": "6.4.2", + "workbox-routing": "6.4.2", + "workbox-strategies": "6.4.2", + "workbox-streams": "6.4.2", + "workbox-sw": "6.4.2", + "workbox-window": "6.4.2" + }, + "dependencies": { + "@apideck/better-ajv-errors": { + "version": "0.3.2", + "resolved": "https://registry.npmmirror.com/@apideck/better-ajv-errors/download/@apideck/better-ajv-errors-0.3.2.tgz", + "integrity": "sha512-JdEazx7qiVqTBzzBl5rolRwl5cmhihjfIcpqRzIZjtT6b18liVmDn/VlWpqW4C/qP2hrFFMLRV1wlex8ZVBPTg==", + "requires": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + } + }, + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.nlark.com/fs-extra/download/fs-extra-9.1.0.tgz", + "integrity": "sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0=", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=" + }, + "source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.8.0-beta.0.tgz", + "integrity": "sha1-1MG7QsP37pJfAFknuhBwng0dHxE=", + "requires": { + "whatwg-url": "^7.0.0" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/tr46/download/tr46-1.0.1.tgz?cache=0&sync_timestamp=1633302360065&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftr46%2Fdownload%2Ftr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz", + "integrity": "sha1-qFWYCx8LazWbodXZ+zmulB+qY60=" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "integrity": "sha1-wsSS8eymEpiO/T0iZr4bn8YXDQY=", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "workbox-cacheable-response": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-cacheable-response/download/workbox-cacheable-response-6.4.2.tgz", + "integrity": "sha512-9FE1W/cKffk1AJzImxgEN0ceWpyz1tqNjZVtA3/LAvYL3AC5SbIkhc7ZCO82WmO9IjTfu8Vut2X/C7ViMSF7TA==", + "requires": { + "workbox-core": "6.4.2" + } + }, + "workbox-core": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-core/download/workbox-core-6.4.2.tgz", + "integrity": "sha512-1U6cdEYPcajRXiboSlpJx6U7TvhIKbxRRerfepAJu2hniKwJ3DHILjpU/zx3yvzSBCWcNJDoFalf7Vgd7ey/rw==" + }, + "workbox-expiration": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-expiration/download/workbox-expiration-6.4.2.tgz", + "integrity": "sha512-0hbpBj0tDnW+DZOUmwZqntB/8xrXOgO34i7s00Si/VlFJvvpRKg1leXdHHU8ykoSBd6+F2KDcMP3swoCi5guLw==", + "requires": { + "idb": "^6.1.4", + "workbox-core": "6.4.2" + } + }, + "workbox-google-analytics": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-google-analytics/download/workbox-google-analytics-6.4.2.tgz", + "integrity": "sha512-u+gxs3jXovPb1oul4CTBOb+T9fS1oZG+ZE6AzS7l40vnyfJV79DaLBvlpEZfXGv3CjMdV1sT/ltdOrKzo7HcGw==", + "requires": { + "workbox-background-sync": "6.4.2", + "workbox-core": "6.4.2", + "workbox-routing": "6.4.2", + "workbox-strategies": "6.4.2" + } + }, + "workbox-navigation-preload": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-navigation-preload/download/workbox-navigation-preload-6.4.2.tgz", + "integrity": "sha512-viyejlCtlKsbJCBHwhSBbWc57MwPXvUrc8P7d+87AxBGPU+JuWkT6nvBANgVgFz6FUhCvRC8aYt+B1helo166g==", + "requires": { + "workbox-core": "6.4.2" + } + }, + "workbox-precaching": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-precaching/download/workbox-precaching-6.4.2.tgz", + "integrity": "sha512-CZ6uwFN/2wb4noHVlALL7UqPFbLfez/9S2GAzGAb0Sk876ul9ukRKPJJ6gtsxfE2HSTwqwuyNVa6xWyeyJ1XSA==", + "requires": { + "workbox-core": "6.4.2", + "workbox-routing": "6.4.2", + "workbox-strategies": "6.4.2" + } + }, + "workbox-range-requests": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-range-requests/download/workbox-range-requests-6.4.2.tgz", + "integrity": "sha512-SowF3z69hr3Po/w7+xarWfzxJX/3Fo0uSG72Zg4g5FWWnHpq2zPvgbWerBZIa81zpJVUdYpMa3akJJsv+LaO1Q==", + "requires": { + "workbox-core": "6.4.2" + } + }, + "workbox-recipes": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-recipes/download/workbox-recipes-6.4.2.tgz", + "integrity": "sha512-/oVxlZFpAjFVbY+3PoGEXe8qyvtmqMrTdWhbOfbwokNFtUZ/JCtanDKgwDv9x3AebqGAoJRvQNSru0F4nG+gWA==", + "requires": { + "workbox-cacheable-response": "6.4.2", + "workbox-core": "6.4.2", + "workbox-expiration": "6.4.2", + "workbox-precaching": "6.4.2", + "workbox-routing": "6.4.2", + "workbox-strategies": "6.4.2" + } + }, + "workbox-routing": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-routing/download/workbox-routing-6.4.2.tgz", + "integrity": "sha512-0ss/n9PAcHjTy4Ad7l2puuod4WtsnRYu9BrmHcu6Dk4PgWeJo1t5VnGufPxNtcuyPGQ3OdnMdlmhMJ57sSrrSw==", + "requires": { + "workbox-core": "6.4.2" + } + }, + "workbox-strategies": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-strategies/download/workbox-strategies-6.4.2.tgz", + "integrity": "sha512-YXh9E9dZGEO1EiPC3jPe2CbztO5WT8Ruj8wiYZM56XqEJp5YlGTtqRjghV+JovWOqkWdR+amJpV31KPWQUvn1Q==", + "requires": { + "workbox-core": "6.4.2" + } + }, + "workbox-streams": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-streams/download/workbox-streams-6.4.2.tgz", + "integrity": "sha512-ROEGlZHGVEgpa5bOZefiJEVsi5PsFjJG9Xd+wnDbApsCO9xq9rYFopF+IRq9tChyYzhBnyk2hJxbQVWphz3sog==", + "requires": { + "workbox-core": "6.4.2", + "workbox-routing": "6.4.2" + } + }, + "workbox-sw": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-sw/download/workbox-sw-6.4.2.tgz", + "integrity": "sha512-A2qdu9TLktfIM5NE/8+yYwfWu+JgDaCkbo5ikrky2c7r9v2X6DcJ+zSLphNHHLwM/0eVk5XVf1mC5HGhYpMhhg==" + }, + "workbox-webpack-plugin": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-webpack-plugin/download/workbox-webpack-plugin-6.4.2.tgz", + "integrity": "sha512-CiEwM6kaJRkx1cP5xHksn13abTzUqMHiMMlp5Eh/v4wRcedgDTyv6Uo8+Hg9MurRbHDosO5suaPyF9uwVr4/CQ==", + "requires": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "source-map-url": "^0.4.0", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.4.2" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmmirror.com/webpack-sources/download/webpack-sources-1.4.3.tgz?cache=0&sync_timestamp=1636982683302&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fwebpack-sources%2Fdownload%2Fwebpack-sources-1.4.3.tgz", + "integrity": "sha1-7t2OwLko+/HL/plOItLYkPMwqTM=", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + } + } + }, + "workbox-window": { + "version": "6.4.2", + "resolved": "https://registry.npmmirror.com/workbox-window/download/workbox-window-6.4.2.tgz", + "integrity": "sha512-KVyRKmrJg7iB+uym/B/CnEUEFG9CvnTU1Bq5xpXHbtgD9l+ShDekSl1wYpqw/O0JfeeQVOFb8CiNfvnwWwqnWQ==", + "requires": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.4.2" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/wrap-ansi/download/wrap-ansi-7.0.0.tgz", + "integrity": "sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-3.0.3.tgz", + "integrity": "sha1-Vr1cWlxwSBzRnFcb05q5ZaXeVug=", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.5.6", + "resolved": "https://registry.npmmirror.com/ws/download/ws-7.5.6.tgz", + "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", + "requires": {} + }, + "xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/xdg-basedir/download/xdg-basedir-4.0.0.tgz", + "integrity": "sha1-S8jZmEQDaWIl74OhVzy7y0552xM=", + "dev": true + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz", + "integrity": "sha1-auc+Bt5NjG5H+fsYH3jWSK1FfGo=" + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/xmlchars/download/xmlchars-2.2.0.tgz", + "integrity": "sha1-Bg/hvLf5x2/ioX24apvDq4lCEMs=" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/xtend/download/xtend-4.0.2.tgz", + "integrity": "sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=" + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-5.0.8.tgz", + "integrity": "sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/yallist/download/yallist-4.0.0.tgz", + "integrity": "sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmmirror.com/yaml/download/yaml-1.10.2.tgz", + "integrity": "sha1-IwHF/78StGfejaIzOkWeKeeSDks=" + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmmirror.com/yargs/download/yargs-16.2.0.tgz", + "integrity": "sha1-HIK/D2tqZur85+8w43b0mhJHf2Y=", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmmirror.com/yargs-parser/download/yargs-parser-20.2.9.tgz?cache=0&sync_timestamp=1637030983058&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fyargs-parser%2Fdownload%2Fyargs-parser-20.2.9.tgz", + "integrity": "sha1-LrfcOwKJcY/ClfNidThFxBoMlO4=" + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/yocto-queue/download/yocto-queue-0.1.0.tgz", + "integrity": "sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=" + } + } +} diff --git a/InManageBoot-ui/package.json b/InManageBoot-ui/package.json new file mode 100644 index 0000000000000000000000000000000000000000..9eaef197865295ec2718c348196fa52897606084 --- /dev/null +++ b/InManageBoot-ui/package.json @@ -0,0 +1,224 @@ +{ + "name": "ispimant", + "version": "0.1.0", + "private": true, + "dependencies": { + "@ant-design/charts": "1.3.4", + "@ant-design/icons": "4.7.0", + "@ant-design/pro-layout": "6.32.3", + "@emotion/react": "11.7.1", + "@emotion/styled": "11.6.0", + "@pmmmwh/react-refresh-webpack-plugin": "0.5.3", + "@reduxjs/toolkit": "1.7.1", + "@svgr/webpack": "5.5.0", + "@testing-library/jest-dom": "5.16.1", + "@testing-library/react": "12.1.2", + "@testing-library/user-event": "13.5.0", + "@types/jest": "27.4.0", + "@types/node": "16.11.17", + "@types/react": "17.0.38", + "@types/react-dom": "17.0.11", + "@tweenjs/tween.js": "18.6.4", + "antd": "4.15.0", + "@ahooksjs/use-url-state": "3.1.9", + "ahooks": "3.1.9", + "async-validator": "4.0.7", + "axios": "0.24.0", + "babel-jest": "27.4.2", + "babel-plugin-import": "1.13.3", + "babel-plugin-named-asset-import": "0.3.8", + "babel-plugin-transform-globalthis": "1.0.0", + "babel-preset-react-app": "10.0.1", + "bpmn-js": "^13.2.2", + "bfj": "7.0.2", + "browserslist": "4.18.1", + "camelcase": "6.2.1", + "case-sensitive-paths-webpack-plugin": "2.4.0", + "codemirror": "5.65.1", + "buffer": "6.0.3", + "crypto-browserify": "3.12.0", + "stream-browserify": "3.0.0", + "css-loader": "6.5.1", + "css-minimizer-webpack-plugin": "3.2.0", + "dotenv": "10.0.0", + "dotenv-expand": "5.1.0", + "echarts": "^5.3.0", + "echarts-liquidfill": "^3.1.0", + "eslint": "8.3.0", + "eslint-config-react-app": "7.0.0", + "eslint-webpack-plugin": "3.1.1", + "file-loader": "6.2.0", + "fs-extra": "10.0.0", + "heatmap.js": "2.0.5", + "html-webpack-plugin": "5.5.0", + "html2canvas": "1.4.1", + "i18next": "21.6.6", + "identity-obj-proxy": "3.0.0", + "js-base64": "2.5.2", + "jsencrypt": "3.2.1", + "jest": "27.4.3", + "jest-resolve": "27.4.2", + "jest-watch-typeahead": "1.0.0", + "javascript-blowfish": "1.0.4", + "less": "4.1.2", + "less-loader": "10.2.0", + "lodash": "4.17.21", + "mini-css-extract-plugin": "2.4.5", + "postcss": "8.4.4", + "postcss-flexbugs-fixes": "5.0.2", + "postcss-loader": "6.2.1", + "postcss-normalize": "10.0.1", + "postcss-preset-env": "7.0.1", + "prompts": "2.4.2", + "rc-tween-one": "3.0.3", + "rc-queue-anim": "2.0.0", + "react": "17.0.2", + "react-app-polyfill": "3.0.0", + "react-copy-to-clipboard": "5.0.4", + "react-dev-utils": "12.0.0", + "react-dom": "17.0.2", + "react-grid-layout": "1.3.4", + "react-query": "3.34.8", + "react-redux": "7.2.6", + "react-refresh": "0.11.0", + "react-router": "6.2.1", + "react-router-dom": "6.2.1", + "react-window": "1.8.6", + "react-beautiful-dnd": "^13.1.1", + "resolve": "1.20.0", + "react-scroll": "^1.8.9", + "resolve-url-loader": "4.0.0", + "rc-resize-observer": "1.2.0", + "sass-loader": "12.3.0", + "semver": "7.3.5", + "source-map-loader": "3.0.0", + "spark-md5": "3.0.2", + "style-loader": "3.3.1", + "tailwindcss": "3.0.2", + "terser-webpack-plugin": "5.2.5", + "three": "0.137.5", + "typescript": "4.5.4", + "web-vitals": "2.1.2", + "webpack": "5.64.4", + "webpack-dev-server": "4.6.0", + "webpack-manifest-plugin": "4.0.2", + "workbox-webpack-plugin": "6.4.1" + }, + "scripts": { + "start": "node scripts/start.js", + "start-icbc": "node scripts/start-icbc.js", + "start-overseas": "node scripts/start-overseas.js", + "build": "node scripts/build.js", + "build-icbc": "node scripts/build-icbc.js", + "build-overseas": "node scripts/build-overseas.js", + "demo": "node scripts/demo.js", + "mock": "json-server --watch --port 3001 ./mock/db.json", + "dev-server": "npm --prefix ./nodeserver/ run dev", + "test": "node scripts/test.js" + }, + "eslintConfig": { + "plugins": [ + "react" + ], + "extends": [ + "react-app", + "react-app/jest" + ], + "rules": { + "jsx-a11y/anchor-is-valid": "off" + } + }, + "browserslist": { + "production": [ + ">0.1%", + "not dead", + "not op_mini all", + "ie 11" + ], + "development": [ + ">0.1%", + "not dead", + "not op_mini all", + "ie 11" + ] + }, + "jest": { + "roots": [ + "/src" + ], + "collectCoverageFrom": [ + "src/**/*.{js,jsx,ts,tsx}", + "!src/**/*.d.ts" + ], + "setupFiles": [ + "react-app-polyfill/jsdom" + ], + "setupFilesAfterEnv": [ + "/src/setupTests.ts" + ], + "testMatch": [ + "/src/**/__tests__/**/*.{js,jsx,ts,tsx}", + "/src/**/*.{spec,test}.{js,jsx,ts,tsx}" + ], + "testEnvironment": "jsdom", + "transform": { + ".+\\.(js|jsx|mjs|cjs|ts|tsx)$": "/config/jest/babelTransform.js", + ".+\\.css$": "/config/jest/cssTransform.js", + "(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|json)$)": "/config/jest/fileTransform.js" + }, + "transformIgnorePatterns": [ + "[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|cjs|ts|tsx)$", + ".+\\.module\\.(css|sass|scss)$" + ], + "modulePaths": [], + "moduleNameMapper": { + "react-native$": "react-native-web", + ".+\\.module\\.(css|sass|scss)$": "identity-obj-proxy" + }, + "moduleFileExtensions": [ + "web.js", + "js", + "web.ts", + "ts", + "web.tsx", + "tsx", + "json", + "web.jsx", + "jsx", + "node" + ], + "watchPlugins": [ + "jest-watch-typeahead/filename", + "jest-watch-typeahead/testname" + ], + "resetMocks": true + }, + "babel": { + "presets": [], + "plugins": [ + "@babel/plugin-transform-runtime", + [ + "@babel/plugin-proposal-decorators", + { + "legacy": true + } + ], + "babel-plugin-transform-globalthis" + ] + }, + "devDependencies": { + "@babel/core": "7.16.7", + "@babel/plugin-proposal-class-properties": "7.16.7", + "@babel/plugin-transform-runtime": "7.16.8", + "@babel/preset-env": "7.16.8", + "@babel/runtime": "7.16.7", + "@types/lodash": "4.14.178", + "@types/react-router": "5.1.18", + "antd-dayjs-webpack-plugin": "1.0.6", + "babel-eslint": "10.1.0", + "babel-loader": "8.2.3", + "json-server": "0.17.0", + "simple-progress-webpack-plugin": "2.0.0", + "webpack-bundle-analyzer": "4.5.0" + } +} diff --git a/InManageBoot-ui/product-img/inspur/login-logo-en.png b/InManageBoot-ui/product-img/inspur/login-logo-en.png new file mode 100644 index 0000000000000000000000000000000000000000..6c4a1451481a3ed8400e374c560be5bc33cfddee Binary files /dev/null and b/InManageBoot-ui/product-img/inspur/login-logo-en.png differ diff --git a/InManageBoot-ui/product-img/inspur/login-logo.png b/InManageBoot-ui/product-img/inspur/login-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..e01c299f075597e6e37774f2a7a8c82f5a6c9db8 Binary files /dev/null and b/InManageBoot-ui/product-img/inspur/login-logo.png differ diff --git a/InManageBoot-ui/product-img/inspur/login-title-en.png b/InManageBoot-ui/product-img/inspur/login-title-en.png new file mode 100644 index 0000000000000000000000000000000000000000..177fcee6b109e8cf0a7bef6c3bd02baa5e78c6ca Binary files /dev/null and b/InManageBoot-ui/product-img/inspur/login-title-en.png differ diff --git a/InManageBoot-ui/product-img/inspur/logo.png b/InManageBoot-ui/product-img/inspur/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..eb61ad58f4207128734977a16b1c2ceb579efc74 Binary files /dev/null and b/InManageBoot-ui/product-img/inspur/logo.png differ diff --git a/InManageBoot-ui/product-img/inspur/product.js b/InManageBoot-ui/product-img/inspur/product.js new file mode 100644 index 0000000000000000000000000000000000000000..f8418ea1d66ecb9264abb8676d08d5024e96206f --- /dev/null +++ b/InManageBoot-ui/product-img/inspur/product.js @@ -0,0 +1,19 @@ +var pimParams = { + zh: { + systemName: "基础设施管理平台", // 平台全称 + simpleName: "InManage", // 平台缩写 + aboutUsTitle: "", + bigScreenTtile: "基础设施管理平台" // 大屏title + }, + en: { + systemName: "InManage", + simpleName: "InManage", + aboutUsTitle: "", + bigScreenTtile: "InManage" + }, + flag: { + aboutUsShowInspur: true, // 关于我们是否展示 Inspur + showHelpDocEntry: false, // 是否展示 帮助文档 + } +}; +export default pimParams; \ No newline at end of file diff --git a/InManageBoot-ui/public/bak-favicon.ico b/InManageBoot-ui/public/bak-favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..dbab649a328b92acc14dd5f4e9c0a2b97d51e954 Binary files /dev/null and b/InManageBoot-ui/public/bak-favicon.ico differ diff --git a/InManageBoot-ui/public/favicon.ico b/InManageBoot-ui/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..37de6f7c80cbf7a83174043dbb0f5233ce3fc742 Binary files /dev/null and b/InManageBoot-ui/public/favicon.ico differ diff --git a/InManageBoot-ui/public/floor.jpg b/InManageBoot-ui/public/floor.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84e97fa85a980fbb972b4c16a9cabc901328c50b Binary files /dev/null and b/InManageBoot-ui/public/floor.jpg differ diff --git a/InManageBoot-ui/public/font/iconfont.css b/InManageBoot-ui/public/font/iconfont.css new file mode 100644 index 0000000000000000000000000000000000000000..e0e1d1513d1fdeda0f4dfd4ba72564709f8a18d2 --- /dev/null +++ b/InManageBoot-ui/public/font/iconfont.css @@ -0,0 +1,5183 @@ +@font-face { + font-family: "iconfont"; /* Project id 1996284 */ + src: url('iconfont.woff2?t=1641797358759') format('woff2'), + url('iconfont.woff?t=1641797358759') format('woff'), + url('iconfont.ttf?t=1641797358759') format('truetype'); +} + +.iconfont { + font-family: "iconfont" !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.el-icon-inspur-wall:before { + content: "\e626"; +} + +.el-icon-inspur-organization-fill:before { + content: "\e627"; +} + +.el-icon-inspur-machine-room:before { + content: "\e628"; +} + +.el-icon-inspur-load-balancing:before { + content: "\e629"; +} + +.el-icon-inspur-pause-mini-line:before { + content: "\ea4c"; +} + +.el-icon-inspur-play-mini-fill:before { + content: "\ea4d"; +} + +.el-icon-inspur-constitute-fill:before { + content: "\ea42"; +} + +.el-icon-inspur-a-doubleright-fill:before { + content: "\ea43"; +} + +.el-icon-inspur-a-doublerightline-line:before { + content: "\ea44"; +} + +.el-icon-inspur-a-doubleleftline-line:before { + content: "\ea45"; +} + +.el-icon-inspur-a-doubleleft-fill:before { + content: "\ea46"; +} + +.el-icon-inspur-left-line:before { + content: "\ea47"; +} + +.el-icon-inspur-left-fill:before { + content: "\ea48"; +} + +.el-icon-inspur-right-line:before { + content: "\ea49"; +} + +.el-icon-inspur-right-fill:before { + content: "\ea4a"; +} + +.el-icon-inspur-security-setting:before { + content: "\e623"; +} + +.el-icon-inspur-raid:before { + content: "\e624"; +} + +.el-icon-inspur-alarm-setting:before { + content: "\e625"; +} + +.el-icon-inspur-node-tree:before { + content: "\ea3e"; +} + +.el-icon-inspur-mind-map:before { + content: "\ea3f"; +} + +.el-icon-inspur-organization-chart:before { + content: "\ea40"; +} + +.el-icon-inspur-send-to-back:before { + content: "\ea41"; +} + +.el-icon-inspur-tree:before { + content: "\e6ac"; +} + +.el-icon-inspur-a-4G:before { + content: "\e61e"; +} + +.el-icon-inspur-a-5g:before { + content: "\e61f"; +} + +.el-icon-inspur-a-2G:before { + content: "\e620"; +} + +.el-icon-inspur-a-3G:before { + content: "\e622"; +} + +.el-icon-inspur-signal:before { + content: "\e621"; +} + +.el-icon-inspur-file-user-fill:before { + content: "\ea3c"; +} + +.el-icon-inspur-file-user-line:before { + content: "\ea3d"; +} + +.el-icon-inspur-settings-3-line:before { + content: "\ea3a"; +} + +.el-icon-inspur-settings-5-fill:before { + content: "\ea3b"; +} + +.el-icon-inspur-draft-fill:before { + content: "\ea37"; +} + +.el-icon-inspur-draft-line:before { + content: "\ea38"; +} + +.el-icon-inspur-error-warning-fill:before { + content: "\ea39"; +} + +.el-icon-inspur-battery-charge-fill:before { + content: "\e9d3"; +} + +.el-icon-inspur-battery-charge-line:before { + content: "\e9d4"; +} + +.el-icon-inspur-fingerprint-2-fill:before { + content: "\e9d5"; +} + +.el-icon-inspur-fingerprint-line:before { + content: "\e9d6"; +} + +.el-icon-inspur-file-paper-2-fill:before { + content: "\e9d7"; +} + +.el-icon-inspur-file-paper-2-line:before { + content: "\e9d8"; +} + +.el-icon-inspur-file-paper-line:before { + content: "\e9d9"; +} + +.el-icon-inspur-file-paper-fill:before { + content: "\e9da"; +} + +.el-icon-inspur-indent-increase:before { + content: "\e9db"; +} + +.el-icon-inspur-indent-decrease:before { + content: "\e9dc"; +} + +.el-icon-inspur-ticket-2-fill:before { + content: "\e9dd"; +} + +.el-icon-inspur-ticket-2-line:before { + content: "\e9de"; +} + +.el-icon-inspur-vip-fill:before { + content: "\e9df"; +} + +.el-icon-inspur-vip-line:before { + content: "\e9e0"; +} + +.el-icon-inspur-footprint-fill:before { + content: "\e9e1"; +} + +.el-icon-inspur-footprint-line:before { + content: "\e9e2"; +} + +.el-icon-inspur-space-ship-fill:before { + content: "\e9e3"; +} + +.el-icon-inspur-space-ship-line:before { + content: "\e9e4"; +} + +.el-icon-inspur-hd-fill:before { + content: "\e9e5"; +} + +.el-icon-inspur-hd-line:before { + content: "\e9e6"; +} + +.el-icon-inspur-rewind-fill:before { + content: "\e9e7"; +} + +.el-icon-inspur-rewind-line:before { + content: "\e9e8"; +} + +.el-icon-inspur-rewind-mini-fill:before { + content: "\e9e9"; +} + +.el-icon-inspur-skip-back-mini-fill:before { + content: "\e9ea"; +} + +.el-icon-inspur-skip-back-fill:before { + content: "\e9eb"; +} + +.el-icon-inspur-skip-back-mini-line:before { + content: "\e9ec"; +} + +.el-icon-inspur-skip-forward-fill:before { + content: "\e9ed"; +} + +.el-icon-inspur-skip-forward-line:before { + content: "\e9ee"; +} + +.el-icon-inspur-sound-module-fill:before { + content: "\e9ef"; +} + +.el-icon-inspur-skip-forward-mini-fill:before { + content: "\e9f0"; +} + +.el-icon-inspur-skip-back-line:before { + content: "\e9f1"; +} + +.el-icon-inspur-skip-forward-mini-line:before { + content: "\e9f2"; +} + +.el-icon-inspur-sound-module-line:before { + content: "\e9f3"; +} + +.el-icon-inspur-speed-fill:before { + content: "\e9f4"; +} + +.el-icon-inspur-speed-mini-fill:before { + content: "\e9f5"; +} + +.el-icon-inspur-speed-mini-line:before { + content: "\e9f6"; +} + +.el-icon-inspur-speed-line:before { + content: "\e9f7"; +} + +.el-icon-inspur-stop-circle-fill:before { + content: "\e9f8"; +} + +.el-icon-inspur-stop-circle-line:before { + content: "\e9f9"; +} + +.el-icon-inspur-stop-fill:before { + content: "\e9fa"; +} + +.el-icon-inspur-stop-line:before { + content: "\e9fb"; +} + +.el-icon-inspur-webcam-fill:before { + content: "\e9fc"; +} + +.el-icon-inspur-webcam-line:before { + content: "\e9fd"; +} + +.el-icon-inspur-bell-fill:before { + content: "\e9fe"; +} + +.el-icon-inspur-bell-line:before { + content: "\e9ff"; +} + +.el-icon-inspur-key-fill:before { + content: "\ea00"; +} + +.el-icon-inspur-lightbulb-fill:before { + content: "\ea01"; +} + +.el-icon-inspur-lightbulb-flash-line:before { + content: "\ea02"; +} + +.el-icon-inspur-key-line:before { + content: "\ea03"; +} + +.el-icon-inspur-lightbulb-line:before { + content: "\ea04"; +} + +.el-icon-inspur-lightbulb-flash-fill:before { + content: "\ea05"; +} + +.el-icon-inspur-scales-3-line:before { + content: "\ea06"; +} + +.el-icon-inspur-scales-3-fill:before { + content: "\ea07"; +} + +.el-icon-inspur-alert-line:before { + content: "\ea08"; +} + +.el-icon-inspur-alert-fill:before { + content: "\ea09"; +} + +.el-icon-inspur-timer-flash-fill:before { + content: "\ea0a"; +} + +.el-icon-inspur-timer-fill:before { + content: "\ea0b"; +} + +.el-icon-inspur-timer-flash-line:before { + content: "\ea0c"; +} + +.el-icon-inspur-timer-line:before { + content: "\ea0d"; +} + +.el-icon-inspur-account-box-fill:before { + content: "\ea0e"; +} + +.el-icon-inspur-account-box-line:before { + content: "\ea0f"; +} + +.el-icon-inspur-account-pin-box-fill:before { + content: "\ea10"; +} + +.el-icon-inspur-admin-fill:before { + content: "\ea11"; +} + +.el-icon-inspur-admin-line:before { + content: "\ea12"; +} + +.el-icon-inspur-account-pin-circle-line:before { + content: "\ea13"; +} + +.el-icon-inspur-account-pin-circle-fill:before { + content: "\ea14"; +} + +.el-icon-inspur-account-pin-box-line:before { + content: "\ea15"; +} + +.el-icon-inspur-user-5-line:before { + content: "\ea16"; +} + +.el-icon-inspur-user-5-fill:before { + content: "\ea17"; +} + +.el-icon-inspur-user-6-fill:before { + content: "\ea18"; +} + +.el-icon-inspur-user-fill:before { + content: "\ea19"; +} + +.el-icon-inspur-user-add-line:before { + content: "\ea1a"; +} + +.el-icon-inspur-user-follow-fill:before { + content: "\ea1b"; +} + +.el-icon-inspur-user-follow-line:before { + content: "\ea1c"; +} + +.el-icon-inspur-user-heart-line:before { + content: "\ea1d"; +} + +.el-icon-inspur-user-heart-fill:before { + content: "\ea1e"; +} + +.el-icon-inspur-user-6-line:before { + content: "\ea1f"; +} + +.el-icon-inspur-user-line:before { + content: "\ea20"; +} + +.el-icon-inspur-user-location-fill:before { + content: "\ea21"; +} + +.el-icon-inspur-user-location-line:before { + content: "\ea22"; +} + +.el-icon-inspur-user-received-2-line:before { + content: "\ea23"; +} + +.el-icon-inspur-user-received-2-fill:before { + content: "\ea24"; +} + +.el-icon-inspur-user-received-line:before { + content: "\ea25"; +} + +.el-icon-inspur-user-received-fill:before { + content: "\ea26"; +} + +.el-icon-inspur-user-search-fill:before { + content: "\ea27"; +} + +.el-icon-inspur-user-search-line:before { + content: "\ea28"; +} + +.el-icon-inspur-user-shared-2-fill:before { + content: "\ea29"; +} + +.el-icon-inspur-user-shared-2-line:before { + content: "\ea2a"; +} + +.el-icon-inspur-user-settings-line:before { + content: "\ea2b"; +} + +.el-icon-inspur-user-shared-fill:before { + content: "\ea2c"; +} + +.el-icon-inspur-user-settings-fill:before { + content: "\ea2d"; +} + +.el-icon-inspur-user-shared-line:before { + content: "\ea2e"; +} + +.el-icon-inspur-user-smile-fill:before { + content: "\ea2f"; +} + +.el-icon-inspur-user-smile-line:before { + content: "\ea30"; +} + +.el-icon-inspur-user-star-fill:before { + content: "\ea31"; +} + +.el-icon-inspur-user-star-line:before { + content: "\ea32"; +} + +.el-icon-inspur-user-unfollow-fill:before { + content: "\ea33"; +} + +.el-icon-inspur-user-unfollow-line:before { + content: "\ea34"; +} + +.el-icon-inspur-user-voice-fill:before { + content: "\ea35"; +} + +.el-icon-inspur-user-voice-line:before { + content: "\ea36"; +} + +.el-icon-inspur-assembly:before { + content: "\e602"; +} + +.el-icon-inspur-change1:before { + content: "\e603"; +} + +.el-icon-inspur-bios-set:before { + content: "\e604"; +} + +.el-icon-inspur-bmc-set:before { + content: "\e605"; +} + +.el-icon-inspur-increase:before { + content: "\e606"; +} + +.el-icon-inspur-move:before { + content: "\e608"; +} + +.el-icon-inspur-light:before { + content: "\e609"; +} + +.el-icon-inspur-pull:before { + content: "\e60e"; +} + +.el-icon-inspur-remind:before { + content: "\e60f"; +} + +.el-icon-inspur-system-installation:before { + content: "\e611"; +} + +.el-icon-inspur-roost:before { + content: "\e612"; +} + +.el-icon-inspur-wind-speed:before { + content: "\e616"; +} + +.el-icon-inspur-search-add:before { + content: "\f07b"; +} + +.el-icon-inspur-search-min:before { + content: "\f07c"; +} + +.el-icon-inspur-home-smile-2-line:before { + content: "\e6bd"; +} + +.el-icon-inspur-home-smile-2-fill:before { + content: "\e6ca"; +} + +.el-icon-inspur-home-wifi-line:before { + content: "\e6cb"; +} + +.el-icon-inspur-home-wifi-fill:before { + content: "\e6de"; +} + +.el-icon-inspur-list-check:before { + content: "\e9d2"; +} + +.el-icon-inspur-hotel-line:before { + content: "\e6bb"; +} + +.el-icon-inspur-hotel-fill:before { + content: "\e6bc"; +} + +.el-icon-inspur-notification-2-fill:before { + content: "\e9c2"; +} + +.el-icon-inspur-notification-2-line:before { + content: "\e9c3"; +} + +.el-icon-inspur-notification-3-line:before { + content: "\e9c4"; +} + +.el-icon-inspur-notification-4-fill:before { + content: "\e9c5"; +} + +.el-icon-inspur-notification-4-line:before { + content: "\e9c6"; +} + +.el-icon-inspur-notification-off-line:before { + content: "\e9c7"; +} + +.el-icon-inspur-notification-off-fill:before { + content: "\e9c8"; +} + +.el-icon-inspur-notification-3-fill:before { + content: "\e9c9"; +} + +.el-icon-inspur-notification-fill:before { + content: "\e9ca"; +} + +.el-icon-inspur-notification-line:before { + content: "\e9cb"; +} + +.el-icon-inspur-search-2-fill:before { + content: "\e9cc"; +} + +.el-icon-inspur-search-eye-fill:before { + content: "\e9cd"; +} + +.el-icon-inspur-search-eye-line:before { + content: "\e9ce"; +} + +.el-icon-inspur-search-fill:before { + content: "\e9cf"; +} + +.el-icon-inspur-search-2-line:before { + content: "\e9d0"; +} + +.el-icon-inspur-search-line:before { + content: "\e9d1"; +} + +.el-icon-inspur-pcie:before { + content: "\e617"; +} + +.el-icon-inspur-control:before { + content: "\e618"; +} + +.el-icon-inspur-iscsi:before { + content: "\e619"; +} + +.el-icon-inspur-port:before { + content: "\e61a"; +} + +.el-icon-inspur-lun:before { + content: "\e61b"; +} + +.el-icon-inspur-chip:before { + content: "\e61c"; +} + +.el-icon-inspur-mesh-opening:before { + content: "\e61d"; +} + +.el-icon-inspur-qr-scan-2-fill:before { + content: "\e9c1"; +} + +.el-icon-inspur-fan:before { + content: "\f668"; +} + +.el-icon-inspur-physics:before { + content: "\e615"; +} + +.el-icon-inspur-logic:before { + content: "\e614"; +} + +.el-icon-inspur-distributed:before { + content: "\e613"; +} + +.el-icon-inspur-ongoing:before { + content: "\e601"; +} + +.el-icon-inspur-loading-1:before { + content: "\e610"; +} + +.el-icon-inspur-loading-3:before { + content: "\e60d"; +} + +.el-icon-inspur-up-line:before { + content: "\e60c"; +} + +.el-icon-inspur-table-shine-upon:before { + content: "\e60b"; +} + +.el-icon-inspur-table-free:before { + content: "\e60a"; +} + +.el-icon-inspur-restart-file:before { + content: "\e607"; +} + +.el-icon-inspur-dispose:before { + content: "\f078"; +} + +.el-icon-inspur-link1:before { + content: "\f079"; +} + +.el-icon-inspur-synchronize:before { + content: "\f077"; +} + +.el-icon-inspur-disk:before { + content: "\f07a"; +} + +.el-icon-inspur-v3-user:before { + content: "\f076"; +} + +.el-icon-inspur-OID:before { + content: "\f075"; +} + +.el-icon-inspur-performance-report:before { + content: "\f073"; +} + +.el-icon-inspur-hardware-report:before { + content: "\f074"; +} + +.el-icon-inspur-details-safe:before { + content: "\f072"; +} + +.el-icon-inspur-details-store-fill:before { + content: "\f070"; +} + +.el-icon-inspur-details-fram:before { + content: "\f071"; +} + +.el-icon-inspur-skin:before { + content: "\e636"; +} + +.el-icon-inspur-refresh-1-line:before { + content: "\f068"; +} + +.el-icon-inspur-restart:before { + content: "\f069"; +} + +.el-icon-inspur-monitor-circle:before { + content: "\f06a"; +} + +.el-icon-inspur-store-circle:before { + content: "\f06b"; +} + +.el-icon-inspur-server-circle:before { + content: "\f06c"; +} + +.el-icon-inspur-firewall-circle:before { + content: "\f06d"; +} + +.el-icon-inspur-change-circle:before { + content: "\f06e"; +} + +.el-icon-inspur-nic-circle:before { + content: "\f06f"; +} + +.el-icon-inspur-celsius:before { + content: "\f067"; +} + +.el-icon-inspur-toolbar:before { + content: "\f066"; +} + +.el-icon-inspur-file-edit-line:before { + content: "\e9bf"; +} + +.el-icon-inspur-file-edit-fill:before { + content: "\e9c0"; +} + +.el-icon-inspur-file-list-2-fill:before { + content: "\e9a8"; +} + +.el-icon-inspur-file-info-fill:before { + content: "\e9b7"; +} + +.el-icon-inspur-file-list-3-fill:before { + content: "\e9b8"; +} + +.el-icon-inspur-file-list-3-line:before { + content: "\e9b9"; +} + +.el-icon-inspur-file-list-2-line:before { + content: "\e9ba"; +} + +.el-icon-inspur-file-list-fill:before { + content: "\e9bb"; +} + +.el-icon-inspur-file-lock-fill:before { + content: "\e9bc"; +} + +.el-icon-inspur-file-list-line:before { + content: "\e9bd"; +} + +.el-icon-inspur-file-lock-line:before { + content: "\e9be"; +} + +.el-icon-inspur-certificate-fill:before { + content: "\f065"; +} + +.el-icon-inspur-power:before { + content: "\f064"; +} + +.el-icon-inspur-details-3d:before { + content: "\f060"; +} + +.el-icon-inspur-details-rule:before { + content: "\f061"; +} + +.el-icon-inspur-details-building:before { + content: "\f062"; +} + +.el-icon-inspur-details-ips:before { + content: "\f063"; +} + +.el-icon-inspur-details-distributed:before { + content: "\f055"; +} + +.el-icon-inspur-details-change:before { + content: "\f056"; +} + +.el-icon-inspur-database-save-fill:before { + content: "\f057"; +} + +.el-icon-inspur-details-router:before { + content: "\f058"; +} + +.el-icon-inspur-details-nic:before { + content: "\f059"; +} + +.el-icon-inspur-details-sdn:before { + content: "\f05a"; +} + +.el-icon-inspur-details-monitor:before { + content: "\f05b"; +} + +.el-icon-inspur-save-set-fill:before { + content: "\f05c"; +} + +.el-icon-inspur-details-store:before { + content: "\f05d"; +} + +.el-icon-inspur-change:before { + content: "\f05e"; +} + +.el-icon-inspur-sdn:before { + content: "\f05f"; +} + +.el-icon-inspur-edit-lock-fill:before { + content: "\f053"; +} + +.el-icon-inspur-look-log-fill:before { + content: "\f054"; +} + +.el-icon-inspur-off:before { + content: "\f051"; +} + +.el-icon-inspur-open:before { + content: "\f052"; +} + +.el-icon-inspur-git-repository-commits-line:before { + content: "\e98f"; +} + +.el-icon-inspur-git-repository-commits-fill:before { + content: "\e990"; +} + +.el-icon-inspur-git-repository-private-line:before { + content: "\e991"; +} + +.el-icon-inspur-git-repository-private-fill:before { + content: "\e992"; +} + +.el-icon-inspur-terminal-window-fill:before { + content: "\e993"; +} + +.el-icon-inspur-terminal-window-line:before { + content: "\e994"; +} + +.el-icon-inspur-cast-fill:before { + content: "\e995"; +} + +.el-icon-inspur-cast-line:before { + content: "\e996"; +} + +.el-icon-inspur-dashboard-2-fill:before { + content: "\e997"; +} + +.el-icon-inspur-dashboard-2-line:before { + content: "\e998"; +} + +.el-icon-inspur-device-recover-line:before { + content: "\e999"; +} + +.el-icon-inspur-device-recover-fill:before { + content: "\e99a"; +} + +.el-icon-inspur-dual-sim-1-line:before { + content: "\e99b"; +} + +.el-icon-inspur-dual-sim-1-fill:before { + content: "\e99c"; +} + +.el-icon-inspur-dual-sim-2-line:before { + content: "\e99d"; +} + +.el-icon-inspur-dual-sim-2-fill:before { + content: "\e99e"; +} + +.el-icon-inspur-hard-drive-2-fill:before { + content: "\e99f"; +} + +.el-icon-inspur-hard-drive-2-line:before { + content: "\e9a0"; +} + +.el-icon-inspur-hard-drive-fill:before { + content: "\e9a1"; +} + +.el-icon-inspur-hard-drive-line:before { + content: "\e9a2"; +} + +.el-icon-inspur-qr-code-line:before { + content: "\e9a3"; +} + +.el-icon-inspur-qr-code-fill:before { + content: "\e9a4"; +} + +.el-icon-inspur-file-copy-2-fill:before { + content: "\e9a5"; +} + +.el-icon-inspur-file-copy-2-line:before { + content: "\e9a6"; +} + +.el-icon-inspur-download-2-fill:before { + content: "\e9a7"; +} + +.el-icon-inspur-find-replace-line:before { + content: "\e9a9"; +} + +.el-icon-inspur-find-replace-fill:before { + content: "\e9aa"; +} + +.el-icon-inspur-forbid-2-fill:before { + content: "\e9ab"; +} + +.el-icon-inspur-forbid-fill:before { + content: "\e9ac"; +} + +.el-icon-inspur-forbid-line:before { + content: "\e9ad"; +} + +.el-icon-inspur-indeterminate-circle-fill:before { + content: "\e9ae"; +} + +.el-icon-inspur-indeterminate-circle-line:before { + content: "\e9af"; +} + +.el-icon-inspur-share-forward-fill:before { + content: "\e9b0"; +} + +.el-icon-inspur-share-forward-line:before { + content: "\e9b1"; +} + +.el-icon-inspur-spam-3-line:before { + content: "\e9b2"; +} + +.el-icon-inspur-spam-2-fill:before { + content: "\e9b3"; +} + +.el-icon-inspur-spam-2-line:before { + content: "\e9b4"; +} + +.el-icon-inspur-spam-line:before { + content: "\e9b5"; +} + +.el-icon-inspur-spam-3-fill:before { + content: "\e9b6"; +} + +.el-icon-inspur-connect-fill:before { + content: "\f050"; +} + +.el-icon-inspur-external-link-line:before { + content: "\e98d"; +} + +.el-icon-inspur-external-link-fill:before { + content: "\e98e"; +} + +.el-icon-inspur-links-fill:before { + content: "\e6d9"; +} + +.el-icon-inspur-links-line:before { + content: "\e6dc"; +} + +.el-icon-inspur-link-m:before { + content: "\e989"; +} + +.el-icon-inspur-link-unlink-m:before { + content: "\e98a"; +} + +.el-icon-inspur-link-unlink:before { + content: "\e98b"; +} + +.el-icon-inspur-link:before { + content: "\e98c"; +} + +.el-icon-inspur-hammer-line:before { + content: "\e988"; +} + +.el-icon-inspur-frame:before { + content: "\f04f"; +} + +.el-icon-inspur-induce:before { + content: "\f04e"; +} + +.el-icon-inspur-logout-circle-line:before { + content: "\e984"; +} + +.el-icon-inspur-logout-circle-fill:before { + content: "\e985"; +} + +.el-icon-inspur-logout-circle-r-fill:before { + content: "\e986"; +} + +.el-icon-inspur-logout-circle-r-line:before { + content: "\e987"; +} + +.el-icon-inspur-nouth:before { + content: "\f04c"; +} + +.el-icon-inspur-south:before { + content: "\f04d"; +} + +.el-icon-inspur-kvm:before { + content: "\e63b"; +} + +.el-icon-inspur-reply-all-fill:before { + content: "\e6e6"; +} + +.el-icon-inspur-reply-fill:before { + content: "\e981"; +} + +.el-icon-inspur-reply-line:before { + content: "\e982"; +} + +.el-icon-inspur-reply-all-line:before { + content: "\e983"; +} + +.el-icon-inspur-restart-line:before { + content: "\e97d"; +} + +.el-icon-inspur-restart-fill:before { + content: "\e97e"; +} + +.el-icon-inspur-refresh-fill:before { + content: "\e97f"; +} + +.el-icon-inspur-refresh-line:before { + content: "\e980"; +} + +.el-icon-inspur-cluster-monitor:before { + content: "\efc6"; +} + +.el-icon-inspur-collect-nic:before { + content: "\f04b"; +} + +.el-icon-inspur-checkbox-plus-fill:before { + content: "\eff4"; +} + +.el-icon-inspur-checkbox-plus-line:before { + content: "\f04a"; +} + +.el-icon-inspur-select-upload:before { + content: "\eff1"; +} + +.el-icon-inspur-arrow-up-s-fill:before { + content: "\e97a"; +} + +.el-icon-inspur-arrow-right-circle-line:before { + content: "\e97b"; +} + +.el-icon-inspur-arrow-up-s-line:before { + content: "\e97c"; +} + +.el-icon-inspur-slideshow-2-line:before { + content: "\e700"; +} + +.el-icon-inspur-slideshow-3-fill:before { + content: "\e701"; +} + +.el-icon-inspur-slideshow-2-fill:before { + content: "\e976"; +} + +.el-icon-inspur-slideshow-4-line:before { + content: "\e977"; +} + +.el-icon-inspur-slideshow-3-line:before { + content: "\e978"; +} + +.el-icon-inspur-slideshow-4-fill:before { + content: "\e979"; +} + +.el-icon-inspur-arrow-up-circle-line:before { + content: "\e96e"; +} + +.el-icon-inspur-arrow-up-down-fill:before { + content: "\e96f"; +} + +.el-icon-inspur-arrow-up-fill:before { + content: "\e970"; +} + +.el-icon-inspur-arrow-up-line:before { + content: "\e971"; +} + +.el-icon-inspur-arrow-up-down-line:before { + content: "\e972"; +} + +.el-icon-inspur-arrow-right-up-line:before { + content: "\e973"; +} + +.el-icon-inspur-checkbox-blank-circle-fill:before { + content: "\e974"; +} + +.el-icon-inspur-checkbox-blank-circle-line:before { + content: "\e975"; +} + +.el-icon-inspur-add-fill:before { + content: "\e8f0"; +} + +.el-icon-inspur-alarm-fill:before { + content: "\e8f1"; +} + +.el-icon-inspur-alarm-line:before { + content: "\e940"; +} + +.el-icon-inspur-alarm-warning-fill:before { + content: "\e941"; +} + +.el-icon-inspur-alarm-warning-line:before { + content: "\e947"; +} + +.el-icon-inspur-apps-2-fill:before { + content: "\e948"; +} + +.el-icon-inspur-apps-fill:before { + content: "\e949"; +} + +.el-icon-inspur-arrow-down-fill:before { + content: "\e94a"; +} + +.el-icon-inspur-arrow-down-line:before { + content: "\e94b"; +} + +.el-icon-inspur-arrow-down-circle-fill:before { + content: "\e94c"; +} + +.el-icon-inspur-arrow-down-s-fill:before { + content: "\e94d"; +} + +.el-icon-inspur-arrow-down-s-line:before { + content: "\e94e"; +} + +.el-icon-inspur-arrow-drop-down-line:before { + content: "\e94f"; +} + +.el-icon-inspur-arrow-drop-down-fill:before { + content: "\e950"; +} + +.el-icon-inspur-arrow-drop-left-line:before { + content: "\e951"; +} + +.el-icon-inspur-arrow-drop-left-fill:before { + content: "\e952"; +} + +.el-icon-inspur-arrow-drop-right-line:before { + content: "\e953"; +} + +.el-icon-inspur-arrow-drop-right-fill:before { + content: "\e954"; +} + +.el-icon-inspur-arrow-go-back-fill:before { + content: "\e955"; +} + +.el-icon-inspur-arrow-drop-up-fill:before { + content: "\e956"; +} + +.el-icon-inspur-arrow-drop-up-line:before { + content: "\e957"; +} + +.el-icon-inspur-arrow-go-forward-fill:before { + content: "\e958"; +} + +.el-icon-inspur-arrow-go-forward-line:before { + content: "\e959"; +} + +.el-icon-inspur-arrow-left-circle-line:before { + content: "\e95a"; +} + +.el-icon-inspur-arrow-left-down-fill:before { + content: "\e95b"; +} + +.el-icon-inspur-arrow-left-fill:before { + content: "\e95c"; +} + +.el-icon-inspur-arrow-left-line:before { + content: "\e95d"; +} + +.el-icon-inspur-arrow-left-down-line:before { + content: "\e95e"; +} + +.el-icon-inspur-arrow-left-right-fill:before { + content: "\e95f"; +} + +.el-icon-inspur-arrow-left-right-line:before { + content: "\e960"; +} + +.el-icon-inspur-arrow-left-s-fill:before { + content: "\e961"; +} + +.el-icon-inspur-arrow-left-s-line:before { + content: "\e962"; +} + +.el-icon-inspur-arrow-left-up-fill:before { + content: "\e963"; +} + +.el-icon-inspur-arrow-left-up-line:before { + content: "\e964"; +} + +.el-icon-inspur-arrow-right-circle-fill:before { + content: "\e965"; +} + +.el-icon-inspur-arrow-right-down-line:before { + content: "\e966"; +} + +.el-icon-inspur-arrow-right-fill:before { + content: "\e967"; +} + +.el-icon-inspur-arrow-right-down-fill:before { + content: "\e968"; +} + +.el-icon-inspur-arrow-right-line:before { + content: "\e969"; +} + +.el-icon-inspur-arrow-right-up-fill:before { + content: "\e96a"; +} + +.el-icon-inspur-arrow-right-s-fill:before { + content: "\e96b"; +} + +.el-icon-inspur-arrow-right-s-line:before { + content: "\e96c"; +} + +.el-icon-inspur-arrow-up-circle-fill:before { + content: "\e96d"; +} + +.el-icon-inspur-eye-close-line:before { + content: "\e939"; +} + +.el-icon-inspur-eye-close-fill:before { + content: "\e93a"; +} + +.el-icon-inspur-download-line:before { + content: "\e93b"; +} + +.el-icon-inspur-eye-2-fill:before { + content: "\e93c"; +} + +.el-icon-inspur-eye-off-fill:before { + content: "\e93d"; +} + +.el-icon-inspur-upload-2-fill:before { + content: "\e93e"; +} + +.el-icon-inspur-upload-2-line:before { + content: "\e940"; +} + +.el-icon-inspur-upload-fill:before { + content: "\e941"; +} + +.el-icon-inspur-upload-line:before { + content: "\e942"; +} + +.el-icon-inspur-zoom-in-fill:before { + content: "\e943"; +} + +.el-icon-inspur-zoom-out-line:before { + content: "\e944"; +} + +.el-icon-inspur-zoom-out-fill:before { + content: "\e945"; +} + +.el-icon-inspur-zoom-in-line:before { + content: "\e946"; +} + +.el-icon-inspur-contacts-book-upload-fill:before { + content: "\e8f2"; +} + +.el-icon-inspur-contacts-book-upload-line:before { + content: "\e8f3"; +} + +.el-icon-inspur-24-hours-fill:before { + content: "\e8f4"; +} + +.el-icon-inspur-coupon-4-fill:before { + content: "\e8f5"; +} + +.el-icon-inspur-coupon-5-fill:before { + content: "\e8f6"; +} + +.el-icon-inspur-coupon-4-line:before { + content: "\e8f7"; +} + +.el-icon-inspur-coupon-3-line:before { + content: "\e8f8"; +} + +.el-icon-inspur-coupon-3-fill:before { + content: "\e8f9"; +} + +.el-icon-inspur-coupon-fill:before { + content: "\e8fa"; +} + +.el-icon-inspur-exchange-dollar-fill:before { + content: "\e8fb"; +} + +.el-icon-inspur-exchange-funds-line:before { + content: "\e8fc"; +} + +.el-icon-inspur-exchange-funds-fill:before { + content: "\e8fd"; +} + +.el-icon-inspur-coupon-5-line:before { + content: "\e8ff"; +} + +.el-icon-inspur-coupon-line:before { + content: "\e900"; +} + +.el-icon-inspur-exchange-dollar-line:before { + content: "\e901"; +} + +.el-icon-inspur-exchange-cny-fill:before { + content: "\e902"; +} + +.el-icon-inspur-currency-line:before { + content: "\e903"; +} + +.el-icon-inspur-exchange-cny-line:before { + content: "\e904"; +} + +.el-icon-inspur-24-hours-line:before { + content: "\e905"; +} + +.el-icon-inspur-currency-fill:before { + content: "\e906"; +} + +.el-icon-inspur-safe-fill:before { + content: "\e907"; +} + +.el-icon-inspur-album-fill:before { + content: "\e908"; +} + +.el-icon-inspur-album-line:before { + content: "\e909"; +} + +.el-icon-inspur-aspect-ratio-line:before { + content: "\e90a"; +} + +.el-icon-inspur-broadcast-fill:before { + content: "\e90b"; +} + +.el-icon-inspur-camera-2-fill:before { + content: "\e90e"; +} + +.el-icon-inspur-broadcast-line:before { + content: "\e90f"; +} + +.el-icon-inspur-camera-3-fill:before { + content: "\e910"; +} + +.el-icon-inspur-camera-2-line:before { + content: "\e911"; +} + +.el-icon-inspur-camera-3-line:before { + content: "\e912"; +} + +.el-icon-inspur-camera-lens-fill:before { + content: "\e913"; +} + +.el-icon-inspur-camera-switch-fill:before { + content: "\e914"; +} + +.el-icon-inspur-camera-fill:before { + content: "\e915"; +} + +.el-icon-inspur-camera-line:before { + content: "\e916"; +} + +.el-icon-inspur-camera-off-fill:before { + content: "\e917"; +} + +.el-icon-inspur-camera-off-line:before { + content: "\e918"; +} + +.el-icon-inspur-clapperboard-fill:before { + content: "\e919"; +} + +.el-icon-inspur-camera-switch-line:before { + content: "\e91a"; +} + +.el-icon-inspur-clapperboard-line:before { + content: "\e91b"; +} + +.el-icon-inspur-closed-captioning-fill:before { + content: "\e91c"; +} + +.el-icon-inspur-disc-line:before { + content: "\e91d"; +} + +.el-icon-inspur-closed-captioning-line:before { + content: "\e91e"; +} + +.el-icon-inspur-dv-fill:before { + content: "\e91f"; +} + +.el-icon-inspur-disc-fill:before { + content: "\e920"; +} + +.el-icon-inspur-dv-line:before { + content: "\e921"; +} + +.el-icon-inspur-equalizer-fill:before { + content: "\e922"; +} + +.el-icon-inspur-equalizer-line:before { + content: "\e923"; +} + +.el-icon-inspur-film-fill:before { + content: "\e924"; +} + +.el-icon-inspur-film-line:before { + content: "\e925"; +} + +.el-icon-inspur-fullscreen-exit-fill:before { + content: "\e926"; +} + +.el-icon-inspur-fullscreen-line:before { + content: "\e927"; +} + +.el-icon-inspur-fullscreen-fill:before { + content: "\e928"; +} + +.el-icon-inspur-fullscreen-exit-line:before { + content: "\e929"; +} + +.el-icon-inspur-video-download-fill:before { + content: "\e92a"; +} + +.el-icon-inspur-video-add-fill:before { + content: "\e92b"; +} + +.el-icon-inspur-video-download-line:before { + content: "\e92c"; +} + +.el-icon-inspur-video-upload-fill:before { + content: "\e92d"; +} + +.el-icon-inspur-video-upload-line:before { + content: "\e92e"; +} + +.el-icon-inspur-vidicon-2-fill:before { + content: "\e92f"; +} + +.el-icon-inspur-vidicon-2-line:before { + content: "\e931"; +} + +.el-icon-inspur-vidicon-fill:before { + content: "\e932"; +} + +.el-icon-inspur-vidicon-line:before { + content: "\e933"; +} + +.el-icon-inspur-download-fill:before { + content: "\e934"; +} + +.el-icon-inspur-download-2-line:before { + content: "\e935"; +} + +.el-icon-inspur-eye-2-line:before { + content: "\e936"; +} + +.el-icon-inspur-eye-fill:before { + content: "\e937"; +} + +.el-icon-inspur-eye-line:before { + content: "\e938"; +} + +.el-icon-inspur-check-double-line:before { + content: "\e89b"; +} + +.el-icon-inspur-check-line:before { + content: "\e89c"; +} + +.el-icon-inspur-check-double-fill:before { + content: "\e8ec"; +} + +.el-icon-inspur-check-fill:before { + content: "\e8ed"; +} + +.el-icon-inspur-close-line:before { + content: "\e8ee"; +} + +.el-icon-inspur-close-fill:before { + content: "\e8ef"; +} + +.el-icon-inspur-more-line-vertical:before { + content: "\f07a"; +} + +.el-icon-inspur-computer-fill:before { + content: "\e84e"; +} + +.el-icon-inspur-computer-line:before { + content: "\e858"; +} + +.el-icon-inspur-cpu-fill:before { + content: "\e85c"; +} + +.el-icon-inspur-cpu-line:before { + content: "\e85f"; +} + +.el-icon-inspur-install-line:before { + content: "\e860"; +} + +.el-icon-inspur-install-fill:before { + content: "\e865"; +} + +.el-icon-inspur-signal-wifi-1-fill:before { + content: "\e866"; +} + +.el-icon-inspur-signal-wifi-2-fill:before { + content: "\e867"; +} + +.el-icon-inspur-signal-wifi-1-line:before { + content: "\e868"; +} + +.el-icon-inspur-signal-wifi-3-line:before { + content: "\e86b"; +} + +.el-icon-inspur-signal-wifi-3-fill:before { + content: "\e86c"; +} + +.el-icon-inspur-signal-wifi-error-fill:before { + content: "\e86d"; +} + +.el-icon-inspur-signal-wifi-2-line:before { + content: "\e86e"; +} + +.el-icon-inspur-signal-wifi-error-line:before { + content: "\e86f"; +} + +.el-icon-inspur-signal-wifi-fill:before { + content: "\e870"; +} + +.el-icon-inspur-signal-wifi-line:before { + content: "\e871"; +} + +.el-icon-inspur-signal-wifi-off-fill:before { + content: "\e872"; +} + +.el-icon-inspur-signal-wifi-off-line:before { + content: "\e873"; +} + +.el-icon-inspur-u-disk-fill:before { + content: "\e874"; +} + +.el-icon-inspur-u-disk-line:before { + content: "\e875"; +} + +.el-icon-inspur-uninstall-fill:before { + content: "\e876"; +} + +.el-icon-inspur-uninstall-line:before { + content: "\e877"; +} + +.el-icon-inspur-usb-fill:before { + content: "\e878"; +} + +.el-icon-inspur-usb-line:before { + content: "\e87d"; +} + +.el-icon-inspur-wifi-line:before { + content: "\e87e"; +} + +.el-icon-inspur-wifi-off-line:before { + content: "\e89a"; +} + +.el-icon-inspur-wireless-charging-fill:before { + content: "\e89d"; +} + +.el-icon-inspur-wireless-charging-line:before { + content: "\e89e"; +} + +.el-icon-inspur-book-2-fill:before { + content: "\e89f"; +} + +.el-icon-inspur-book-3-fill:before { + content: "\e8a0"; +} + +.el-icon-inspur-book-2-line:before { + content: "\e8a1"; +} + +.el-icon-inspur-book-mark-fill:before { + content: "\e8a2"; +} + +.el-icon-inspur-book-open-fill:before { + content: "\e8a3"; +} + +.el-icon-inspur-book-open-line:before { + content: "\e8a4"; +} + +.el-icon-inspur-booklet-line:before { + content: "\e8a5"; +} + +.el-icon-inspur-booklet-fill:before { + content: "\e8a6"; +} + +.el-icon-inspur-book-3-line:before { + content: "\e8a7"; +} + +.el-icon-inspur-contacts-book-2-fill:before { + content: "\e8a8"; +} + +.el-icon-inspur-contacts-book-2-line:before { + content: "\e8a9"; +} + +.el-icon-inspur-contacts-book-fill:before { + content: "\e8aa"; +} + +.el-icon-inspur-contacts-book-line:before { + content: "\e8ab"; +} + +.el-icon-inspur-book-mark-line:before { + content: "\e8ac"; +} + +.el-icon-inspur-coin-fill:before { + content: "\e8ad"; +} + +.el-icon-inspur-dislike-fill:before { + content: "\e8ae"; +} + +.el-icon-inspur-heart-add-fill:before { + content: "\e8af"; +} + +.el-icon-inspur-heart-fill:before { + content: "\e8b0"; +} + +.el-icon-inspur-heart-2-fill:before { + content: "\e8b1"; +} + +.el-icon-inspur-heart-3-fill:before { + content: "\e8b2"; +} + +.el-icon-inspur-heart-line:before { + content: "\e8b3"; +} + +.el-icon-inspur-heart-3-line:before { + content: "\e8b4"; +} + +.el-icon-inspur-heart-add-line:before { + content: "\e8b5"; +} + +.el-icon-inspur-heart-2-line:before { + content: "\e8b6"; +} + +.el-icon-inspur-hearts-fill:before { + content: "\e8b7"; +} + +.el-icon-inspur-hearts-line:before { + content: "\e8b8"; +} + +.el-icon-inspur-heart-pulse-line:before { + content: "\e8b9"; +} + +.el-icon-inspur-centos-line:before { + content: "\e8ba"; +} + +.el-icon-inspur-centos-fill:before { + content: "\e8bb"; +} + +.el-icon-inspur-volume-down-line:before { + content: "\e8bc"; +} + +.el-icon-inspur-volume-mute-fill:before { + content: "\e8bd"; +} + +.el-icon-inspur-volume-mute-line:before { + content: "\e8be"; +} + +.el-icon-inspur-volume-off-vibrate-line:before { + content: "\e8bf"; +} + +.el-icon-inspur-volume-off-vibrate-fill:before { + content: "\e8c4"; +} + +.el-icon-inspur-volume-up-fill:before { + content: "\e8c5"; +} + +.el-icon-inspur-volume-up-line:before { + content: "\e8c6"; +} + +.el-icon-inspur-volume-vibrate-fill:before { + content: "\e8c7"; +} + +.el-icon-inspur-checkbox-blank-line:before { + content: "\e8c8"; +} + +.el-icon-inspur-checkbox-blank-fill:before { + content: "\e8c9"; +} + +.el-icon-inspur-checkbox-circle-line:before { + content: "\e8ca"; +} + +.el-icon-inspur-checkbox-circle-fill:before { + content: "\e8cb"; +} + +.el-icon-inspur-checkbox-fill:before { + content: "\e8cc"; +} + +.el-icon-inspur-checkbox-indeterminate-fill:before { + content: "\e8cd"; +} + +.el-icon-inspur-checkbox-line:before { + content: "\e8ce"; +} + +.el-icon-inspur-checkbox-multiple-blank-fill:before { + content: "\e8cf"; +} + +.el-icon-inspur-checkbox-indeterminate-line:before { + content: "\e8d0"; +} + +.el-icon-inspur-checkbox-multiple-blank-line:before { + content: "\e8d1"; +} + +.el-icon-inspur-checkbox-multiple-line:before { + content: "\e8d2"; +} + +.el-icon-inspur-close-circle-fill:before { + content: "\e8d3"; +} + +.el-icon-inspur-checkbox-multiple-fill:before { + content: "\e8d4"; +} + +.el-icon-inspur-close-circle-line:before { + content: "\e8d5"; +} + +.el-icon-inspur-lock-2-fill:before { + content: "\e8d6"; +} + +.el-icon-inspur-lock-2-line:before { + content: "\e8d7"; +} + +.el-icon-inspur-lock-unlock-fill:before { + content: "\e8d8"; +} + +.el-icon-inspur-menu-fold-fill:before { + content: "\e8d9"; +} + +.el-icon-inspur-menu-unfold-fill:before { + content: "\e8da"; +} + +.el-icon-inspur-shield-check-fill:before { + content: "\e8db"; +} + +.el-icon-inspur-shield-check-line:before { + content: "\e8dc"; +} + +.el-icon-inspur-shield-cross-fill:before { + content: "\e8dd"; +} + +.el-icon-inspur-shield-fill:before { + content: "\e8de"; +} + +.el-icon-inspur-shield-cross-line:before { + content: "\e8df"; +} + +.el-icon-inspur-shield-flash-fill:before { + content: "\e8e0"; +} + +.el-icon-inspur-shield-flash-line:before { + content: "\e8e1"; +} + +.el-icon-inspur-shield-keyhole-fill:before { + content: "\e8e2"; +} + +.el-icon-inspur-shield-keyhole-line:before { + content: "\e8e3"; +} + +.el-icon-inspur-more-line:before { + content: "\e8e4"; +} + +.el-icon-inspur-shield-line:before { + content: "\e8e5"; +} + +.el-icon-inspur-shield-star-fill:before { + content: "\e8e6"; +} + +.el-icon-inspur-shield-user-fill:before { + content: "\e8e7"; +} + +.el-icon-inspur-shield-star-line:before { + content: "\e8e8"; +} + +.el-icon-inspur-shield-user-line:before { + content: "\e8e9"; +} + +.el-icon-inspur-select-download:before { + content: "\f048"; +} + +.el-icon-inspur-full-download:before { + content: "\f049"; +} + +.el-icon-inspur-firmware-manager:before { + content: "\f047"; +} + +.el-icon-inspur-laptop-set-fill:before { + content: "\f046"; +} + +.el-icon-inspur-turn:before { + content: "\f03d"; +} + +.el-icon-inspur-health-degree:before { + content: "\f027"; +} + +.el-icon-inspur-stoppage:before { + content: "\f02d"; +} + +.el-icon-inspur-regular:before { + content: "\f03c"; +} + +.el-icon-inspur-bxs-camera:before { + content: "\e826"; +} + +.el-icon-inspur-bxs-camera-plus:before { + content: "\e827"; +} + +.el-icon-inspur-bxs-caret-up-circle:before { + content: "\e828"; +} + +.el-icon-inspur-bxs-caret-left-circle:before { + content: "\e829"; +} + +.el-icon-inspur-bxs-caret-right-circle:before { + content: "\e83b"; +} + +.el-icon-inspur-bxs-caret-down-circle:before { + content: "\e83c"; +} + +.el-icon-inspur-bxs-chip:before { + content: "\e83d"; +} + +.el-icon-inspur-bxs-cloud-lightning:before { + content: "\e83e"; +} + +.el-icon-inspur-bxs-cloud-rain:before { + content: "\e83f"; +} + +.el-icon-inspur-bxs-cloud-download:before { + content: "\e840"; +} + +.el-icon-inspur-bxs-cloud:before { + content: "\e841"; +} + +.el-icon-inspur-bxs-cloud-upload:before { + content: "\e842"; +} + +.el-icon-inspur-bxs-cuboid:before { + content: "\e843"; +} + +.el-icon-inspur-bxs-dashboard:before { + content: "\e844"; +} + +.el-icon-inspur-bxs-direction-left:before { + content: "\e845"; +} + +.el-icon-inspur-bxs-direction-right:before { + content: "\e846"; +} + +.el-icon-inspur-bxs-report:before { + content: "\e847"; +} + +.el-icon-inspur-bxs-receipt:before { + content: "\e848"; +} + +.el-icon-inspur-bxs-select-multiple:before { + content: "\e849"; +} + +.el-icon-inspur-bxs-shield:before { + content: "\e84a"; +} + +.el-icon-inspur-bxs-shield-alt-2:before { + content: "\e84b"; +} + +.el-icon-inspur-bxs-square:before { + content: "\e84c"; +} + +.el-icon-inspur-bxs-square-rounded:before { + content: "\e84d"; +} + +.el-icon-inspur-bxs-wallet-alt:before { + content: "\e84f"; +} + +.el-icon-inspur-bxs-news:before { + content: "\e850"; +} + +.el-icon-inspur-bxs-time:before { + content: "\e855"; +} + +.el-icon-inspur-bxs-tone:before { + content: "\e856"; +} + +.el-icon-inspur-bxs-trophy1:before { + content: "\e857"; +} + +.el-icon-inspur-bxs-badge-check:before { + content: "\e859"; +} + +.el-icon-inspur-bxs-badge:before { + content: "\e85a"; +} + +.el-icon-inspur-bxs-band-aid:before { + content: "\e85b"; +} + +.el-icon-inspur-bxs-hand-right:before { + content: "\e8c0"; +} + +.el-icon-inspur-bxs-hand-left:before { + content: "\e8c1"; +} + +.el-icon-inspur-bxs-hand-down:before { + content: "\e8c2"; +} + +.el-icon-inspur-bxs-hand-up:before { + content: "\e8c3"; +} + +.el-icon-inspur-bxs-skip-next-circle:before { + content: "\e90c"; +} + +.el-icon-inspur-bxs-skip-previous-circle:before { + content: "\e90d"; +} + +.el-icon-inspur-bxs-hourglass-top:before { + content: "\e824"; +} + +.el-icon-inspur-bxs-hourglass-bottom:before { + content: "\e825"; +} + +.el-icon-inspur-bxs-pyramid:before { + content: "\e82a"; +} + +.el-icon-inspur-bxs-quote-alt-left:before { + content: "\e82b"; +} + +.el-icon-inspur-bxs-quote-left:before { + content: "\e830"; +} + +.el-icon-inspur-bxs-quote-right:before { + content: "\e837"; +} + +.el-icon-inspur-bxs-quote-alt-right:before { + content: "\e838"; +} + +.el-icon-inspur-bxs-quote-single-left:before { + content: "\e839"; +} + +.el-icon-inspur-bxs-quote-single-right:before { + content: "\e83a"; +} + +.el-icon-inspur-bxs-phone-call:before { + content: "\e8ea"; +} + +.el-icon-inspur-bxs-phone-outgoing:before { + content: "\e8eb"; +} + +.el-icon-inspur-bxs-rename:before { + content: "\e8fe"; +} + +.el-icon-inspur-bxs-videos:before { + content: "\e930"; +} + +.el-icon-inspur-bxs-trophy:before { + content: "\e93f"; +} + +.el-icon-inspur-folder-2-fill:before { + content: "\e7c3"; +} + +.el-icon-inspur-folder-3-fill:before { + content: "\e7c4"; +} + +.el-icon-inspur-folder-4-fill:before { + content: "\e7c5"; +} + +.el-icon-inspur-folder-3-line:before { + content: "\e7c6"; +} + +.el-icon-inspur-folder-5-fill:before { + content: "\e7c7"; +} + +.el-icon-inspur-folder-5-line:before { + content: "\e7c8"; +} + +.el-icon-inspur-folder-add-fill:before { + content: "\e7c9"; +} + +.el-icon-inspur-folder-add-line:before { + content: "\e7ca"; +} + +.el-icon-inspur-folder-chart-2-line:before { + content: "\e7cb"; +} + +.el-icon-inspur-folder-chart-2-fill:before { + content: "\e7cc"; +} + +.el-icon-inspur-folder-chart-fill:before { + content: "\e7cd"; +} + +.el-icon-inspur-folder-chart-line:before { + content: "\e7ce"; +} + +.el-icon-inspur-folder-download-fill:before { + content: "\e7cf"; +} + +.el-icon-inspur-folder-fill:before { + content: "\e7d0"; +} + +.el-icon-inspur-folder-4-line:before { + content: "\e7d1"; +} + +.el-icon-inspur-folder-download-line:before { + content: "\e7d2"; +} + +.el-icon-inspur-folder-forbid-fill:before { + content: "\e7d3"; +} + +.el-icon-inspur-folder-forbid-line:before { + content: "\e7d4"; +} + +.el-icon-inspur-folder-2-line:before { + content: "\e7d5"; +} + +.el-icon-inspur-folder-history-fill:before { + content: "\e7d6"; +} + +.el-icon-inspur-folder-history-line:before { + content: "\e7d7"; +} + +.el-icon-inspur-folder-info-fill:before { + content: "\e7d8"; +} + +.el-icon-inspur-folder-keyhole-line:before { + content: "\e7d9"; +} + +.el-icon-inspur-folder-info-line:before { + content: "\e7da"; +} + +.el-icon-inspur-folder-keyhole-fill:before { + content: "\e7db"; +} + +.el-icon-inspur-folder-lock-fill:before { + content: "\e7dc"; +} + +.el-icon-inspur-folder-line:before { + content: "\e7dd"; +} + +.el-icon-inspur-folder-music-fill:before { + content: "\e7de"; +} + +.el-icon-inspur-folder-lock-line:before { + content: "\e7df"; +} + +.el-icon-inspur-folder-open-fill:before { + content: "\e7e0"; +} + +.el-icon-inspur-folder-open-line:before { + content: "\e7e1"; +} + +.el-icon-inspur-folder-received-line:before { + content: "\e7e2"; +} + +.el-icon-inspur-folder-reduce-fill:before { + content: "\e7e3"; +} + +.el-icon-inspur-folder-received-fill:before { + content: "\e7e4"; +} + +.el-icon-inspur-folder-reduce-line:before { + content: "\e7e5"; +} + +.el-icon-inspur-folder-shared-fill:before { + content: "\e7e6"; +} + +.el-icon-inspur-folder-music-line:before { + content: "\e7e7"; +} + +.el-icon-inspur-folder-settings-fill:before { + content: "\e7e8"; +} + +.el-icon-inspur-folder-shield-2-fill:before { + content: "\e7e9"; +} + +.el-icon-inspur-folder-shield-2-line:before { + content: "\e7ea"; +} + +.el-icon-inspur-folder-transfer-fill:before { + content: "\e7eb"; +} + +.el-icon-inspur-folder-shield-line:before { + content: "\e7ec"; +} + +.el-icon-inspur-folder-shield-fill:before { + content: "\e7ed"; +} + +.el-icon-inspur-folder-shared-line:before { + content: "\e7ee"; +} + +.el-icon-inspur-folder-unknow-line:before { + content: "\e7ef"; +} + +.el-icon-inspur-folder-unknow-fill:before { + content: "\e7f0"; +} + +.el-icon-inspur-folder-transfer-line:before { + content: "\e7f1"; +} + +.el-icon-inspur-folder-upload-fill:before { + content: "\e7f2"; +} + +.el-icon-inspur-folder-user-fill:before { + content: "\e7f3"; +} + +.el-icon-inspur-folder-settings-line:before { + content: "\e7f4"; +} + +.el-icon-inspur-folder-user-line:before { + content: "\e7f5"; +} + +.el-icon-inspur-folder-warning-fill:before { + content: "\e7f6"; +} + +.el-icon-inspur-folder-zip-fill:before { + content: "\e7f7"; +} + +.el-icon-inspur-folder-zip-line:before { + content: "\e7f8"; +} + +.el-icon-inspur-folders-fill:before { + content: "\e7f9"; +} + +.el-icon-inspur-folder-warning-line:before { + content: "\e7fa"; +} + +.el-icon-inspur-folder-upload-line:before { + content: "\e7fb"; +} + +.el-icon-inspur-newspaper-fill:before { + content: "\e7fc"; +} + +.el-icon-inspur-newspaper-line:before { + content: "\e7fd"; +} + +.el-icon-inspur-numbers-fill:before { + content: "\e7fe"; +} + +.el-icon-inspur-pages-line:before { + content: "\e7ff"; +} + +.el-icon-inspur-pages-fill:before { + content: "\e800"; +} + +.el-icon-inspur-folders-line:before { + content: "\e801"; +} + +.el-icon-inspur-sticky-note-2-fill:before { + content: "\e802"; +} + +.el-icon-inspur-numbers-line:before { + content: "\e803"; +} + +.el-icon-inspur-sticky-note-fill:before { + content: "\e804"; +} + +.el-icon-inspur-sticky-note-2-line:before { + content: "\e805"; +} + +.el-icon-inspur-sticky-note-line:before { + content: "\e806"; +} + +.el-icon-inspur-survey-fill:before { + content: "\e807"; +} + +.el-icon-inspur-task-line:before { + content: "\e808"; +} + +.el-icon-inspur-survey-line:before { + content: "\e809"; +} + +.el-icon-inspur-task-fill1:before { + content: "\e80a"; +} + +.el-icon-inspur-todo-fill:before { + content: "\e80b"; +} + +.el-icon-inspur-todo-line:before { + content: "\e80c"; +} + +.el-icon-inspur-bring-to-front:before { + content: "\e80d"; +} + +.el-icon-inspur-bring-forward:before { + content: "\e80e"; +} + +.el-icon-inspur-heart-pulse-fill:before { + content: "\e80f"; +} + +.el-icon-inspur-compass-3-fill:before { + content: "\e810"; +} + +.el-icon-inspur-compass-line:before { + content: "\e811"; +} + +.el-icon-inspur-earth-fill:before { + content: "\e812"; +} + +.el-icon-inspur-earth-line:before { + content: "\e813"; +} + +.el-icon-inspur-luggage-deposit-line:before { + content: "\e814"; +} + +.el-icon-inspur-luggage-deposit-fill:before { + content: "\e815"; +} + +.el-icon-inspur-headphone-fill:before { + content: "\e816"; +} + +.el-icon-inspur-image-2-fill:before { + content: "\e817"; +} + +.el-icon-inspur-headphone-line:before { + content: "\e818"; +} + +.el-icon-inspur-image-edit-fill:before { + content: "\e819"; +} + +.el-icon-inspur-image-add-fill:before { + content: "\e81a"; +} + +.el-icon-inspur-image-fill:before { + content: "\e81b"; +} + +.el-icon-inspur-mic-fill:before { + content: "\e81c"; +} + +.el-icon-inspur-mic-2-fill:before { + content: "\e81d"; +} + +.el-icon-inspur-picture-in-picture-2-fill:before { + content: "\e81e"; +} + +.el-icon-inspur-picture-in-picture-exit-fill:before { + content: "\e81f"; +} + +.el-icon-inspur-picture-in-picture-2-line:before { + content: "\e820"; +} + +.el-icon-inspur-picture-in-picture-exit-line:before { + content: "\e821"; +} + +.el-icon-inspur-stop-mini-line:before { + content: "\e822"; +} + +.el-icon-inspur-stop-mini-fill:before { + content: "\e823"; +} + +.el-icon-inspur-game-fill:before { + content: "\e82c"; +} + +.el-icon-inspur-game-line:before { + content: "\e82d"; +} + +.el-icon-inspur-leaf-line:before { + content: "\e82e"; +} + +.el-icon-inspur-leaf-fill:before { + content: "\e82f"; +} + +.el-icon-inspur-plug-2-fill:before { + content: "\e831"; +} + +.el-icon-inspur-plug-2-line:before { + content: "\e832"; +} + +.el-icon-inspur-plug-fill:before { + content: "\e833"; +} + +.el-icon-inspur-plug-line:before { + content: "\e834"; +} + +.el-icon-inspur-seedling-fill:before { + content: "\e835"; +} + +.el-icon-inspur-seedling-line:before { + content: "\e836"; +} + +.el-icon-inspur-download-cloud-2-fill:before { + content: "\e851"; +} + +.el-icon-inspur-download-cloud-line:before { + content: "\e852"; +} + +.el-icon-inspur-download-cloud-fill:before { + content: "\e853"; +} + +.el-icon-inspur-download-cloud-2-line:before { + content: "\e854"; +} + +.el-icon-inspur-loader-2-line:before { + content: "\e85d"; +} + +.el-icon-inspur-loader-fill:before { + content: "\e85e"; +} + +.el-icon-inspur-logout-box-fill:before { + content: "\e861"; +} + +.el-icon-inspur-logout-box-line:before { + content: "\e862"; +} + +.el-icon-inspur-logout-box-r-fill:before { + content: "\e863"; +} + +.el-icon-inspur-logout-box-r-line:before { + content: "\e864"; +} + +.el-icon-inspur-notification-badge-fill:before { + content: "\e869"; +} + +.el-icon-inspur-notification-badge-line:before { + content: "\e86a"; +} + +.el-icon-inspur-thumb-up-line:before { + content: "\e879"; +} + +.el-icon-inspur-thumb-down-fill:before { + content: "\e87a"; +} + +.el-icon-inspur-thumb-up-fill:before { + content: "\e87b"; +} + +.el-icon-inspur-thumb-down-line:before { + content: "\e87c"; +} + +.el-icon-inspur-cloud-line-fill:before { + content: "\f045"; +} + +.el-icon-inspur-mail-volume-fill:before { + content: "\e7ae"; +} + +.el-icon-inspur-printer-fill:before { + content: "\e7af"; +} + +.el-icon-inspur-printer-cloud-fill:before { + content: "\e7b0"; +} + +.el-icon-inspur-printer-cloud-line:before { + content: "\e7b1"; +} + +.el-icon-inspur-printer-line:before { + content: "\e7b2"; +} + +.el-icon-inspur-profile-fill:before { + content: "\e7b3"; +} + +.el-icon-inspur-profile-line:before { + content: "\e7b4"; +} + +.el-icon-inspur-projector-2-fill:before { + content: "\e7b5"; +} + +.el-icon-inspur-projector-2-line:before { + content: "\e7b6"; +} + +.el-icon-inspur-registered-fill:before { + content: "\e7b7"; +} + +.el-icon-inspur-registered-line:before { + content: "\e7b8"; +} + +.el-icon-inspur-service-fill:before { + content: "\e7b9"; +} + +.el-icon-inspur-service-line:before { + content: "\e7ba"; +} + +.el-icon-inspur-slideshow-fill:before { + content: "\e7bb"; +} + +.el-icon-inspur-slideshow-line:before { + content: "\e7bc"; +} + +.el-icon-inspur-window-2-line:before { + content: "\e7bd"; +} + +.el-icon-inspur-window-2-fill:before { + content: "\e7be"; +} + +.el-icon-inspur-window-fill:before { + content: "\e7bf"; +} + +.el-icon-inspur-window-line:before { + content: "\e7c0"; +} + +.el-icon-inspur-chat-history-fill:before { + content: "\e7c1"; +} + +.el-icon-inspur-chat-history-line:before { + content: "\e7c2"; +} + +.el-icon-inspur-mail-add-line:before { + content: "\e704"; +} + +.el-icon-inspur-mail-check-fill:before { + content: "\e724"; +} + +.el-icon-inspur-mail-check-line:before { + content: "\e728"; +} + +.el-icon-inspur-mail-add-fill:before { + content: "\e798"; +} + +.el-icon-inspur-mail-close-line:before { + content: "\e799"; +} + +.el-icon-inspur-mail-download-line:before { + content: "\e79a"; +} + +.el-icon-inspur-mail-close-fill:before { + content: "\e79b"; +} + +.el-icon-inspur-mail-fill:before { + content: "\e79c"; +} + +.el-icon-inspur-mail-forbid-fill:before { + content: "\e79d"; +} + +.el-icon-inspur-mail-line:before { + content: "\e79e"; +} + +.el-icon-inspur-mail-forbid-line:before { + content: "\e79f"; +} + +.el-icon-inspur-mail-lock-fill:before { + content: "\e7a0"; +} + +.el-icon-inspur-mail-download-fill:before { + content: "\e7a1"; +} + +.el-icon-inspur-mail-lock-line:before { + content: "\e7a2"; +} + +.el-icon-inspur-mail-open-fill:before { + content: "\e7a3"; +} + +.el-icon-inspur-mail-open-line:before { + content: "\e7a4"; +} + +.el-icon-inspur-mail-send-line:before { + content: "\e7a5"; +} + +.el-icon-inspur-mail-send-fill:before { + content: "\e7a6"; +} + +.el-icon-inspur-mail-settings-line:before { + content: "\e7a7"; +} + +.el-icon-inspur-mail-star-line:before { + content: "\e7a8"; +} + +.el-icon-inspur-mail-star-fill:before { + content: "\e7a9"; +} + +.el-icon-inspur-mail-unread-line:before { + content: "\e7aa"; +} + +.el-icon-inspur-mail-unread-fill:before { + content: "\e7ab"; +} + +.el-icon-inspur-mail-volume-line:before { + content: "\e7ac"; +} + +.el-icon-inspur-mail-settings-fill:before { + content: "\e7ad"; +} + +.el-icon-inspur-building-fill1:before { + content: "\e6b1"; +} + +.el-icon-inspur-building-line:before { + content: "\e6b2"; +} + +.el-icon-inspur-government-line:before { + content: "\e6b3"; +} + +.el-icon-inspur-government-fill:before { + content: "\e6b4"; +} + +.el-icon-inspur-home-smile-fill:before { + content: "\e6b9"; +} + +.el-icon-inspur-home-smile-line:before { + content: "\e6ba"; +} + +.el-icon-inspur-archive-drawer-fill:before { + content: "\e6be"; +} + +.el-icon-inspur-archive-line:before { + content: "\e6bf"; +} + +.el-icon-inspur-archive-drawer-line:before { + content: "\e6c0"; +} + +.el-icon-inspur-archive-fill:before { + content: "\e6c1"; +} + +.el-icon-inspur-at-fill:before { + content: "\e6c2"; +} + +.el-icon-inspur-at-line:before { + content: "\e6c3"; +} + +.el-icon-inspur-bar-chart-2-line:before { + content: "\e6c4"; +} + +.el-icon-inspur-bar-chart-fill:before { + content: "\e6c5"; +} + +.el-icon-inspur-bar-chart-horizontal-fill:before { + content: "\e6c6"; +} + +.el-icon-inspur-bar-chart-horizontal-line:before { + content: "\e6c7"; +} + +.el-icon-inspur-bubble-chart-fill:before { + content: "\e6c8"; +} + +.el-icon-inspur-bubble-chart-line:before { + content: "\e6c9"; +} + +.el-icon-inspur-contrast-2-fill:before { + content: "\e705"; +} + +.el-icon-inspur-contrast-2-line:before { + content: "\e707"; +} + +.el-icon-inspur-contrast-drop-2-fill:before { + content: "\e708"; +} + +.el-icon-inspur-contrast-drop-fill:before { + content: "\e709"; +} + +.el-icon-inspur-contrast-drop-2-line:before { + content: "\e70a"; +} + +.el-icon-inspur-contrast-drop-line:before { + content: "\e70b"; +} + +.el-icon-inspur-contrast-line:before { + content: "\e70c"; +} + +.el-icon-inspur-crop-2-fill:before { + content: "\e70d"; +} + +.el-icon-inspur-crop-fill:before { + content: "\e70e"; +} + +.el-icon-inspur-crop-line:before { + content: "\e70f"; +} + +.el-icon-inspur-crop-2-line:before { + content: "\e710"; +} + +.el-icon-inspur-drag-drop-fill:before { + content: "\e711"; +} + +.el-icon-inspur-drag-move-fill:before { + content: "\e712"; +} + +.el-icon-inspur-drag-move-line:before { + content: "\e713"; +} + +.el-icon-inspur-drop-fill:before { + content: "\e714"; +} + +.el-icon-inspur-drop-line:before { + content: "\e715"; +} + +.el-icon-inspur-drag-move-2-line:before { + content: "\e716"; +} + +.el-icon-inspur-drag-drop-line:before { + content: "\e719"; +} + +.el-icon-inspur-edit-box-fill:before { + content: "\e71a"; +} + +.el-icon-inspur-edit-box-line:before { + content: "\e71b"; +} + +.el-icon-inspur-edit-circle-fill:before { + content: "\e71c"; +} + +.el-icon-inspur-edit-circle-line:before { + content: "\e71e"; +} + +.el-icon-inspur-edit-2-fill:before { + content: "\e71f"; +} + +.el-icon-inspur-focus-2-fill:before { + content: "\e722"; +} + +.el-icon-inspur-eraser-fill:before { + content: "\e723"; +} + +.el-icon-inspur-focus-fill:before { + content: "\e730"; +} + +.el-icon-inspur-eraser-line:before { + content: "\e736"; +} + +.el-icon-inspur-focus-3-fill:before { + content: "\e738"; +} + +.el-icon-inspur-focus-2-line:before { + content: "\e739"; +} + +.el-icon-inspur-hammer-fill:before { + content: "\e741"; +} + +.el-icon-inspur-magic-fill:before { + content: "\e742"; +} + +.el-icon-inspur-magic-line:before { + content: "\e746"; +} + +.el-icon-inspur-paint-brush-fill:before { + content: "\e748"; +} + +.el-icon-inspur-paint-line:before { + content: "\e74b"; +} + +.el-icon-inspur-paint-fill:before { + content: "\e74e"; +} + +.el-icon-inspur-paint-brush-line:before { + content: "\e760"; +} + +.el-icon-inspur-pencil-ruler-fill:before { + content: "\e761"; +} + +.el-icon-inspur-pencil-ruler-line:before { + content: "\e762"; +} + +.el-icon-inspur-pencil-ruler-2-fill:before { + content: "\e763"; +} + +.el-icon-inspur-ruler-fill:before { + content: "\e764"; +} + +.el-icon-inspur-ruler-2-line:before { + content: "\e76d"; +} + +.el-icon-inspur-pencil-ruler-2-line:before { + content: "\e76e"; +} + +.el-icon-inspur-scissors-2-fill:before { + content: "\e773"; +} + +.el-icon-inspur-scissors-2-line:before { + content: "\e774"; +} + +.el-icon-inspur-scissors-cut-fill:before { + content: "\e775"; +} + +.el-icon-inspur-t-box-line:before { + content: "\e776"; +} + +.el-icon-inspur-t-box-fill:before { + content: "\e777"; +} + +.el-icon-inspur-brackets-fill:before { + content: "\e778"; +} + +.el-icon-inspur-braces-fill:before { + content: "\e779"; +} + +.el-icon-inspur-braces-line:before { + content: "\e77a"; +} + +.el-icon-inspur-brackets-line:before { + content: "\e77b"; +} + +.el-icon-inspur-bug-fill:before { + content: "\e77c"; +} + +.el-icon-inspur-database-fill1:before { + content: "\e77d"; +} + +.el-icon-inspur-database-2-line:before { + content: "\e77e"; +} + +.el-icon-inspur-database-2-fill:before { + content: "\e77f"; +} + +.el-icon-inspur-database-line:before { + content: "\e780"; +} + +.el-icon-inspur-macbook-line:before { + content: "\e781"; +} + +.el-icon-inspur-macbook-fill:before { + content: "\e782"; +} + +.el-icon-inspur-radar-line:before { + content: "\e783"; +} + +.el-icon-inspur-radar-fill:before { + content: "\e784"; +} + +.el-icon-inspur-router-line:before { + content: "\e785"; +} + +.el-icon-inspur-router-fill:before { + content: "\e786"; +} + +.el-icon-inspur-rss-line:before { + content: "\e787"; +} + +.el-icon-inspur-rss-fill:before { + content: "\e788"; +} + +.el-icon-inspur-save-fill:before { + content: "\e789"; +} + +.el-icon-inspur-save-3-line:before { + content: "\e78a"; +} + +.el-icon-inspur-save-3-fill:before { + content: "\e78b"; +} + +.el-icon-inspur-scan-fill:before { + content: "\e78c"; +} + +.el-icon-inspur-scan-line:before { + content: "\e78d"; +} + +.el-icon-inspur-sd-card-fill:before { + content: "\e78e"; +} + +.el-icon-inspur-sd-card-mini-fill:before { + content: "\e78f"; +} + +.el-icon-inspur-sd-card-mini-line:before { + content: "\e790"; +} + +.el-icon-inspur-server-line:before { + content: "\e791"; +} + +.el-icon-inspur-server-fill1:before { + content: "\e792"; +} + +.el-icon-inspur-sd-card-line:before { + content: "\e793"; +} + +.el-icon-inspur-wifi-off-fill:before { + content: "\e794"; +} + +.el-icon-inspur-wifi-fill:before { + content: "\e795"; +} + +.el-icon-inspur-book-fill:before { + content: "\e796"; +} + +.el-icon-inspur-book-line:before { + content: "\e797"; +} + +.el-icon-inspur-aliens-fill:before { + content: "\e87f"; +} + +.el-icon-inspur-aliens-line:before { + content: "\e880"; +} + +.el-icon-inspur-bear-smile-fill:before { + content: "\e881"; +} + +.el-icon-inspur-criminal-fill:before { + content: "\e882"; +} + +.el-icon-inspur-bear-smile-line:before { + content: "\e883"; +} + +.el-icon-inspur-criminal-line:before { + content: "\e884"; +} + +.el-icon-inspur-emotion-2-line:before { + content: "\e885"; +} + +.el-icon-inspur-emotion-happy-fill:before { + content: "\e886"; +} + +.el-icon-inspur-emotion-line:before { + content: "\e887"; +} + +.el-icon-inspur-emotion-fill:before { + content: "\e888"; +} + +.el-icon-inspur-emotion-laugh-line:before { + content: "\e889"; +} + +.el-icon-inspur-emotion-laugh-fill:before { + content: "\e88a"; +} + +.el-icon-inspur-emotion-normal-line:before { + content: "\e88b"; +} + +.el-icon-inspur-emotion-happy-line:before { + content: "\e88c"; +} + +.el-icon-inspur-emotion-normal-fill:before { + content: "\e88d"; +} + +.el-icon-inspur-emotion-sad-fill:before { + content: "\e88e"; +} + +.el-icon-inspur-ghost-2-fill:before { + content: "\e88f"; +} + +.el-icon-inspur-ghost-smile-fill:before { + content: "\e890"; +} + +.el-icon-inspur-ghost-fill:before { + content: "\e891"; +} + +.el-icon-inspur-emotion-unhappy-line:before { + content: "\e892"; +} + +.el-icon-inspur-ghost-line:before { + content: "\e893"; +} + +.el-icon-inspur-ghost-2-line:before { + content: "\e894"; +} + +.el-icon-inspur-emotion-2-fill:before { + content: "\e895"; +} + +.el-icon-inspur-emotion-sad-line:before { + content: "\e896"; +} + +.el-icon-inspur-emotion-unhappy-fill:before { + content: "\e897"; +} + +.el-icon-inspur-skull-fill:before { + content: "\e898"; +} + +.el-icon-inspur-star-smile-fill:before { + content: "\e899"; +} + +.el-icon-inspur-cloud-line:before { + content: "\e6cc"; +} + +.el-icon-inspur-cloud-off-fill:before { + content: "\e6cd"; +} + +.el-icon-inspur-copyleft-line:before { + content: "\e6ce"; +} + +.el-icon-inspur-copyleft-fill:before { + content: "\e6cf"; +} + +.el-icon-inspur-copyright-fill:before { + content: "\e6d0"; +} + +.el-icon-inspur-cloud-off-line:before { + content: "\e6d1"; +} + +.el-icon-inspur-creative-commons-by-line:before { + content: "\e6d2"; +} + +.el-icon-inspur-copyright-line:before { + content: "\e6d3"; +} + +.el-icon-inspur-creative-commons-fill:before { + content: "\e6d4"; +} + +.el-icon-inspur-creative-commons-nc-line:before { + content: "\e6e7"; +} + +.el-icon-inspur-creative-commons-nd-fill:before { + content: "\e6e9"; +} + +.el-icon-inspur-creative-commons-by-fill:before { + content: "\e6ea"; +} + +.el-icon-inspur-creative-commons-line:before { + content: "\e6eb"; +} + +.el-icon-inspur-creative-commons-nc-fill:before { + content: "\e6ec"; +} + +.el-icon-inspur-creative-commons-zero-fill:before { + content: "\e6ed"; +} + +.el-icon-inspur-creative-commons-sa-line:before { + content: "\e6ee"; +} + +.el-icon-inspur-creative-commons-zero-line:before { + content: "\e6ef"; +} + +.el-icon-inspur-creative-commons-nd-line:before { + content: "\e6f0"; +} + +.el-icon-inspur-customer-service-2-line:before { + content: "\e6f1"; +} + +.el-icon-inspur-customer-service-fill:before { + content: "\e6f2"; +} + +.el-icon-inspur-flag-2-fill:before { + content: "\e6f3"; +} + +.el-icon-inspur-customer-service-line:before { + content: "\e6f4"; +} + +.el-icon-inspur-flag-fill:before { + content: "\e6f5"; +} + +.el-icon-inspur-flag-2-line:before { + content: "\e6f6"; +} + +.el-icon-inspur-customer-service-2-fill:before { + content: "\e6f7"; +} + +.el-icon-inspur-donut-chart-line:before { + content: "\e6f8"; +} + +.el-icon-inspur-donut-chart-fill:before { + content: "\e6f9"; +} + +.el-icon-inspur-global-fill:before { + content: "\e6fa"; +} + +.el-icon-inspur-honour-line:before { + content: "\e6fb"; +} + +.el-icon-inspur-honour-fill:before { + content: "\e6fc"; +} + +.el-icon-inspur-inbox-archive-line:before { + content: "\e6fd"; +} + +.el-icon-inspur-global-line:before { + content: "\e6fe"; +} + +.el-icon-inspur-inbox-archive-fill:before { + content: "\e6ff"; +} + +.el-icon-inspur-inbox-unarchive-fill:before { + content: "\e702"; +} + +.el-icon-inspur-inbox-unarchive-line:before { + content: "\e703"; +} + +.el-icon-inspur-send-mail:before { + content: "\f041"; +} + +.el-icon-inspur-hammer:before { + content: "\f042"; +} + +.el-icon-inspur-expert:before { + content: "\f043"; +} + +.el-icon-inspur-asset-menu:before { + content: "\f044"; +} + +.el-icon-inspur-pen:before { + content: "\f03a"; +} + +.el-icon-inspur-diamond:before { + content: "\f03b"; +} + +.el-icon-inspur-read:before { + content: "\f03e"; +} + +.el-icon-inspur-report:before { + content: "\f03f"; +} + +.el-icon-inspur-convention:before { + content: "\f040"; +} + +.el-icon-inspur-safety-certificate-fill:before { + content: "\f033"; +} + +.el-icon-inspur-trend:before { + content: "\f034"; +} + +.el-icon-inspur-property:before { + content: "\f035"; +} + +.el-icon-inspur-secret-key:before { + content: "\f036"; +} + +.el-icon-inspur-agreement:before { + content: "\f037"; +} + +.el-icon-inspur-agreement-normal:before { + content: "\f038"; +} + +.el-icon-inspur-agreement-eye:before { + content: "\f039"; +} + +.el-icon-inspur-renovate:before { + content: "\f031"; +} + +.el-icon-inspur-laptop-renovate-fill:before { + content: "\f032"; +} + +.el-icon-inspur-spot:before { + content: "\f02e"; +} + +.el-icon-inspur-big-spot:before { + content: "\f02f"; +} + +.el-icon-inspur-screen:before { + content: "\f030"; +} + +.el-icon-inspur-nfs:before { + content: "\f02c"; +} + +.el-icon-inspur-NVDIA:before { + content: "\f02b"; +} + +.el-icon-inspur-memory1:before { + content: "\f02a"; +} + +.el-icon-inspur-favorites:before { + content: "\e633"; +} + +.el-icon-inspur-favorites-fill:before { + content: "\e634"; +} + +.el-icon-inspur-license:before { + content: "\f029"; +} + +.el-icon-inspur-homework:before { + content: "\f028"; +} + +.el-icon-inspur-journal:before { + content: "\f026"; +} + +.el-icon-inspur-refresh:before { + content: "\e67f"; +} + +.el-icon-inspur-mirror-image:before { + content: "\f022"; +} + +.el-icon-inspur-firmware-up:before { + content: "\f023"; +} + +.el-icon-inspur-repair:before { + content: "\f024"; +} + +.el-icon-inspur-firmware-cog:before { + content: "\f025"; +} + +.el-icon-inspur-arrowdown-s:before { + content: "\f00c"; +} + +.el-icon-inspur-arrowup-s:before { + content: "\f00f"; +} + +.el-icon-inspur-arrowright-s:before { + content: "\f010"; +} + +.el-icon-inspur-arrowleft-s:before { + content: "\f011"; +} + +.el-icon-inspur-point-down:before { + content: "\f00e"; +} + +.el-icon-inspur-point-right:before { + content: "\f012"; +} + +.el-icon-inspur-point-left:before { + content: "\f013"; +} + +.el-icon-inspur-point-up:before { + content: "\f021"; +} + +.el-icon-inspur-look:before { + content: "\f020"; +} + +.el-icon-inspur-monitor:before { + content: "\f01e"; +} + +.el-icon-inspur-monitor-fill:before { + content: "\f01f"; +} + +.el-icon-inspur-edit-circle:before { + content: "\f01d"; +} + +.el-icon-inspur-temperature:before { + content: "\f01c"; +} + +.el-icon-inspur-supervise:before { + content: "\f01a"; +} + +.el-icon-inspur-safety-certificate:before { + content: "\f01b"; +} + +.el-icon-inspur-network-fill:before { + content: "\f018"; +} + +.el-icon-inspur-network:before { + content: "\f019"; +} + +.el-icon-inspur-memory:before { + content: "\f016"; +} + +.el-icon-inspur-memory-fill:before { + content: "\f017"; +} + +.el-icon-inspur-store-fill:before { + content: "\f014"; +} + +.el-icon-inspur-store:before { + content: "\f015"; +} + +.el-icon-inspur-time:before { + content: "\f00d"; +} + +.el-icon-inspur-task-fill:before { + content: "\f000"; +} + +.el-icon-inspur-task:before { + content: "\f003"; +} + +.el-icon-inspur-shielding-fill:before { + content: "\f009"; +} + +.el-icon-inspur-shielding:before { + content: "\f00a"; +} + +.el-icon-inspur-lock-fill:before { + content: "\f006"; +} + +.el-icon-inspur-lock:before { + content: "\f007"; +} + +.el-icon-inspur-workbench-fill:before { + content: "\f004"; +} + +.el-icon-inspur-workbench:before { + content: "\f005"; +} + +.el-icon-inspur-tasklist_fill:before { + content: "\f001"; +} + +.el-icon-inspur-tasklist:before { + content: "\f002"; +} + +.el-icon-inspur-undo:before { + content: "\efff"; +} + +.el-icon-inspur-undo-right:before { + content: "\f008"; +} + +.el-icon-inspur-accessory:before { + content: "\f00b"; +} + +.el-icon-inspur-document:before { + content: "\eff5"; +} + +.el-icon-inspur-document-fill:before { + content: "\eff6"; +} + +.el-icon-inspur-group:before { + content: "\eff7"; +} + +.el-icon-inspur-people:before { + content: "\eff8"; +} + +.el-icon-inspur-group-fill:before { + content: "\eff9"; +} + +.el-icon-inspur-people-fill:before { + content: "\effa"; +} + +.el-icon-inspur-unlock-fill:before { + content: "\effb"; +} + +.el-icon-inspur-smallscreen-fill:before { + content: "\effc"; +} + +.el-icon-inspur-unlock:before { + content: "\effd"; +} + +.el-icon-inspur-smallscreen:before { + content: "\effe"; +} + +.el-icon-inspur-addressbook-fill:before { + content: "\efed"; +} + +.el-icon-inspur-addpeople-fill:before { + content: "\efee"; +} + +.el-icon-inspur-addressbook:before { + content: "\efef"; +} + +.el-icon-inspur-createtask:before { + content: "\eff0"; +} + +.el-icon-inspur-addpeople:before { + content: "\eff2"; +} + +.el-icon-inspur-createtask-fill:before { + content: "\eff3"; +} + +.el-icon-inspur-quit:before { + content: "\efec"; +} + +.el-icon-inspur-delete:before { + content: "\efea"; +} + +.el-icon-inspur-delete-fill:before { + content: "\efeb"; +} + +.el-icon-inspur-empty:before { + content: "\efe9"; +} + +.el-icon-inspur-search:before { + content: "\efe8"; +} + +.el-icon-inspur-laptop-check-fill:before { + content: "\efdf"; +} + +.el-icon-inspur-laptop-error-fill:before { + content: "\efe0"; +} + +.el-icon-inspur-information-fill:before { + content: "\efe1"; +} + +.el-icon-inspur-statistics-fill:before { + content: "\efe2"; +} + +.el-icon-inspur-displayarrow-left-fill:before { + content: "\efe3"; +} + +.el-icon-inspur-system-manage-fill:before { + content: "\efe4"; +} + +.el-icon-inspur-displayarrow-right-fill:before { + content: "\efe5"; +} + +.el-icon-inspur-operation-manage-fill:before { + content: "\efe6"; +} + +.el-icon-inspur-display-code-fill:before { + content: "\efe7"; +} + +.el-icon-inspur-unhealth-fill:before { + content: "\efdb"; +} + +.el-icon-inspur-health:before { + content: "\efdc"; +} + +.el-icon-inspur-unhealth:before { + content: "\efdd"; +} + +.el-icon-inspur-health-fill:before { + content: "\efde"; +} + +.el-icon-inspur-hot:before { + content: "\efd9"; +} + +.el-icon-inspur-hot-fill:before { + content: "\efda"; +} + +.el-icon-inspur-3D:before { + content: "\efd7"; +} + +.el-icon-inspur-24px-3D:before { + content: "\efd8"; +} + +.el-icon-inspur-plug-circle:before { + content: "\efd5"; +} + +.el-icon-inspur-plug:before { + content: "\efd6"; +} + +.el-icon-inspur-table-condition-fill:before { + content: "\efcf"; +} + +.el-icon-inspur-table-condition:before { + content: "\efd4"; +} + +.el-icon-inspur-exchange-fill:before { + content: "\efc7"; +} + +.el-icon-inspur-exchange:before { + content: "\efce"; +} + +.el-icon-inspur-question-circle-fill:before { + content: "\efc0"; +} + +.el-icon-inspur-question-circle:before { + content: "\efc1"; +} + +.el-icon-inspur-table-fire:before { + content: "\efc2"; +} + +.el-icon-inspur-table-fire-fill:before { + content: "\efc3"; +} + +.el-icon-inspur-table-imperative-fill:before { + content: "\efc4"; +} + +.el-icon-inspur-table-lightning:before { + content: "\efc5"; +} + +.el-icon-inspur-table-water:before { + content: "\efc8"; +} + +.el-icon-inspur-table-imperative:before { + content: "\efc9"; +} + +.el-icon-inspur-table-lightning-fill:before { + content: "\efca"; +} + +.el-icon-inspur-waiting-fill:before { + content: "\efcb"; +} + +.el-icon-inspur-waiting:before { + content: "\efcc"; +} + +.el-icon-inspur-table-water-fill:before { + content: "\efcd"; +} + +.el-icon-inspur-exclamation-circle:before { + content: "\efd0"; +} + +.el-icon-inspur-info-circle-fill:before { + content: "\efd1"; +} + +.el-icon-inspur-info-circle:before { + content: "\efd2"; +} + +.el-icon-inspur-exclamationcircle-f:before { + content: "\efd3"; +} + +.el-icon-inspur-clour:before { + content: "\efbd"; +} + +.el-icon-inspur-table-no:before { + content: "\efbe"; +} + +.el-icon-inspur-table-yes:before { + content: "\efbf"; +} + +.el-icon-inspur-setup:before { + content: "\efbb"; +} + +.el-icon-inspur-setup-fill:before { + content: "\efbc"; +} + +.el-icon-inspur-building-fill:before { + content: "\efb9"; +} + +.el-icon-inspur-building:before { + content: "\efba"; +} + +.el-icon-inspur-firewall:before { + content: "\efb8"; +} + +.el-icon-inspur-details-firewall:before { + content: "\efb6"; +} + +.el-icon-inspur-details-cutte:before { + content: "\efb7"; +} + +.el-icon-inspur-details-rack:before { + content: "\efb4"; +} + +.el-icon-inspur-details-server:before { + content: "\efb5"; +} + +.el-icon-inspur-remote-desktop:before { + content: "\efb2"; +} + +.el-icon-inspur-monitor-screenshot:before { + content: "\efb3"; +} + +.el-icon-inspur-terminal:before { + content: "\efb0"; +} + +.el-icon-inspur-terminal-fill:before { + content: "\efb1"; +} + +.el-icon-inspur-right-arrow-rect:before { + content: "\efae"; +} + +.el-icon-inspur-left-arrow-rect:before { + content: "\efaf"; +} + +.el-icon-inspur-share:before { + content: "\efac"; +} + +.el-icon-inspur-reply:before { + content: "\efad"; +} + +.el-icon-inspur-server-fill:before { + content: "\efaa"; +} + +.el-icon-inspur-server:before { + content: "\efab"; +} + +.el-icon-inspur-map:before { + content: "\efa5"; +} + +.el-icon-inspur-map-plus:before { + content: "\efa6"; +} + +.el-icon-inspur-map-outline:before { + content: "\efa7"; +} + +.el-icon-inspur-map-search:before { + content: "\efa8"; +} + +.el-icon-inspur-map-minus:before { + content: "\efa9"; +} + +.el-icon-inspur-cloud-machine-fill:before { + content: "\ef9f"; +} + +.el-icon-inspur-database-plus:before { + content: "\efa0"; +} + +.el-icon-inspur-database-fill:before { + content: "\efa1"; +} + +.el-icon-inspur-databaseplus-fill:before { + content: "\efa2"; +} + +.el-icon-inspur-database:before { + content: "\efa3"; +} + +.el-icon-inspur-cloud-machine:before { + content: "\efa4"; +} + +.el-icon-inspur-playcircle-fill:before { + content: "\ef99"; +} + +.el-icon-inspur-stopcircle-fill:before { + content: "\ef9a"; +} + +.el-icon-inspur-pausecircle-fill:before { + content: "\ef9b"; +} + +.el-icon-inspur-stopcircle:before { + content: "\ef9c"; +} + +.el-icon-inspur-playcircle:before { + content: "\ef9d"; +} + +.el-icon-inspur-pausecircle:before { + content: "\ef9e"; +} + +.el-icon-inspur-train-fill:before { + content: "\ef97"; +} + +.el-icon-inspur-train:before { + content: "\ef98"; +} + +.el-icon-inspur-file-done:before { + content: "\e655"; +} + +.el-icon-inspur-file-fill:before { + content: "\e656"; +} + +.el-icon-inspur-file-exclamation-fill:before { + content: "\e657"; +} + +.el-icon-inspur-file-exception:before { + content: "\e658"; +} + +.el-icon-inspur-file-exclamation:before { + content: "\e659"; +} + +.el-icon-inspur-file-exl-fill:before { + content: "\e65a"; +} + +.el-icon-inspur-file-excel:before { + content: "\e65b"; +} + +.el-icon-inspur-file-image-fill:before { + content: "\e65c"; +} + +.el-icon-inspur-file-excel-fill:before { + content: "\e65d"; +} + +.el-icon-inspur-file-image:before { + content: "\e65e"; +} + +.el-icon-inspur-file-markdown:before { + content: "\e65f"; +} + +.el-icon-inspur-file-pdf2:before { + content: "\e660"; +} + +.el-icon-inspur-file-markdown-fill:before { + content: "\e661"; +} + +.el-icon-inspur-file-gif-fill:before { + content: "\e662"; +} + +.el-icon-inspur-file-jpge-fill:before { + content: "\e663"; +} + +.el-icon-inspur-file-pdf-fill:before { + content: "\e664"; +} + +.el-icon-inspur-file-pdf2-fill:before { + content: "\e665"; +} + +.el-icon-inspur-file-png-fill:before { + content: "\e666"; +} + +.el-icon-inspur-file-ppt:before { + content: "\e667"; +} + +.el-icon-inspur-file-ppt-fill:before { + content: "\e668"; +} + +.el-icon-inspur-file-sync:before { + content: "\e669"; +} + +.el-icon-inspur-file-protect:before { + content: "\e66a"; +} + +.el-icon-inspur-file-text:before { + content: "\e66b"; +} + +.el-icon-inspur-file-search:before { + content: "\e66c"; +} + +.el-icon-inspur-file-text-fill:before { + content: "\e66d"; +} + +.el-icon-inspur-file-tif-fill:before { + content: "\e66e"; +} + +.el-icon-inspur-file-unknown-fill:before { + content: "\e66f"; +} + +.el-icon-inspur-file-unknown:before { + content: "\e670"; +} + +.el-icon-inspur-file-txt-fill:before { + content: "\e671"; +} + +.el-icon-inspur-file-word-fill:before { + content: "\e672"; +} + +.el-icon-inspur-file-word:before { + content: "\e673"; +} + +.el-icon-inspur-file-zip2:before { + content: "\e674"; +} + +.el-icon-inspur-file-zip-fill:before { + content: "\e675"; +} + +.el-icon-inspur-file-zip2-fill:before { + content: "\e676"; +} + +.el-icon-inspur-file-xlsx-fill:before { + content: "\e677"; +} + +.el-icon-inspur-file-add:before { + content: "\e678"; +} + +.el-icon-inspur-file:before { + content: "\e679"; +} + +.el-icon-inspur-file-add-fill:before { + content: "\e67a"; +} + +.el-icon-inspur-file-bmp-fill:before { + content: "\e67b"; +} + +.el-icon-inspur-file-copy:before { + content: "\e67c"; +} + +.el-icon-inspur-file-copy-fill:before { + content: "\e67d"; +} + +.el-icon-inspur-file-doc-fill:before { + content: "\e67e"; +} + +.el-icon-inspur-radio-fill:before { + content: "\e6e5"; +} + +.el-icon-inspur-checked-fill:before { + content: "\e6e8"; +} + +.el-icon-inspur-radio-unchecked:before { + content: "\e6dd"; +} + +.el-icon-inspur-radio:before { + content: "\e6df"; +} + +.el-icon-inspur-collect-hba:before { + content: "\ef8c"; +} + +.el-icon-inspur-collect-raid:before { + content: "\ef8d"; +} + +.el-icon-inspur-collect-adapter:before { + content: "\ef8e"; +} + +.el-icon-inspur-GPU:before { + content: "\ef8f"; +} + +.el-icon-inspur-CPU:before { + content: "\ef90"; +} + +.el-icon-inspur-tag:before { + content: "\e75a"; +} + +.el-icon-inspur-tags:before { + content: "\e75c"; +} + +.el-icon-inspur-tag-fill:before { + content: "\e75e"; +} + +.el-icon-inspur-tags-fill:before { + content: "\e75f"; +} + +.el-icon-inspur-filter:before { + content: "\e72d"; +} + +.el-icon-inspur-filter-fill:before { + content: "\e72e"; +} + +.el-icon-inspur-copy-fill:before { + content: "\ef88"; +} + +.el-icon-inspur-copy:before { + content: "\ef89"; +} + +.el-icon-inspur-batch-folding-fill:before { + content: "\e6da"; +} + +.el-icon-inspur-batch-folding:before { + content: "\e6db"; +} + +.el-icon-inspur-minus-circle:before { + content: "\e6e1"; +} + +.el-icon-inspur-minus-circle-fill:before { + content: "\e6e2"; +} + +.el-icon-inspur-minus-square-fill:before { + content: "\e6e3"; +} + +.el-icon-inspur-minus-square:before { + content: "\e6e4"; +} + +.el-icon-inspur-plus-circle-fill:before { + content: "\e6d5"; +} + +.el-icon-inspur-plus-circle:before { + content: "\e6d6"; +} + +.el-icon-inspur-plus-square-fill:before { + content: "\e6d7"; +} + +.el-icon-inspur-plus-square:before { + content: "\e6d8"; +} + +.el-icon-inspur-networks:before { + content: "\ef87"; +} + +.el-icon-inspur-log-off:before { + content: "\ef85"; +} + +.el-icon-inspur-import:before { + content: "\ef86"; +} + +.el-icon-inspur-menu-indent:before { + content: "\e75b"; +} + +.el-icon-inspur-menu-outdent:before { + content: "\e75d"; +} + +.el-icon-inspur-chinese:before { + content: "\e706"; +} + +.el-icon-inspur-english:before { + content: "\e71d"; +} + +.el-icon-inspur-api:before { + content: "\e768"; +} + +.el-icon-inspur-api-fill:before { + content: "\e76c"; +} + +.el-icon-inspur-node-fill:before { + content: "\ef83"; +} + +.el-icon-inspur-node:before { + content: "\ef84"; +} + +.el-icon-inspur-password-show-fill:before { + content: "\e76f"; +} + +.el-icon-inspur-password-hide:before { + content: "\e770"; +} + +.el-icon-inspur-password-show:before { + content: "\e771"; +} + +.el-icon-inspur-password-hide-fill:before { + content: "\e772"; +} + +.el-icon-inspur-tasks-fill:before { + content: "\ef81"; +} + +.el-icon-inspur-tasks:before { + content: "\ef82"; +} + +.el-icon-inspur-monitoring:before { + content: "\ef7f"; +} + +.el-icon-inspur-operation-analysis:before { + content: "\ef80"; +} + +.el-icon-inspur-chat-group-fill:before { + content: "\ef7d"; +} + +.el-icon-inspur-chat-group:before { + content: "\ef7e"; +} + +.el-icon-inspur-more:before { + content: "\ef79"; +} + +.el-icon-inspur-gallery-view:before { + content: "\ef7a"; +} + +.el-icon-inspur-all-fill:before { + content: "\ef7b"; +} + +.el-icon-inspur-all:before { + content: "\ef7c"; +} + +.el-icon-inspur-laptop-check:before { + content: "\ef74"; +} + +.el-icon-inspur-display-arrow-left:before { + content: "\ef75"; +} + +.el-icon-inspur-display-code:before { + content: "\ef76"; +} + +.el-icon-inspur-display-arrow-right:before { + content: "\ef77"; +} + +.el-icon-inspur-laptop-error:before { + content: "\ef78"; +} + +.el-icon-inspur-laptop:before { + content: "\ef6f"; +} + +.el-icon-inspur-operation-manage:before { + content: "\ef70"; +} + +.el-icon-inspur-system-manage:before { + content: "\ef71"; +} + +.el-icon-inspur-statistics:before { + content: "\ef72"; +} + +.el-icon-inspur-information:before { + content: "\ef73"; +} + +.el-icon-inspur-cloud-fill:before { + content: "\e72a"; +} + +.el-icon-inspur-cloud-download:before { + content: "\e725"; +} + +.el-icon-inspur-cloud-sync:before { + content: "\e726"; +} + +.el-icon-inspur-cloud-server:before { + content: "\e727"; +} + +.el-icon-inspur-cloud-upload:before { + content: "\e729"; +} + +.el-icon-inspur-cloud:before { + content: "\ef6e"; +} + +.el-icon-inspur-bulb-fill:before { + content: "\e717"; +} + +.el-icon-inspur-bulb:before { + content: "\e718"; +} + +.el-icon-inspur-chat:before { + content: "\e720"; +} + +.el-icon-inspur-chat-fill:before { + content: "\e721"; +} + +.el-icon-inspur-dashboard:before { + content: "\e72b"; +} + +.el-icon-inspur-dashboard-fill:before { + content: "\e72c"; +} + +.el-icon-inspur-message:before { + content: "\e73a"; +} + +.el-icon-inspur-message-fill:before { + content: "\e73b"; +} + +.el-icon-inspur-home-fill:before { + content: "\e72f"; +} + +.el-icon-inspur-home:before { + content: "\e731"; +} + +.el-icon-inspur-integral-fill:before { + content: "\e732"; +} + +.el-icon-inspur-integral:before { + content: "\e733"; +} + +.el-icon-inspur-map-address:before { + content: "\e734"; +} + +.el-icon-inspur-map-location-fill:before { + content: "\e735"; +} + +.el-icon-inspur-map-location:before { + content: "\e737"; +} + +.el-icon-inspur-notice:before { + content: "\e73c"; +} + +.el-icon-inspur-notice-bell-fill:before { + content: "\e73d"; +} + +.el-icon-inspur-notice-bell-mute:before { + content: "\e73e"; +} + +.el-icon-inspur-notice-mute-fill:before { + content: "\e73f"; +} + +.el-icon-inspur-notice-mute:before { + content: "\e740"; +} + +.el-icon-inspur-rocket-fill:before { + content: "\e743"; +} + +.el-icon-inspur-rocket:before { + content: "\e744"; +} + +.el-icon-inspur-search-category:before { + content: "\e758"; +} + +.el-icon-inspur-search-category-fill:before { + content: "\e759"; +} + +.el-icon-inspur-snippets-fill:before { + content: "\e756"; +} + +.el-icon-inspur-snippets:before { + content: "\e757"; +} + +.el-icon-inspur-user-group:before { + content: "\e765"; +} + +.el-icon-inspur-apartment-fill:before { + content: "\e766"; +} + +.el-icon-inspur-apartment:before { + content: "\e767"; +} + +.el-icon-inspur-user-group-add:before { + content: "\e769"; +} + +.el-icon-inspur-user-group-delete:before { + content: "\e76a"; +} + +.el-icon-inspur-user-group-follow:before { + content: "\e76b"; +} + +.el-icon-inspur-sound:before { + content: "\e74c"; +} + +.el-icon-inspur-sound-fill:before { + content: "\e74d"; +} + +.el-icon-inspur-sound-mute:before { + content: "\e754"; +} + +.el-icon-inspur-sound-mute-fill:before { + content: "\e755"; +} + +.el-icon-inspur-star-circle:before { + content: "\e74f"; +} + +.el-icon-inspur-star-collection:before { + content: "\e750"; +} + +.el-icon-inspur-star-collection-half:before { + content: "\e751"; +} + +.el-icon-inspur-star-fill:before { + content: "\e752"; +} + +.el-icon-inspur-star-empty:before { + content: "\e753"; +} + +.el-icon-inspur-calendar-fill:before { + content: "\ef67"; +} + +.el-icon-inspur-calendar:before { + content: "\ef68"; +} + +.el-icon-inspur-chart-pie-fill:before { + content: "\ef65"; +} + +.el-icon-inspur-chart-pie:before { + content: "\ef66"; +} + +.el-icon-inspur-chart-area:before { + content: "\ef69"; +} + +.el-icon-inspur-chart-line:before { + content: "\ef6a"; +} + +.el-icon-inspur-chart-radar:before { + content: "\ef6b"; +} + +.el-icon-inspur-chart-bar:before { + content: "\ef6c"; +} + +.el-icon-inspur-chart-pointmap:before { + content: "\ef6d"; +} + +.el-icon-inspur-up-f:before { + content: "\ef61"; +} + +.el-icon-inspur-down-f:before { + content: "\ef62"; +} + +.el-icon-inspur-left-f:before { + content: "\ef63"; +} + +.el-icon-inspur-right-f:before { + content: "\ef64"; +} + +.el-icon-inspur-arrowdown:before { + content: "\e745"; +} + +.el-icon-inspur-arrowright:before { + content: "\e747"; +} + +.el-icon-inspur-arrowup:before { + content: "\e749"; +} + +.el-icon-inspur-arrowleft:before { + content: "\e74a"; +} + +.el-icon-inspur-down:before { + content: "\e6a2"; +} + +.el-icon-inspur-up:before { + content: "\e6a3"; +} + +.el-icon-inspur-right:before { + content: "\e6a4"; +} + +.el-icon-inspur-left:before { + content: "\e6af"; +} + diff --git a/InManageBoot-ui/public/font/iconfont.js b/InManageBoot-ui/public/font/iconfont.js new file mode 100644 index 0000000000000000000000000000000000000000..1ba4bd4988535cd83ce0edfec207a88e1ed59f98 --- /dev/null +++ b/InManageBoot-ui/public/font/iconfont.js @@ -0,0 +1 @@ +!function(l){var h,a,i,c,v,o='',s=(s=document.getElementsByTagName("script"))[s.length-1].getAttribute("data-injectcss"),m=function(l,h){h.parentNode.insertBefore(l,h)};if(s&&!l.__iconfont__svg__cssinject__){l.__iconfont__svg__cssinject__=!0;try{document.write("")}catch(l){console&&console.log(l)}}function p(){v||(v=!0,i())}function z(){try{c.documentElement.doScroll("left")}catch(l){return void setTimeout(z,50)}p()}h=function(){var l,h;(h=document.createElement("div")).innerHTML=o,o=null,(l=h.getElementsByTagName("svg")[0])&&(l.setAttribute("aria-hidden","true"),l.style.position="absolute",l.style.width=0,l.style.height=0,l.style.overflow="hidden",h=l,(l=document.body).firstChild?m(h,l.firstChild):l.appendChild(h))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(h,0):(a=function(){document.removeEventListener("DOMContentLoaded",a,!1),h()},document.addEventListener("DOMContentLoaded",a,!1)):document.attachEvent&&(i=h,c=l.document,v=!1,z(),c.onreadystatechange=function(){"complete"==c.readyState&&(c.onreadystatechange=null,p())})}(window); \ No newline at end of file diff --git a/InManageBoot-ui/public/font/iconfont.json b/InManageBoot-ui/public/font/iconfont.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0da29d0c1f9bad28b2105d40d214597c542445 --- /dev/null +++ b/InManageBoot-ui/public/font/iconfont.json @@ -0,0 +1,9053 @@ +{ + "id": "1996284", + "name": "(新)ued2.0图标库", + "font_family": "iconfont", + "css_prefix_text": "el-icon-inspur-", + "description": "", + "glyphs": [ + { + "icon_id": "26159826", + "name": "wall", + "font_class": "wall", + "unicode": "e626", + "unicode_decimal": 58918 + }, + { + "icon_id": "26159827", + "name": "organization-fill", + "font_class": "organization-fill", + "unicode": "e627", + "unicode_decimal": 58919 + }, + { + "icon_id": "26159828", + "name": "machine-room", + "font_class": "machine-room", + "unicode": "e628", + "unicode_decimal": 58920 + }, + { + "icon_id": "26159829", + "name": "load-balancing", + "font_class": "load-balancing", + "unicode": "e629", + "unicode_decimal": 58921 + }, + { + "icon_id": "17104664", + "name": "pause-mini-line", + "font_class": "pause-mini-line", + "unicode": "ea4c", + "unicode_decimal": 59980 + }, + { + "icon_id": "17104682", + "name": "play-mini-fill", + "font_class": "play-mini-fill", + "unicode": "ea4d", + "unicode_decimal": 59981 + }, + { + "icon_id": "24341424", + "name": "constitute-fill", + "font_class": "constitute-fill", + "unicode": "ea42", + "unicode_decimal": 59970 + }, + { + "icon_id": "24341504", + "name": "double right-fill", + "font_class": "a-doubleright-fill", + "unicode": "ea43", + "unicode_decimal": 59971 + }, + { + "icon_id": "24341505", + "name": "double right line-line", + "font_class": "a-doublerightline-line", + "unicode": "ea44", + "unicode_decimal": 59972 + }, + { + "icon_id": "24341510", + "name": "double left line-line", + "font_class": "a-doubleleftline-line", + "unicode": "ea45", + "unicode_decimal": 59973 + }, + { + "icon_id": "24341512", + "name": "double left-fill", + "font_class": "a-doubleleft-fill", + "unicode": "ea46", + "unicode_decimal": 59974 + }, + { + "icon_id": "24341867", + "name": "left-line", + "font_class": "left-line", + "unicode": "ea47", + "unicode_decimal": 59975 + }, + { + "icon_id": "24341933", + "name": "left-fill", + "font_class": "left-fill", + "unicode": "ea48", + "unicode_decimal": 59976 + }, + { + "icon_id": "24342229", + "name": "right-line", + "font_class": "right-line", + "unicode": "ea49", + "unicode_decimal": 59977 + }, + { + "icon_id": "24342231", + "name": "right-fill", + "font_class": "right-fill", + "unicode": "ea4a", + "unicode_decimal": 59978 + }, + { + "icon_id": "24387838", + "name": "security-setting", + "font_class": "security-setting", + "unicode": "e623", + "unicode_decimal": 58915 + }, + { + "icon_id": "24387839", + "name": "raid", + "font_class": "raid", + "unicode": "e624", + "unicode_decimal": 58916 + }, + { + "icon_id": "24387840", + "name": "alarm-setting", + "font_class": "alarm-setting", + "unicode": "e625", + "unicode_decimal": 58917 + }, + { + "icon_id": "17103786", + "name": "node-tree", + "font_class": "node-tree", + "unicode": "ea3e", + "unicode_decimal": 59966 + }, + { + "icon_id": "17103788", + "name": "mind-map", + "font_class": "mind-map", + "unicode": "ea3f", + "unicode_decimal": 59967 + }, + { + "icon_id": "17103798", + "name": "organization-chart", + "font_class": "organization-chart", + "unicode": "ea40", + "unicode_decimal": 59968 + }, + { + "icon_id": "17103805", + "name": "send-to-back", + "font_class": "send-to-back", + "unicode": "ea41", + "unicode_decimal": 59969 + }, + { + "icon_id": "19654974", + "name": "tree", + "font_class": "tree", + "unicode": "e6ac", + "unicode_decimal": 59052 + }, + { + "icon_id": "24068145", + "name": "4G", + "font_class": "a-4G", + "unicode": "e61e", + "unicode_decimal": 58910 + }, + { + "icon_id": "24068146", + "name": "5g", + "font_class": "a-5g", + "unicode": "e61f", + "unicode_decimal": 58911 + }, + { + "icon_id": "24068147", + "name": "2G", + "font_class": "a-2G", + "unicode": "e620", + "unicode_decimal": 58912 + }, + { + "icon_id": "24068148", + "name": "3G", + "font_class": "a-3G", + "unicode": "e622", + "unicode_decimal": 58914 + }, + { + "icon_id": "24067994", + "name": "signal", + "font_class": "signal", + "unicode": "e621", + "unicode_decimal": 58913 + }, + { + "icon_id": "17103584", + "name": "file-user-fill", + "font_class": "file-user-fill", + "unicode": "ea3c", + "unicode_decimal": 59964 + }, + { + "icon_id": "17103585", + "name": "file-user-line", + "font_class": "file-user-line", + "unicode": "ea3d", + "unicode_decimal": 59965 + }, + { + "icon_id": "17105099", + "name": "settings-3-line", + "font_class": "settings-3-line", + "unicode": "ea3a", + "unicode_decimal": 59962 + }, + { + "icon_id": "17105104", + "name": "settings-5-fill", + "font_class": "settings-5-fill", + "unicode": "ea3b", + "unicode_decimal": 59963 + }, + { + "icon_id": "17103500", + "name": "draft-fill", + "font_class": "draft-fill", + "unicode": "ea37", + "unicode_decimal": 59959 + }, + { + "icon_id": "17103502", + "name": "draft-line", + "font_class": "draft-line", + "unicode": "ea38", + "unicode_decimal": 59960 + }, + { + "icon_id": "17104990", + "name": "error-warning-fill", + "font_class": "error-warning-fill", + "unicode": "ea39", + "unicode_decimal": 59961 + }, + { + "icon_id": "17103311", + "name": "battery-charge-fill", + "font_class": "battery-charge-fill", + "unicode": "e9d3", + "unicode_decimal": 59859 + }, + { + "icon_id": "17103312", + "name": "battery-charge-line", + "font_class": "battery-charge-line", + "unicode": "e9d4", + "unicode_decimal": 59860 + }, + { + "icon_id": "17103351", + "name": "fingerprint-2-fill", + "font_class": "fingerprint-2-fill", + "unicode": "e9d5", + "unicode_decimal": 59861 + }, + { + "icon_id": "17103353", + "name": "fingerprint-line", + "font_class": "fingerprint-line", + "unicode": "e9d6", + "unicode_decimal": 59862 + }, + { + "icon_id": "17103557", + "name": "file-paper-2-fill", + "font_class": "file-paper-2-fill", + "unicode": "e9d7", + "unicode_decimal": 59863 + }, + { + "icon_id": "17103558", + "name": "file-paper-2-line", + "font_class": "file-paper-2-line", + "unicode": "e9d8", + "unicode_decimal": 59864 + }, + { + "icon_id": "17103559", + "name": "file-paper-line", + "font_class": "file-paper-line", + "unicode": "e9d9", + "unicode_decimal": 59865 + }, + { + "icon_id": "17103560", + "name": "file-paper-fill", + "font_class": "file-paper-fill", + "unicode": "e9da", + "unicode_decimal": 59866 + }, + { + "icon_id": "17103768", + "name": "indent-increase", + "font_class": "indent-increase", + "unicode": "e9db", + "unicode_decimal": 59867 + }, + { + "icon_id": "17103770", + "name": "indent-decrease", + "font_class": "indent-decrease", + "unicode": "e9dc", + "unicode_decimal": 59868 + }, + { + "icon_id": "17104056", + "name": "ticket-2-fill", + "font_class": "ticket-2-fill", + "unicode": "e9dd", + "unicode_decimal": 59869 + }, + { + "icon_id": "17104057", + "name": "ticket-2-line", + "font_class": "ticket-2-line", + "unicode": "e9de", + "unicode_decimal": 59870 + }, + { + "icon_id": "17104074", + "name": "vip-fill", + "font_class": "vip-fill", + "unicode": "e9df", + "unicode_decimal": 59871 + }, + { + "icon_id": "17104075", + "name": "vip-line", + "font_class": "vip-line", + "unicode": "e9e0", + "unicode_decimal": 59872 + }, + { + "icon_id": "17104440", + "name": "footprint-fill", + "font_class": "footprint-fill", + "unicode": "e9e1", + "unicode_decimal": 59873 + }, + { + "icon_id": "17104451", + "name": "footprint-line", + "font_class": "footprint-line", + "unicode": "e9e2", + "unicode_decimal": 59874 + }, + { + "icon_id": "17104530", + "name": "space-ship-fill", + "font_class": "space-ship-fill", + "unicode": "e9e3", + "unicode_decimal": 59875 + }, + { + "icon_id": "17104531", + "name": "space-ship-line", + "font_class": "space-ship-line", + "unicode": "e9e4", + "unicode_decimal": 59876 + }, + { + "icon_id": "17104613", + "name": "hd-fill", + "font_class": "hd-fill", + "unicode": "e9e5", + "unicode_decimal": 59877 + }, + { + "icon_id": "17104618", + "name": "hd-line", + "font_class": "hd-line", + "unicode": "e9e6", + "unicode_decimal": 59878 + }, + { + "icon_id": "17104701", + "name": "rewind-fill", + "font_class": "rewind-fill", + "unicode": "e9e7", + "unicode_decimal": 59879 + }, + { + "icon_id": "17104703", + "name": "rewind-line", + "font_class": "rewind-line", + "unicode": "e9e8", + "unicode_decimal": 59880 + }, + { + "icon_id": "17104704", + "name": "rewind-mini-fill", + "font_class": "rewind-mini-fill", + "unicode": "e9e9", + "unicode_decimal": 59881 + }, + { + "icon_id": "17104710", + "name": "skip-back-mini-fill", + "font_class": "skip-back-mini-fill", + "unicode": "e9ea", + "unicode_decimal": 59882 + }, + { + "icon_id": "17104711", + "name": "skip-back-fill", + "font_class": "skip-back-fill", + "unicode": "e9eb", + "unicode_decimal": 59883 + }, + { + "icon_id": "17104712", + "name": "skip-back-mini-line", + "font_class": "skip-back-mini-line", + "unicode": "e9ec", + "unicode_decimal": 59884 + }, + { + "icon_id": "17104713", + "name": "skip-forward-fill", + "font_class": "skip-forward-fill", + "unicode": "e9ed", + "unicode_decimal": 59885 + }, + { + "icon_id": "17104714", + "name": "skip-forward-line", + "font_class": "skip-forward-line", + "unicode": "e9ee", + "unicode_decimal": 59886 + }, + { + "icon_id": "17104715", + "name": "sound-module-fill", + "font_class": "sound-module-fill", + "unicode": "e9ef", + "unicode_decimal": 59887 + }, + { + "icon_id": "17104716", + "name": "skip-forward-mini-fill", + "font_class": "skip-forward-mini-fill", + "unicode": "e9f0", + "unicode_decimal": 59888 + }, + { + "icon_id": "17104717", + "name": "skip-back-line", + "font_class": "skip-back-line", + "unicode": "e9f1", + "unicode_decimal": 59889 + }, + { + "icon_id": "17104719", + "name": "skip-forward-mini-line", + "font_class": "skip-forward-mini-line", + "unicode": "e9f2", + "unicode_decimal": 59890 + }, + { + "icon_id": "17104722", + "name": "sound-module-line", + "font_class": "sound-module-line", + "unicode": "e9f3", + "unicode_decimal": 59891 + }, + { + "icon_id": "17104726", + "name": "speed-fill", + "font_class": "speed-fill", + "unicode": "e9f4", + "unicode_decimal": 59892 + }, + { + "icon_id": "17104727", + "name": "speed-mini-fill", + "font_class": "speed-mini-fill", + "unicode": "e9f5", + "unicode_decimal": 59893 + }, + { + "icon_id": "17104728", + "name": "speed-mini-line", + "font_class": "speed-mini-line", + "unicode": "e9f6", + "unicode_decimal": 59894 + }, + { + "icon_id": "17104729", + "name": "speed-line", + "font_class": "speed-line", + "unicode": "e9f7", + "unicode_decimal": 59895 + }, + { + "icon_id": "17104730", + "name": "stop-circle-fill", + "font_class": "stop-circle-fill", + "unicode": "e9f8", + "unicode_decimal": 59896 + }, + { + "icon_id": "17104731", + "name": "stop-circle-line", + "font_class": "stop-circle-line", + "unicode": "e9f9", + "unicode_decimal": 59897 + }, + { + "icon_id": "17104732", + "name": "stop-fill", + "font_class": "stop-fill", + "unicode": "e9fa", + "unicode_decimal": 59898 + }, + { + "icon_id": "17104733", + "name": "stop-line", + "font_class": "stop-line", + "unicode": "e9fb", + "unicode_decimal": 59899 + }, + { + "icon_id": "17104764", + "name": "webcam-fill", + "font_class": "webcam-fill", + "unicode": "e9fc", + "unicode_decimal": 59900 + }, + { + "icon_id": "17104765", + "name": "webcam-line", + "font_class": "webcam-line", + "unicode": "e9fd", + "unicode_decimal": 59901 + }, + { + "icon_id": "17104769", + "name": "bell-fill", + "font_class": "bell-fill", + "unicode": "e9fe", + "unicode_decimal": 59902 + }, + { + "icon_id": "17104776", + "name": "bell-line", + "font_class": "bell-line", + "unicode": "e9ff", + "unicode_decimal": 59903 + }, + { + "icon_id": "17104803", + "name": "key-fill", + "font_class": "key-fill", + "unicode": "ea00", + "unicode_decimal": 59904 + }, + { + "icon_id": "17104808", + "name": "lightbulb-fill", + "font_class": "lightbulb-fill", + "unicode": "ea01", + "unicode_decimal": 59905 + }, + { + "icon_id": "17104810", + "name": "lightbulb-flash-line", + "font_class": "lightbulb-flash-line", + "unicode": "ea02", + "unicode_decimal": 59906 + }, + { + "icon_id": "17104811", + "name": "key-line", + "font_class": "key-line", + "unicode": "ea03", + "unicode_decimal": 59907 + }, + { + "icon_id": "17104814", + "name": "lightbulb-line", + "font_class": "lightbulb-line", + "unicode": "ea04", + "unicode_decimal": 59908 + }, + { + "icon_id": "17104815", + "name": "lightbulb-flash-fill", + "font_class": "lightbulb-flash-fill", + "unicode": "ea05", + "unicode_decimal": 59909 + }, + { + "icon_id": "17104832", + "name": "scales-3-line", + "font_class": "scales-3-line", + "unicode": "ea06", + "unicode_decimal": 59910 + }, + { + "icon_id": "17104857", + "name": "scales-3-fill", + "font_class": "scales-3-fill", + "unicode": "ea07", + "unicode_decimal": 59911 + }, + { + "icon_id": "17104890", + "name": "alert-line", + "font_class": "alert-line", + "unicode": "ea08", + "unicode_decimal": 59912 + }, + { + "icon_id": "17104892", + "name": "alert-fill", + "font_class": "alert-fill", + "unicode": "ea09", + "unicode_decimal": 59913 + }, + { + "icon_id": "17105160", + "name": "timer-flash-fill", + "font_class": "timer-flash-fill", + "unicode": "ea0a", + "unicode_decimal": 59914 + }, + { + "icon_id": "17105161", + "name": "timer-fill", + "font_class": "timer-fill", + "unicode": "ea0b", + "unicode_decimal": 59915 + }, + { + "icon_id": "17105166", + "name": "timer-flash-line", + "font_class": "timer-flash-line", + "unicode": "ea0c", + "unicode_decimal": 59916 + }, + { + "icon_id": "17105172", + "name": "timer-line", + "font_class": "timer-line", + "unicode": "ea0d", + "unicode_decimal": 59917 + }, + { + "icon_id": "17105207", + "name": "account-box-fill", + "font_class": "account-box-fill", + "unicode": "ea0e", + "unicode_decimal": 59918 + }, + { + "icon_id": "17105208", + "name": "account-box-line", + "font_class": "account-box-line", + "unicode": "ea0f", + "unicode_decimal": 59919 + }, + { + "icon_id": "17105211", + "name": "account-pin-box-fill", + "font_class": "account-pin-box-fill", + "unicode": "ea10", + "unicode_decimal": 59920 + }, + { + "icon_id": "17105212", + "name": "admin-fill", + "font_class": "admin-fill", + "unicode": "ea11", + "unicode_decimal": 59921 + }, + { + "icon_id": "17105214", + "name": "admin-line", + "font_class": "admin-line", + "unicode": "ea12", + "unicode_decimal": 59922 + }, + { + "icon_id": "17105215", + "name": "account-pin-circle-line", + "font_class": "account-pin-circle-line", + "unicode": "ea13", + "unicode_decimal": 59923 + }, + { + "icon_id": "17105216", + "name": "account-pin-circle-fill", + "font_class": "account-pin-circle-fill", + "unicode": "ea14", + "unicode_decimal": 59924 + }, + { + "icon_id": "17105217", + "name": "account-pin-box-line", + "font_class": "account-pin-box-line", + "unicode": "ea15", + "unicode_decimal": 59925 + }, + { + "icon_id": "17105280", + "name": "user-5-line", + "font_class": "user-5-line", + "unicode": "ea16", + "unicode_decimal": 59926 + }, + { + "icon_id": "17105281", + "name": "user-5-fill", + "font_class": "user-5-fill", + "unicode": "ea17", + "unicode_decimal": 59927 + }, + { + "icon_id": "17105282", + "name": "user-6-fill", + "font_class": "user-6-fill", + "unicode": "ea18", + "unicode_decimal": 59928 + }, + { + "icon_id": "17105284", + "name": "user-fill", + "font_class": "user-fill", + "unicode": "ea19", + "unicode_decimal": 59929 + }, + { + "icon_id": "17105285", + "name": "user-add-line", + "font_class": "user-add-line", + "unicode": "ea1a", + "unicode_decimal": 59930 + }, + { + "icon_id": "17105286", + "name": "user-follow-fill", + "font_class": "user-follow-fill", + "unicode": "ea1b", + "unicode_decimal": 59931 + }, + { + "icon_id": "17105287", + "name": "user-follow-line", + "font_class": "user-follow-line", + "unicode": "ea1c", + "unicode_decimal": 59932 + }, + { + "icon_id": "17105288", + "name": "user-heart-line", + "font_class": "user-heart-line", + "unicode": "ea1d", + "unicode_decimal": 59933 + }, + { + "icon_id": "17105289", + "name": "user-heart-fill", + "font_class": "user-heart-fill", + "unicode": "ea1e", + "unicode_decimal": 59934 + }, + { + "icon_id": "17105290", + "name": "user-6-line", + "font_class": "user-6-line", + "unicode": "ea1f", + "unicode_decimal": 59935 + }, + { + "icon_id": "17105291", + "name": "user-line", + "font_class": "user-line", + "unicode": "ea20", + "unicode_decimal": 59936 + }, + { + "icon_id": "17105292", + "name": "user-location-fill", + "font_class": "user-location-fill", + "unicode": "ea21", + "unicode_decimal": 59937 + }, + { + "icon_id": "17105293", + "name": "user-location-line", + "font_class": "user-location-line", + "unicode": "ea22", + "unicode_decimal": 59938 + }, + { + "icon_id": "17105294", + "name": "user-received-2-line", + "font_class": "user-received-2-line", + "unicode": "ea23", + "unicode_decimal": 59939 + }, + { + "icon_id": "17105295", + "name": "user-received-2-fill", + "font_class": "user-received-2-fill", + "unicode": "ea24", + "unicode_decimal": 59940 + }, + { + "icon_id": "17105296", + "name": "user-received-line", + "font_class": "user-received-line", + "unicode": "ea25", + "unicode_decimal": 59941 + }, + { + "icon_id": "17105297", + "name": "user-received-fill", + "font_class": "user-received-fill", + "unicode": "ea26", + "unicode_decimal": 59942 + }, + { + "icon_id": "17105298", + "name": "user-search-fill", + "font_class": "user-search-fill", + "unicode": "ea27", + "unicode_decimal": 59943 + }, + { + "icon_id": "17105299", + "name": "user-search-line", + "font_class": "user-search-line", + "unicode": "ea28", + "unicode_decimal": 59944 + }, + { + "icon_id": "17105300", + "name": "user-shared-2-fill", + "font_class": "user-shared-2-fill", + "unicode": "ea29", + "unicode_decimal": 59945 + }, + { + "icon_id": "17105301", + "name": "user-shared-2-line", + "font_class": "user-shared-2-line", + "unicode": "ea2a", + "unicode_decimal": 59946 + }, + { + "icon_id": "17105302", + "name": "user-settings-line", + "font_class": "user-settings-line", + "unicode": "ea2b", + "unicode_decimal": 59947 + }, + { + "icon_id": "17105303", + "name": "user-shared-fill", + "font_class": "user-shared-fill", + "unicode": "ea2c", + "unicode_decimal": 59948 + }, + { + "icon_id": "17105304", + "name": "user-settings-fill", + "font_class": "user-settings-fill", + "unicode": "ea2d", + "unicode_decimal": 59949 + }, + { + "icon_id": "17105305", + "name": "user-shared-line", + "font_class": "user-shared-line", + "unicode": "ea2e", + "unicode_decimal": 59950 + }, + { + "icon_id": "17105306", + "name": "user-smile-fill", + "font_class": "user-smile-fill", + "unicode": "ea2f", + "unicode_decimal": 59951 + }, + { + "icon_id": "17105307", + "name": "user-smile-line", + "font_class": "user-smile-line", + "unicode": "ea30", + "unicode_decimal": 59952 + }, + { + "icon_id": "17105308", + "name": "user-star-fill", + "font_class": "user-star-fill", + "unicode": "ea31", + "unicode_decimal": 59953 + }, + { + "icon_id": "17105309", + "name": "user-star-line", + "font_class": "user-star-line", + "unicode": "ea32", + "unicode_decimal": 59954 + }, + { + "icon_id": "17105310", + "name": "user-unfollow-fill", + "font_class": "user-unfollow-fill", + "unicode": "ea33", + "unicode_decimal": 59955 + }, + { + "icon_id": "17105312", + "name": "user-unfollow-line", + "font_class": "user-unfollow-line", + "unicode": "ea34", + "unicode_decimal": 59956 + }, + { + "icon_id": "17105313", + "name": "user-voice-fill", + "font_class": "user-voice-fill", + "unicode": "ea35", + "unicode_decimal": 59957 + }, + { + "icon_id": "17105315", + "name": "user-voice-line", + "font_class": "user-voice-line", + "unicode": "ea36", + "unicode_decimal": 59958 + }, + { + "icon_id": "23303738", + "name": "assembly", + "font_class": "assembly", + "unicode": "e602", + "unicode_decimal": 58882 + }, + { + "icon_id": "23303739", + "name": "change", + "font_class": "change1", + "unicode": "e603", + "unicode_decimal": 58883 + }, + { + "icon_id": "23303741", + "name": "bios-set", + "font_class": "bios-set", + "unicode": "e604", + "unicode_decimal": 58884 + }, + { + "icon_id": "23303742", + "name": "bmc-set", + "font_class": "bmc-set", + "unicode": "e605", + "unicode_decimal": 58885 + }, + { + "icon_id": "23303744", + "name": "increase", + "font_class": "increase", + "unicode": "e606", + "unicode_decimal": 58886 + }, + { + "icon_id": "23303745", + "name": "move", + "font_class": "move", + "unicode": "e608", + "unicode_decimal": 58888 + }, + { + "icon_id": "23303746", + "name": "light", + "font_class": "light", + "unicode": "e609", + "unicode_decimal": 58889 + }, + { + "icon_id": "23303747", + "name": "pull", + "font_class": "pull", + "unicode": "e60e", + "unicode_decimal": 58894 + }, + { + "icon_id": "23303748", + "name": "remind", + "font_class": "remind", + "unicode": "e60f", + "unicode_decimal": 58895 + }, + { + "icon_id": "23303749", + "name": "system-installation", + "font_class": "system-installation", + "unicode": "e611", + "unicode_decimal": 58897 + }, + { + "icon_id": "23303750", + "name": "roost", + "font_class": "roost", + "unicode": "e612", + "unicode_decimal": 58898 + }, + { + "icon_id": "23303751", + "name": "wind-speed", + "font_class": "wind-speed", + "unicode": "e616", + "unicode_decimal": 58902 + }, + { + "icon_id": "23192958", + "name": "search-add", + "font_class": "search-add", + "unicode": "f07b", + "unicode_decimal": 61563 + }, + { + "icon_id": "23192959", + "name": "search-min", + "font_class": "search-min", + "unicode": "f07c", + "unicode_decimal": 61564 + }, + { + "icon_id": "17102587", + "name": "home-smile-2-line", + "font_class": "home-smile-2-line", + "unicode": "e6bd", + "unicode_decimal": 59069 + }, + { + "icon_id": "17102588", + "name": "home-smile-2-fill", + "font_class": "home-smile-2-fill", + "unicode": "e6ca", + "unicode_decimal": 59082 + }, + { + "icon_id": "17102591", + "name": "home-wifi-line", + "font_class": "home-wifi-line", + "unicode": "e6cb", + "unicode_decimal": 59083 + }, + { + "icon_id": "17102601", + "name": "home-wifi-fill", + "font_class": "home-wifi-fill", + "unicode": "e6de", + "unicode_decimal": 59102 + }, + { + "icon_id": "17103780", + "name": "list-check", + "font_class": "list-check", + "unicode": "e9d2", + "unicode_decimal": 59858 + }, + { + "icon_id": "17102592", + "name": "hotel-line", + "font_class": "hotel-line", + "unicode": "e6bb", + "unicode_decimal": 59067 + }, + { + "icon_id": "17102596", + "name": "hotel-fill", + "font_class": "hotel-fill", + "unicode": "e6bc", + "unicode_decimal": 59068 + }, + { + "icon_id": "17104644", + "name": "notification-2-fill", + "font_class": "notification-2-fill", + "unicode": "e9c2", + "unicode_decimal": 59842 + }, + { + "icon_id": "17104645", + "name": "notification-2-line", + "font_class": "notification-2-line", + "unicode": "e9c3", + "unicode_decimal": 59843 + }, + { + "icon_id": "17104646", + "name": "notification-3-line", + "font_class": "notification-3-line", + "unicode": "e9c4", + "unicode_decimal": 59844 + }, + { + "icon_id": "17104647", + "name": "notification-4-fill", + "font_class": "notification-4-fill", + "unicode": "e9c5", + "unicode_decimal": 59845 + }, + { + "icon_id": "17104648", + "name": "notification-4-line", + "font_class": "notification-4-line", + "unicode": "e9c6", + "unicode_decimal": 59846 + }, + { + "icon_id": "17104649", + "name": "notification-off-line", + "font_class": "notification-off-line", + "unicode": "e9c7", + "unicode_decimal": 59847 + }, + { + "icon_id": "17104650", + "name": "notification-off-fill", + "font_class": "notification-off-fill", + "unicode": "e9c8", + "unicode_decimal": 59848 + }, + { + "icon_id": "17104654", + "name": "notification-3-fill", + "font_class": "notification-3-fill", + "unicode": "e9c9", + "unicode_decimal": 59849 + }, + { + "icon_id": "17104655", + "name": "notification-fill", + "font_class": "notification-fill", + "unicode": "e9ca", + "unicode_decimal": 59850 + }, + { + "icon_id": "17104658", + "name": "notification-line", + "font_class": "notification-line", + "unicode": "e9cb", + "unicode_decimal": 59851 + }, + { + "icon_id": "17105091", + "name": "search-2-fill", + "font_class": "search-2-fill", + "unicode": "e9cc", + "unicode_decimal": 59852 + }, + { + "icon_id": "17105092", + "name": "search-eye-fill", + "font_class": "search-eye-fill", + "unicode": "e9cd", + "unicode_decimal": 59853 + }, + { + "icon_id": "17105093", + "name": "search-eye-line", + "font_class": "search-eye-line", + "unicode": "e9ce", + "unicode_decimal": 59854 + }, + { + "icon_id": "17105094", + "name": "search-fill", + "font_class": "search-fill", + "unicode": "e9cf", + "unicode_decimal": 59855 + }, + { + "icon_id": "17105097", + "name": "search-2-line", + "font_class": "search-2-line", + "unicode": "e9d0", + "unicode_decimal": 59856 + }, + { + "icon_id": "17105098", + "name": "search-line", + "font_class": "search-line", + "unicode": "e9d1", + "unicode_decimal": 59857 + }, + { + "icon_id": "22002588", + "name": "pcie", + "font_class": "pcie", + "unicode": "e617", + "unicode_decimal": 58903 + }, + { + "icon_id": "22002589", + "name": "control", + "font_class": "control", + "unicode": "e618", + "unicode_decimal": 58904 + }, + { + "icon_id": "22002590", + "name": "iscsi", + "font_class": "iscsi", + "unicode": "e619", + "unicode_decimal": 58905 + }, + { + "icon_id": "22002591", + "name": "port", + "font_class": "port", + "unicode": "e61a", + "unicode_decimal": 58906 + }, + { + "icon_id": "22002592", + "name": "lun", + "font_class": "lun", + "unicode": "e61b", + "unicode_decimal": 58907 + }, + { + "icon_id": "22002593", + "name": "chip", + "font_class": "chip", + "unicode": "e61c", + "unicode_decimal": 58908 + }, + { + "icon_id": "22002594", + "name": "mesh-opening", + "font_class": "mesh-opening", + "unicode": "e61d", + "unicode_decimal": 58909 + }, + { + "icon_id": "17103394", + "name": "qr-scan-2-fill", + "font_class": "qr-scan-2-fill", + "unicode": "e9c1", + "unicode_decimal": 59841 + }, + { + "icon_id": "17369997", + "name": "fan", + "font_class": "fan", + "unicode": "f668", + "unicode_decimal": 63080 + }, + { + "icon_id": "21521528", + "name": "physics", + "font_class": "physics", + "unicode": "e615", + "unicode_decimal": 58901 + }, + { + "icon_id": "21521477", + "name": "logic", + "font_class": "logic", + "unicode": "e614", + "unicode_decimal": 58900 + }, + { + "icon_id": "21521441", + "name": "distributed", + "font_class": "distributed", + "unicode": "e613", + "unicode_decimal": 58899 + }, + { + "icon_id": "20257577", + "name": "ongoing", + "font_class": "ongoing", + "unicode": "e601", + "unicode_decimal": 58881 + }, + { + "icon_id": "20124870", + "name": "loading-1", + "font_class": "loading-1", + "unicode": "e610", + "unicode_decimal": 58896 + }, + { + "icon_id": "20124863", + "name": "loading-3", + "font_class": "loading-3", + "unicode": "e60d", + "unicode_decimal": 58893 + }, + { + "icon_id": "20047747", + "name": "up-line", + "font_class": "up-line", + "unicode": "e60c", + "unicode_decimal": 58892 + }, + { + "icon_id": "19999922", + "name": "table-shine-upon", + "font_class": "table-shine-upon", + "unicode": "e60b", + "unicode_decimal": 58891 + }, + { + "icon_id": "19999858", + "name": "table-free", + "font_class": "table-free", + "unicode": "e60a", + "unicode_decimal": 58890 + }, + { + "icon_id": "19900040", + "name": "restart-file", + "font_class": "restart-file", + "unicode": "e607", + "unicode_decimal": 58887 + }, + { + "icon_id": "19629372", + "name": "dispose", + "font_class": "dispose", + "unicode": "f078", + "unicode_decimal": 61560 + }, + { + "icon_id": "19629175", + "name": "link", + "font_class": "link1", + "unicode": "f079", + "unicode_decimal": 61561 + }, + { + "icon_id": "19629109", + "name": "synchronize", + "font_class": "synchronize", + "unicode": "f077", + "unicode_decimal": 61559 + }, + { + "icon_id": "19610125", + "name": "disk", + "font_class": "disk", + "unicode": "f07a", + "unicode_decimal": 61562 + }, + { + "icon_id": "19466345", + "name": "v3-user", + "font_class": "v3-user", + "unicode": "f076", + "unicode_decimal": 61558 + }, + { + "icon_id": "19466282", + "name": "OID", + "font_class": "OID", + "unicode": "f075", + "unicode_decimal": 61557 + }, + { + "icon_id": "19466279", + "name": "performance-report", + "font_class": "performance-report", + "unicode": "f073", + "unicode_decimal": 61555 + }, + { + "icon_id": "19466280", + "name": "hardware-report", + "font_class": "hardware-report", + "unicode": "f074", + "unicode_decimal": 61556 + }, + { + "icon_id": "19444768", + "name": "details-safe", + "font_class": "details-safe", + "unicode": "f072", + "unicode_decimal": 61554 + }, + { + "icon_id": "19444499", + "name": "details-store-fill", + "font_class": "details-store-fill", + "unicode": "f070", + "unicode_decimal": 61552 + }, + { + "icon_id": "19444500", + "name": "details-fram", + "font_class": "details-fram", + "unicode": "f071", + "unicode_decimal": 61553 + }, + { + "icon_id": "19412863", + "name": "skin-line", + "font_class": "skin", + "unicode": "e636", + "unicode_decimal": 58934 + }, + { + "icon_id": "19129990", + "name": "refresh-1-line", + "font_class": "refresh-1-line", + "unicode": "f068", + "unicode_decimal": 61544 + }, + { + "icon_id": "19129991", + "name": "restart", + "font_class": "restart", + "unicode": "f069", + "unicode_decimal": 61545 + }, + { + "icon_id": "19129992", + "name": "monitor-circle", + "font_class": "monitor-circle", + "unicode": "f06a", + "unicode_decimal": 61546 + }, + { + "icon_id": "19129993", + "name": "store-circle", + "font_class": "store-circle", + "unicode": "f06b", + "unicode_decimal": 61547 + }, + { + "icon_id": "19129994", + "name": "server-circle", + "font_class": "server-circle", + "unicode": "f06c", + "unicode_decimal": 61548 + }, + { + "icon_id": "19129995", + "name": "firewall-circle", + "font_class": "firewall-circle", + "unicode": "f06d", + "unicode_decimal": 61549 + }, + { + "icon_id": "19129996", + "name": "change-circle", + "font_class": "change-circle", + "unicode": "f06e", + "unicode_decimal": 61550 + }, + { + "icon_id": "19129997", + "name": "nic-circle", + "font_class": "nic-circle", + "unicode": "f06f", + "unicode_decimal": 61551 + }, + { + "icon_id": "18958230", + "name": "celsius", + "font_class": "celsius", + "unicode": "f067", + "unicode_decimal": 61543 + }, + { + "icon_id": "18874991", + "name": "toolbar", + "font_class": "toolbar", + "unicode": "f066", + "unicode_decimal": 61542 + }, + { + "icon_id": "17103532", + "name": "file-edit-line", + "font_class": "file-edit-line", + "unicode": "e9bf", + "unicode_decimal": 59839 + }, + { + "icon_id": "17103538", + "name": "file-edit-fill", + "font_class": "file-edit-fill", + "unicode": "e9c0", + "unicode_decimal": 59840 + }, + { + "icon_id": "17103544", + "name": "file-list-2-fill", + "font_class": "file-list-2-fill", + "unicode": "e9a8", + "unicode_decimal": 59816 + }, + { + "icon_id": "17103545", + "name": "file-info-fill", + "font_class": "file-info-fill", + "unicode": "e9b7", + "unicode_decimal": 59831 + }, + { + "icon_id": "17103546", + "name": "file-list-3-fill", + "font_class": "file-list-3-fill", + "unicode": "e9b8", + "unicode_decimal": 59832 + }, + { + "icon_id": "17103547", + "name": "file-list-3-line", + "font_class": "file-list-3-line", + "unicode": "e9b9", + "unicode_decimal": 59833 + }, + { + "icon_id": "17103548", + "name": "file-list-2-line", + "font_class": "file-list-2-line", + "unicode": "e9ba", + "unicode_decimal": 59834 + }, + { + "icon_id": "17103549", + "name": "file-list-fill", + "font_class": "file-list-fill", + "unicode": "e9bb", + "unicode_decimal": 59835 + }, + { + "icon_id": "17103550", + "name": "file-lock-fill", + "font_class": "file-lock-fill", + "unicode": "e9bc", + "unicode_decimal": 59836 + }, + { + "icon_id": "17103551", + "name": "file-list-line", + "font_class": "file-list-line", + "unicode": "e9bd", + "unicode_decimal": 59837 + }, + { + "icon_id": "17103554", + "name": "file-lock-line", + "font_class": "file-lock-line", + "unicode": "e9be", + "unicode_decimal": 59838 + }, + { + "icon_id": "18346620", + "name": "certificate-fill", + "font_class": "certificate-fill", + "unicode": "f065", + "unicode_decimal": 61541 + }, + { + "icon_id": "18346324", + "name": "power", + "font_class": "power", + "unicode": "f064", + "unicode_decimal": 61540 + }, + { + "icon_id": "18336120", + "name": "details-3d", + "font_class": "details-3d", + "unicode": "f060", + "unicode_decimal": 61536 + }, + { + "icon_id": "18336121", + "name": "details-rule", + "font_class": "details-rule", + "unicode": "f061", + "unicode_decimal": 61537 + }, + { + "icon_id": "18336122", + "name": "details-building", + "font_class": "details-building", + "unicode": "f062", + "unicode_decimal": 61538 + }, + { + "icon_id": "18336123", + "name": "details-ips", + "font_class": "details-ips", + "unicode": "f063", + "unicode_decimal": 61539 + }, + { + "icon_id": "18334001", + "name": "details-distributed", + "font_class": "details-distributed", + "unicode": "f055", + "unicode_decimal": 61525 + }, + { + "icon_id": "18334002", + "name": "details-change", + "font_class": "details-change", + "unicode": "f056", + "unicode_decimal": 61526 + }, + { + "icon_id": "18334003", + "name": "database-save-fill", + "font_class": "database-save-fill", + "unicode": "f057", + "unicode_decimal": 61527 + }, + { + "icon_id": "18334004", + "name": "details-router", + "font_class": "details-router", + "unicode": "f058", + "unicode_decimal": 61528 + }, + { + "icon_id": "18334005", + "name": "details-nic", + "font_class": "details-nic", + "unicode": "f059", + "unicode_decimal": 61529 + }, + { + "icon_id": "18334006", + "name": "details-sdn", + "font_class": "details-sdn", + "unicode": "f05a", + "unicode_decimal": 61530 + }, + { + "icon_id": "18334007", + "name": "details-monitor", + "font_class": "details-monitor", + "unicode": "f05b", + "unicode_decimal": 61531 + }, + { + "icon_id": "18334008", + "name": "save-set-fill", + "font_class": "save-set-fill", + "unicode": "f05c", + "unicode_decimal": 61532 + }, + { + "icon_id": "18334009", + "name": "details-store", + "font_class": "details-store", + "unicode": "f05d", + "unicode_decimal": 61533 + }, + { + "icon_id": "18334010", + "name": "change", + "font_class": "change", + "unicode": "f05e", + "unicode_decimal": 61534 + }, + { + "icon_id": "18334011", + "name": "sdn", + "font_class": "sdn", + "unicode": "f05f", + "unicode_decimal": 61535 + }, + { + "icon_id": "18329959", + "name": "edit-lock-fill", + "font_class": "edit-lock-fill", + "unicode": "f053", + "unicode_decimal": 61523 + }, + { + "icon_id": "18329960", + "name": "look-log-fill", + "font_class": "look-log-fill", + "unicode": "f054", + "unicode_decimal": 61524 + }, + { + "icon_id": "18329940", + "name": "off", + "font_class": "off", + "unicode": "f051", + "unicode_decimal": 61521 + }, + { + "icon_id": "18329941", + "name": "open", + "font_class": "open", + "unicode": "f052", + "unicode_decimal": 61522 + }, + { + "icon_id": "17103195", + "name": "git-repository-commits-line", + "font_class": "git-repository-commits-line", + "unicode": "e98f", + "unicode_decimal": 59791 + }, + { + "icon_id": "17103196", + "name": "git-repository-commits-fill", + "font_class": "git-repository-commits-fill", + "unicode": "e990", + "unicode_decimal": 59792 + }, + { + "icon_id": "17103199", + "name": "git-repository-private-line", + "font_class": "git-repository-private-line", + "unicode": "e991", + "unicode_decimal": 59793 + }, + { + "icon_id": "17103200", + "name": "git-repository-private-fill", + "font_class": "git-repository-private-fill", + "unicode": "e992", + "unicode_decimal": 59794 + }, + { + "icon_id": "17103208", + "name": "terminal-window-fill", + "font_class": "terminal-window-fill", + "unicode": "e993", + "unicode_decimal": 59795 + }, + { + "icon_id": "17103210", + "name": "terminal-window-line", + "font_class": "terminal-window-line", + "unicode": "e994", + "unicode_decimal": 59796 + }, + { + "icon_id": "17103326", + "name": "cast-fill", + "font_class": "cast-fill", + "unicode": "e995", + "unicode_decimal": 59797 + }, + { + "icon_id": "17103327", + "name": "cast-line", + "font_class": "cast-line", + "unicode": "e996", + "unicode_decimal": 59798 + }, + { + "icon_id": "17103335", + "name": "dashboard-2-fill", + "font_class": "dashboard-2-fill", + "unicode": "e997", + "unicode_decimal": 59799 + }, + { + "icon_id": "17103336", + "name": "dashboard-2-line", + "font_class": "dashboard-2-line", + "unicode": "e998", + "unicode_decimal": 59800 + }, + { + "icon_id": "17103344", + "name": "device-recover-line", + "font_class": "device-recover-line", + "unicode": "e999", + "unicode_decimal": 59801 + }, + { + "icon_id": "17103346", + "name": "device-recover-fill", + "font_class": "device-recover-fill", + "unicode": "e99a", + "unicode_decimal": 59802 + }, + { + "icon_id": "17103347", + "name": "dual-sim-1-line", + "font_class": "dual-sim-1-line", + "unicode": "e99b", + "unicode_decimal": 59803 + }, + { + "icon_id": "17103348", + "name": "dual-sim-1-fill", + "font_class": "dual-sim-1-fill", + "unicode": "e99c", + "unicode_decimal": 59804 + }, + { + "icon_id": "17103349", + "name": "dual-sim-2-line", + "font_class": "dual-sim-2-line", + "unicode": "e99d", + "unicode_decimal": 59805 + }, + { + "icon_id": "17103350", + "name": "dual-sim-2-fill", + "font_class": "dual-sim-2-fill", + "unicode": "e99e", + "unicode_decimal": 59806 + }, + { + "icon_id": "17103358", + "name": "hard-drive-2-fill", + "font_class": "hard-drive-2-fill", + "unicode": "e99f", + "unicode_decimal": 59807 + }, + { + "icon_id": "17103359", + "name": "hard-drive-2-line", + "font_class": "hard-drive-2-line", + "unicode": "e9a0", + "unicode_decimal": 59808 + }, + { + "icon_id": "17103362", + "name": "hard-drive-fill", + "font_class": "hard-drive-fill", + "unicode": "e9a1", + "unicode_decimal": 59809 + }, + { + "icon_id": "17103368", + "name": "hard-drive-line", + "font_class": "hard-drive-line", + "unicode": "e9a2", + "unicode_decimal": 59810 + }, + { + "icon_id": "17103381", + "name": "qr-code-line", + "font_class": "qr-code-line", + "unicode": "e9a3", + "unicode_decimal": 59811 + }, + { + "icon_id": "17103382", + "name": "qr-code-fill", + "font_class": "qr-code-fill", + "unicode": "e9a4", + "unicode_decimal": 59812 + }, + { + "icon_id": "17103519", + "name": "file-copy-2-fill", + "font_class": "file-copy-2-fill", + "unicode": "e9a5", + "unicode_decimal": 59813 + }, + { + "icon_id": "17103520", + "name": "file-copy-2-line", + "font_class": "file-copy-2-line", + "unicode": "e9a6", + "unicode_decimal": 59814 + }, + { + "icon_id": "17104983", + "name": "download-2-fill", + "font_class": "download-2-fill", + "unicode": "e9a7", + "unicode_decimal": 59815 + }, + { + "icon_id": "17105017", + "name": "find-replace-line", + "font_class": "find-replace-line", + "unicode": "e9a9", + "unicode_decimal": 59817 + }, + { + "icon_id": "17105018", + "name": "find-replace-fill", + "font_class": "find-replace-fill", + "unicode": "e9aa", + "unicode_decimal": 59818 + }, + { + "icon_id": "17105019", + "name": "forbid-2-fill", + "font_class": "forbid-2-fill", + "unicode": "e9ab", + "unicode_decimal": 59819 + }, + { + "icon_id": "17105020", + "name": "forbid-fill", + "font_class": "forbid-fill", + "unicode": "e9ac", + "unicode_decimal": 59820 + }, + { + "icon_id": "17105022", + "name": "forbid-line", + "font_class": "forbid-line", + "unicode": "e9ad", + "unicode_decimal": 59821 + }, + { + "icon_id": "17105026", + "name": "indeterminate-circle-fill", + "font_class": "indeterminate-circle-fill", + "unicode": "e9ae", + "unicode_decimal": 59822 + }, + { + "icon_id": "17105027", + "name": "indeterminate-circle-line", + "font_class": "indeterminate-circle-line", + "unicode": "e9af", + "unicode_decimal": 59823 + }, + { + "icon_id": "17105117", + "name": "share-forward-fill", + "font_class": "share-forward-fill", + "unicode": "e9b0", + "unicode_decimal": 59824 + }, + { + "icon_id": "17105118", + "name": "share-forward-line", + "font_class": "share-forward-line", + "unicode": "e9b1", + "unicode_decimal": 59825 + }, + { + "icon_id": "17105135", + "name": "spam-3-line", + "font_class": "spam-3-line", + "unicode": "e9b2", + "unicode_decimal": 59826 + }, + { + "icon_id": "17105136", + "name": "spam-2-fill", + "font_class": "spam-2-fill", + "unicode": "e9b3", + "unicode_decimal": 59827 + }, + { + "icon_id": "17105142", + "name": "spam-2-line", + "font_class": "spam-2-line", + "unicode": "e9b4", + "unicode_decimal": 59828 + }, + { + "icon_id": "17105154", + "name": "spam-line", + "font_class": "spam-line", + "unicode": "e9b5", + "unicode_decimal": 59829 + }, + { + "icon_id": "17105159", + "name": "spam-3-fill", + "font_class": "spam-3-fill", + "unicode": "e9b6", + "unicode_decimal": 59830 + }, + { + "icon_id": "18323962", + "name": "connect-fill", + "font_class": "connect-fill", + "unicode": "f050", + "unicode_decimal": 61520 + }, + { + "icon_id": "17104992", + "name": "external-link-line", + "font_class": "external-link-line", + "unicode": "e98d", + "unicode_decimal": 59789 + }, + { + "icon_id": "17104995", + "name": "external-link-fill", + "font_class": "external-link-fill", + "unicode": "e98e", + "unicode_decimal": 59790 + }, + { + "icon_id": "17102799", + "name": "links-fill", + "font_class": "links-fill", + "unicode": "e6d9", + "unicode_decimal": 59097 + }, + { + "icon_id": "17102800", + "name": "links-line", + "font_class": "links-line", + "unicode": "e6dc", + "unicode_decimal": 59100 + }, + { + "icon_id": "17103776", + "name": "link-m", + "font_class": "link-m", + "unicode": "e989", + "unicode_decimal": 59785 + }, + { + "icon_id": "17103777", + "name": "link-unlink-m", + "font_class": "link-unlink-m", + "unicode": "e98a", + "unicode_decimal": 59786 + }, + { + "icon_id": "17103778", + "name": "link-unlink", + "font_class": "link-unlink", + "unicode": "e98b", + "unicode_decimal": 59787 + }, + { + "icon_id": "17103779", + "name": "link", + "font_class": "link", + "unicode": "e98c", + "unicode_decimal": 59788 + }, + { + "icon_id": "17103054", + "name": "hammer-line", + "font_class": "hammer-line", + "unicode": "e988", + "unicode_decimal": 59784 + }, + { + "icon_id": "18289798", + "name": "frame", + "font_class": "frame", + "unicode": "f04f", + "unicode_decimal": 61519 + }, + { + "icon_id": "18289152", + "name": "induce", + "font_class": "induce", + "unicode": "f04e", + "unicode_decimal": 61518 + }, + { + "icon_id": "17105057", + "name": "logout-circle-line", + "font_class": "logout-circle-line", + "unicode": "e984", + "unicode_decimal": 59780 + }, + { + "icon_id": "17105058", + "name": "logout-circle-fill", + "font_class": "logout-circle-fill", + "unicode": "e985", + "unicode_decimal": 59781 + }, + { + "icon_id": "17105059", + "name": "logout-circle-r-fill", + "font_class": "logout-circle-r-fill", + "unicode": "e986", + "unicode_decimal": 59782 + }, + { + "icon_id": "17105060", + "name": "logout-circle-r-line", + "font_class": "logout-circle-r-line", + "unicode": "e987", + "unicode_decimal": 59783 + }, + { + "icon_id": "18289108", + "name": "nouth", + "font_class": "nouth", + "unicode": "f04c", + "unicode_decimal": 61516 + }, + { + "icon_id": "18289109", + "name": "south", + "font_class": "south", + "unicode": "f04d", + "unicode_decimal": 61517 + }, + { + "icon_id": "2518510", + "name": "kvm", + "font_class": "kvm", + "unicode": "e63b", + "unicode_decimal": 58939 + }, + { + "icon_id": "17102849", + "name": "reply-all-fill", + "font_class": "reply-all-fill", + "unicode": "e6e6", + "unicode_decimal": 59110 + }, + { + "icon_id": "17102850", + "name": "reply-fill", + "font_class": "reply-fill", + "unicode": "e981", + "unicode_decimal": 59777 + }, + { + "icon_id": "17102851", + "name": "reply-line", + "font_class": "reply-line", + "unicode": "e982", + "unicode_decimal": 59778 + }, + { + "icon_id": "17102852", + "name": "reply-all-line", + "font_class": "reply-all-line", + "unicode": "e983", + "unicode_decimal": 59779 + }, + { + "icon_id": "17103396", + "name": "restart-line", + "font_class": "restart-line", + "unicode": "e97d", + "unicode_decimal": 59773 + }, + { + "icon_id": "17103397", + "name": "restart-fill", + "font_class": "restart-fill", + "unicode": "e97e", + "unicode_decimal": 59774 + }, + { + "icon_id": "17105088", + "name": "refresh-fill", + "font_class": "refresh-fill", + "unicode": "e97f", + "unicode_decimal": 59775 + }, + { + "icon_id": "17105089", + "name": "refresh-line", + "font_class": "refresh-line", + "unicode": "e980", + "unicode_decimal": 59776 + }, + { + "icon_id": "15197206", + "name": "cluster-monitor", + "font_class": "cluster-monitor", + "unicode": "efc6", + "unicode_decimal": 61382 + }, + { + "icon_id": "17845464", + "name": "collect-nic", + "font_class": "collect-nic", + "unicode": "f04b", + "unicode_decimal": 61515 + }, + { + "icon_id": "17997480", + "name": "checkbox-plus-fill", + "font_class": "checkbox-plus-fill", + "unicode": "eff4", + "unicode_decimal": 61428 + }, + { + "icon_id": "17997481", + "name": "checkbox-plus-line", + "font_class": "checkbox-plus-line", + "unicode": "f04a", + "unicode_decimal": 61514 + }, + { + "icon_id": "17991808", + "name": "select-upload", + "font_class": "select-upload", + "unicode": "eff1", + "unicode_decimal": 61425 + }, + { + "icon_id": "17105001", + "name": "arrow-up-s-fill", + "font_class": "arrow-up-s-fill", + "unicode": "e97a", + "unicode_decimal": 59770 + }, + { + "icon_id": "17105010", + "name": "arrow-right-circle-line", + "font_class": "arrow-right-circle-line", + "unicode": "e97b", + "unicode_decimal": 59771 + }, + { + "icon_id": "17105011", + "name": "arrow-up-s-line", + "font_class": "arrow-up-s-line", + "unicode": "e97c", + "unicode_decimal": 59772 + }, + { + "icon_id": "17102857", + "name": "slideshow-2-line", + "font_class": "slideshow-2-line", + "unicode": "e700", + "unicode_decimal": 59136 + }, + { + "icon_id": "17102858", + "name": "slideshow-3-fill", + "font_class": "slideshow-3-fill", + "unicode": "e701", + "unicode_decimal": 59137 + }, + { + "icon_id": "17102859", + "name": "slideshow-2-fill", + "font_class": "slideshow-2-fill", + "unicode": "e976", + "unicode_decimal": 59766 + }, + { + "icon_id": "17102860", + "name": "slideshow-4-line", + "font_class": "slideshow-4-line", + "unicode": "e977", + "unicode_decimal": 59767 + }, + { + "icon_id": "17102862", + "name": "slideshow-3-line", + "font_class": "slideshow-3-line", + "unicode": "e978", + "unicode_decimal": 59768 + }, + { + "icon_id": "17102863", + "name": "slideshow-4-fill", + "font_class": "slideshow-4-fill", + "unicode": "e979", + "unicode_decimal": 59769 + }, + { + "icon_id": "17104936", + "name": "arrow-up-circle-line", + "font_class": "arrow-up-circle-line", + "unicode": "e96e", + "unicode_decimal": 59758 + }, + { + "icon_id": "17104937", + "name": "arrow-up-down-fill", + "font_class": "arrow-up-down-fill", + "unicode": "e96f", + "unicode_decimal": 59759 + }, + { + "icon_id": "17104938", + "name": "arrow-up-fill", + "font_class": "arrow-up-fill", + "unicode": "e970", + "unicode_decimal": 59760 + }, + { + "icon_id": "17104939", + "name": "arrow-up-line", + "font_class": "arrow-up-line", + "unicode": "e971", + "unicode_decimal": 59761 + }, + { + "icon_id": "17104940", + "name": "arrow-up-down-line", + "font_class": "arrow-up-down-line", + "unicode": "e972", + "unicode_decimal": 59762 + }, + { + "icon_id": "17104941", + "name": "arrow-right-up-line", + "font_class": "arrow-right-up-line", + "unicode": "e973", + "unicode_decimal": 59763 + }, + { + "icon_id": "17104944", + "name": "checkbox-blank-circle-fill", + "font_class": "checkbox-blank-circle-fill", + "unicode": "e974", + "unicode_decimal": 59764 + }, + { + "icon_id": "17104945", + "name": "checkbox-blank-circle-line", + "font_class": "checkbox-blank-circle-line", + "unicode": "e975", + "unicode_decimal": 59765 + }, + { + "icon_id": "17104885", + "name": "add-fill", + "font_class": "add-fill", + "unicode": "e8f0", + "unicode_decimal": 59632 + }, + { + "icon_id": "17104886", + "name": "alarm-fill", + "font_class": "alarm-fill", + "unicode": "e8f1", + "unicode_decimal": 59633 + }, + { + "icon_id": "17104887", + "name": "alarm-line", + "font_class": "alarm-line", + "unicode": "e940", + "unicode_decimal": 59712 + }, + { + "icon_id": "17104888", + "name": "alarm-warning-fill", + "font_class": "alarm-warning-fill", + "unicode": "e941", + "unicode_decimal": 59713 + }, + { + "icon_id": "17104891", + "name": "alarm-warning-line", + "font_class": "alarm-warning-line", + "unicode": "e947", + "unicode_decimal": 59719 + }, + { + "icon_id": "17104894", + "name": "apps-2-fill", + "font_class": "apps-2-fill", + "unicode": "e948", + "unicode_decimal": 59720 + }, + { + "icon_id": "17104895", + "name": "apps-fill", + "font_class": "apps-fill", + "unicode": "e949", + "unicode_decimal": 59721 + }, + { + "icon_id": "17104896", + "name": "arrow-down-fill", + "font_class": "arrow-down-fill", + "unicode": "e94a", + "unicode_decimal": 59722 + }, + { + "icon_id": "17104897", + "name": "arrow-down-line", + "font_class": "arrow-down-line", + "unicode": "e94b", + "unicode_decimal": 59723 + }, + { + "icon_id": "17104898", + "name": "arrow-down-circle-fill", + "font_class": "arrow-down-circle-fill", + "unicode": "e94c", + "unicode_decimal": 59724 + }, + { + "icon_id": "17104899", + "name": "arrow-down-s-fill", + "font_class": "arrow-down-s-fill", + "unicode": "e94d", + "unicode_decimal": 59725 + }, + { + "icon_id": "17104901", + "name": "arrow-down-s-line", + "font_class": "arrow-down-s-line", + "unicode": "e94e", + "unicode_decimal": 59726 + }, + { + "icon_id": "17104903", + "name": "arrow-drop-down-line", + "font_class": "arrow-drop-down-line", + "unicode": "e94f", + "unicode_decimal": 59727 + }, + { + "icon_id": "17104904", + "name": "arrow-drop-down-fill", + "font_class": "arrow-drop-down-fill", + "unicode": "e950", + "unicode_decimal": 59728 + }, + { + "icon_id": "17104905", + "name": "arrow-drop-left-line", + "font_class": "arrow-drop-left-line", + "unicode": "e951", + "unicode_decimal": 59729 + }, + { + "icon_id": "17104906", + "name": "arrow-drop-left-fill", + "font_class": "arrow-drop-left-fill", + "unicode": "e952", + "unicode_decimal": 59730 + }, + { + "icon_id": "17104907", + "name": "arrow-drop-right-line", + "font_class": "arrow-drop-right-line", + "unicode": "e953", + "unicode_decimal": 59731 + }, + { + "icon_id": "17104908", + "name": "arrow-drop-right-fill", + "font_class": "arrow-drop-right-fill", + "unicode": "e954", + "unicode_decimal": 59732 + }, + { + "icon_id": "17104909", + "name": "arrow-go-back-fill", + "font_class": "arrow-go-back-fill", + "unicode": "e955", + "unicode_decimal": 59733 + }, + { + "icon_id": "17104910", + "name": "arrow-drop-up-fill", + "font_class": "arrow-drop-up-fill", + "unicode": "e956", + "unicode_decimal": 59734 + }, + { + "icon_id": "17104913", + "name": "arrow-drop-up-line", + "font_class": "arrow-drop-up-line", + "unicode": "e957", + "unicode_decimal": 59735 + }, + { + "icon_id": "17104914", + "name": "arrow-go-forward-fill", + "font_class": "arrow-go-forward-fill", + "unicode": "e958", + "unicode_decimal": 59736 + }, + { + "icon_id": "17104915", + "name": "arrow-go-forward-line", + "font_class": "arrow-go-forward-line", + "unicode": "e959", + "unicode_decimal": 59737 + }, + { + "icon_id": "17104916", + "name": "arrow-left-circle-line", + "font_class": "arrow-left-circle-line", + "unicode": "e95a", + "unicode_decimal": 59738 + }, + { + "icon_id": "17104917", + "name": "arrow-left-down-fill", + "font_class": "arrow-left-down-fill", + "unicode": "e95b", + "unicode_decimal": 59739 + }, + { + "icon_id": "17104918", + "name": "arrow-left-fill", + "font_class": "arrow-left-fill", + "unicode": "e95c", + "unicode_decimal": 59740 + }, + { + "icon_id": "17104919", + "name": "arrow-left-line", + "font_class": "arrow-left-line", + "unicode": "e95d", + "unicode_decimal": 59741 + }, + { + "icon_id": "17104920", + "name": "arrow-left-down-line", + "font_class": "arrow-left-down-line", + "unicode": "e95e", + "unicode_decimal": 59742 + }, + { + "icon_id": "17104921", + "name": "arrow-left-right-fill", + "font_class": "arrow-left-right-fill", + "unicode": "e95f", + "unicode_decimal": 59743 + }, + { + "icon_id": "17104922", + "name": "arrow-left-right-line", + "font_class": "arrow-left-right-line", + "unicode": "e960", + "unicode_decimal": 59744 + }, + { + "icon_id": "17104923", + "name": "arrow-left-s-fill", + "font_class": "arrow-left-s-fill", + "unicode": "e961", + "unicode_decimal": 59745 + }, + { + "icon_id": "17104924", + "name": "arrow-left-s-line", + "font_class": "arrow-left-s-line", + "unicode": "e962", + "unicode_decimal": 59746 + }, + { + "icon_id": "17104925", + "name": "arrow-left-up-fill", + "font_class": "arrow-left-up-fill", + "unicode": "e963", + "unicode_decimal": 59747 + }, + { + "icon_id": "17104926", + "name": "arrow-left-up-line", + "font_class": "arrow-left-up-line", + "unicode": "e964", + "unicode_decimal": 59748 + }, + { + "icon_id": "17104927", + "name": "arrow-right-circle-fill", + "font_class": "arrow-right-circle-fill", + "unicode": "e965", + "unicode_decimal": 59749 + }, + { + "icon_id": "17104928", + "name": "arrow-right-down-line", + "font_class": "arrow-right-down-line", + "unicode": "e966", + "unicode_decimal": 59750 + }, + { + "icon_id": "17104929", + "name": "arrow-right-fill", + "font_class": "arrow-right-fill", + "unicode": "e967", + "unicode_decimal": 59751 + }, + { + "icon_id": "17104930", + "name": "arrow-right-down-fill", + "font_class": "arrow-right-down-fill", + "unicode": "e968", + "unicode_decimal": 59752 + }, + { + "icon_id": "17104931", + "name": "arrow-right-line", + "font_class": "arrow-right-line", + "unicode": "e969", + "unicode_decimal": 59753 + }, + { + "icon_id": "17104932", + "name": "arrow-right-up-fill", + "font_class": "arrow-right-up-fill", + "unicode": "e96a", + "unicode_decimal": 59754 + }, + { + "icon_id": "17104933", + "name": "arrow-right-s-fill", + "font_class": "arrow-right-s-fill", + "unicode": "e96b", + "unicode_decimal": 59755 + }, + { + "icon_id": "17104934", + "name": "arrow-right-s-line", + "font_class": "arrow-right-s-line", + "unicode": "e96c", + "unicode_decimal": 59756 + }, + { + "icon_id": "17104935", + "name": "arrow-up-circle-fill", + "font_class": "arrow-up-circle-fill", + "unicode": "e96d", + "unicode_decimal": 59757 + }, + { + "icon_id": "17105000", + "name": "eye-close-line", + "font_class": "eye-close-line", + "unicode": "e939", + "unicode_decimal": 59705 + }, + { + "icon_id": "17105004", + "name": "eye-close-fill", + "font_class": "eye-close-fill", + "unicode": "e93a", + "unicode_decimal": 59706 + }, + { + "icon_id": "17105005", + "name": "download-line", + "font_class": "download-line", + "unicode": "e93b", + "unicode_decimal": 59707 + }, + { + "icon_id": "17105006", + "name": "eye-2-fill", + "font_class": "eye-2-fill", + "unicode": "e93c", + "unicode_decimal": 59708 + }, + { + "icon_id": "17105007", + "name": "eye-off-fill", + "font_class": "eye-off-fill", + "unicode": "e93d", + "unicode_decimal": 59709 + }, + { + "icon_id": "17105164", + "name": "upload-2-fill", + "font_class": "upload-2-fill", + "unicode": "e93e", + "unicode_decimal": 59710 + }, + { + "icon_id": "17105170", + "name": "upload-2-line", + "font_class": "upload-2-line", + "unicode": "e940", + "unicode_decimal": 59712 + }, + { + "icon_id": "17105174", + "name": "upload-fill", + "font_class": "upload-fill", + "unicode": "e941", + "unicode_decimal": 59713 + }, + { + "icon_id": "17105175", + "name": "upload-line", + "font_class": "upload-line", + "unicode": "e942", + "unicode_decimal": 59714 + }, + { + "icon_id": "17105176", + "name": "zoom-in-fill", + "font_class": "zoom-in-fill", + "unicode": "e943", + "unicode_decimal": 59715 + }, + { + "icon_id": "17105178", + "name": "zoom-out-line", + "font_class": "zoom-out-line", + "unicode": "e944", + "unicode_decimal": 59716 + }, + { + "icon_id": "17105179", + "name": "zoom-out-fill", + "font_class": "zoom-out-fill", + "unicode": "e945", + "unicode_decimal": 59717 + }, + { + "icon_id": "17105180", + "name": "zoom-in-line", + "font_class": "zoom-in-line", + "unicode": "e946", + "unicode_decimal": 59718 + }, + { + "icon_id": "17103497", + "name": "contacts-book-upload-fill", + "font_class": "contacts-book-upload-fill", + "unicode": "e8f2", + "unicode_decimal": 59634 + }, + { + "icon_id": "17103499", + "name": "contacts-book-upload-line", + "font_class": "contacts-book-upload-line", + "unicode": "e8f3", + "unicode_decimal": 59635 + }, + { + "icon_id": "17103959", + "name": "24-hours-fill", + "font_class": "24-hours-fill", + "unicode": "e8f4", + "unicode_decimal": 59636 + }, + { + "icon_id": "17103963", + "name": "coupon-4-fill", + "font_class": "coupon-4-fill", + "unicode": "e8f5", + "unicode_decimal": 59637 + }, + { + "icon_id": "17103964", + "name": "coupon-5-fill", + "font_class": "coupon-5-fill", + "unicode": "e8f6", + "unicode_decimal": 59638 + }, + { + "icon_id": "17103967", + "name": "coupon-4-line", + "font_class": "coupon-4-line", + "unicode": "e8f7", + "unicode_decimal": 59639 + }, + { + "icon_id": "17103969", + "name": "coupon-3-line", + "font_class": "coupon-3-line", + "unicode": "e8f8", + "unicode_decimal": 59640 + }, + { + "icon_id": "17103970", + "name": "coupon-3-fill", + "font_class": "coupon-3-fill", + "unicode": "e8f9", + "unicode_decimal": 59641 + }, + { + "icon_id": "17103972", + "name": "coupon-fill", + "font_class": "coupon-fill", + "unicode": "e8fa", + "unicode_decimal": 59642 + }, + { + "icon_id": "17103974", + "name": "exchange-dollar-fill", + "font_class": "exchange-dollar-fill", + "unicode": "e8fb", + "unicode_decimal": 59643 + }, + { + "icon_id": "17103975", + "name": "exchange-funds-line", + "font_class": "exchange-funds-line", + "unicode": "e8fc", + "unicode_decimal": 59644 + }, + { + "icon_id": "17103976", + "name": "exchange-funds-fill", + "font_class": "exchange-funds-fill", + "unicode": "e8fd", + "unicode_decimal": 59645 + }, + { + "icon_id": "17103977", + "name": "coupon-5-line", + "font_class": "coupon-5-line", + "unicode": "e8ff", + "unicode_decimal": 59647 + }, + { + "icon_id": "17103978", + "name": "coupon-line", + "font_class": "coupon-line", + "unicode": "e900", + "unicode_decimal": 59648 + }, + { + "icon_id": "17103983", + "name": "exchange-dollar-line", + "font_class": "exchange-dollar-line", + "unicode": "e901", + "unicode_decimal": 59649 + }, + { + "icon_id": "17103984", + "name": "exchange-cny-fill", + "font_class": "exchange-cny-fill", + "unicode": "e902", + "unicode_decimal": 59650 + }, + { + "icon_id": "17103985", + "name": "currency-line", + "font_class": "currency-line", + "unicode": "e903", + "unicode_decimal": 59651 + }, + { + "icon_id": "17103986", + "name": "exchange-cny-line", + "font_class": "exchange-cny-line", + "unicode": "e904", + "unicode_decimal": 59652 + }, + { + "icon_id": "17103987", + "name": "24-hours-line", + "font_class": "24-hours-line", + "unicode": "e905", + "unicode_decimal": 59653 + }, + { + "icon_id": "17103988", + "name": "currency-fill", + "font_class": "currency-fill", + "unicode": "e906", + "unicode_decimal": 59654 + }, + { + "icon_id": "17104020", + "name": "safe-fill", + "font_class": "safe-fill", + "unicode": "e907", + "unicode_decimal": 59655 + }, + { + "icon_id": "17104572", + "name": "album-fill", + "font_class": "album-fill", + "unicode": "e908", + "unicode_decimal": 59656 + }, + { + "icon_id": "17104574", + "name": "album-line", + "font_class": "album-line", + "unicode": "e909", + "unicode_decimal": 59657 + }, + { + "icon_id": "17104575", + "name": "aspect-ratio-line", + "font_class": "aspect-ratio-line", + "unicode": "e90a", + "unicode_decimal": 59658 + }, + { + "icon_id": "17104576", + "name": "broadcast-fill", + "font_class": "broadcast-fill", + "unicode": "e90b", + "unicode_decimal": 59659 + }, + { + "icon_id": "17104577", + "name": "camera-2-fill", + "font_class": "camera-2-fill", + "unicode": "e90e", + "unicode_decimal": 59662 + }, + { + "icon_id": "17104578", + "name": "broadcast-line", + "font_class": "broadcast-line", + "unicode": "e90f", + "unicode_decimal": 59663 + }, + { + "icon_id": "17104579", + "name": "camera-3-fill", + "font_class": "camera-3-fill", + "unicode": "e910", + "unicode_decimal": 59664 + }, + { + "icon_id": "17104580", + "name": "camera-2-line", + "font_class": "camera-2-line", + "unicode": "e911", + "unicode_decimal": 59665 + }, + { + "icon_id": "17104581", + "name": "camera-3-line", + "font_class": "camera-3-line", + "unicode": "e912", + "unicode_decimal": 59666 + }, + { + "icon_id": "17104582", + "name": "camera-lens-fill", + "font_class": "camera-lens-fill", + "unicode": "e913", + "unicode_decimal": 59667 + }, + { + "icon_id": "17104583", + "name": "camera-switch-fill", + "font_class": "camera-switch-fill", + "unicode": "e914", + "unicode_decimal": 59668 + }, + { + "icon_id": "17104585", + "name": "camera-fill", + "font_class": "camera-fill", + "unicode": "e915", + "unicode_decimal": 59669 + }, + { + "icon_id": "17104586", + "name": "camera-line", + "font_class": "camera-line", + "unicode": "e916", + "unicode_decimal": 59670 + }, + { + "icon_id": "17104587", + "name": "camera-off-fill", + "font_class": "camera-off-fill", + "unicode": "e917", + "unicode_decimal": 59671 + }, + { + "icon_id": "17104588", + "name": "camera-off-line", + "font_class": "camera-off-line", + "unicode": "e918", + "unicode_decimal": 59672 + }, + { + "icon_id": "17104589", + "name": "clapperboard-fill", + "font_class": "clapperboard-fill", + "unicode": "e919", + "unicode_decimal": 59673 + }, + { + "icon_id": "17104590", + "name": "camera-switch-line", + "font_class": "camera-switch-line", + "unicode": "e91a", + "unicode_decimal": 59674 + }, + { + "icon_id": "17104591", + "name": "clapperboard-line", + "font_class": "clapperboard-line", + "unicode": "e91b", + "unicode_decimal": 59675 + }, + { + "icon_id": "17104592", + "name": "closed-captioning-fill", + "font_class": "closed-captioning-fill", + "unicode": "e91c", + "unicode_decimal": 59676 + }, + { + "icon_id": "17104593", + "name": "disc-line", + "font_class": "disc-line", + "unicode": "e91d", + "unicode_decimal": 59677 + }, + { + "icon_id": "17104594", + "name": "closed-captioning-line", + "font_class": "closed-captioning-line", + "unicode": "e91e", + "unicode_decimal": 59678 + }, + { + "icon_id": "17104595", + "name": "dv-fill", + "font_class": "dv-fill", + "unicode": "e91f", + "unicode_decimal": 59679 + }, + { + "icon_id": "17104596", + "name": "disc-fill", + "font_class": "disc-fill", + "unicode": "e920", + "unicode_decimal": 59680 + }, + { + "icon_id": "17104601", + "name": "dv-line", + "font_class": "dv-line", + "unicode": "e921", + "unicode_decimal": 59681 + }, + { + "icon_id": "17104602", + "name": "equalizer-fill", + "font_class": "equalizer-fill", + "unicode": "e922", + "unicode_decimal": 59682 + }, + { + "icon_id": "17104603", + "name": "equalizer-line", + "font_class": "equalizer-line", + "unicode": "e923", + "unicode_decimal": 59683 + }, + { + "icon_id": "17104604", + "name": "film-fill", + "font_class": "film-fill", + "unicode": "e924", + "unicode_decimal": 59684 + }, + { + "icon_id": "17104605", + "name": "film-line", + "font_class": "film-line", + "unicode": "e925", + "unicode_decimal": 59685 + }, + { + "icon_id": "17104606", + "name": "fullscreen-exit-fill", + "font_class": "fullscreen-exit-fill", + "unicode": "e926", + "unicode_decimal": 59686 + }, + { + "icon_id": "17104607", + "name": "fullscreen-line", + "font_class": "fullscreen-line", + "unicode": "e927", + "unicode_decimal": 59687 + }, + { + "icon_id": "17104608", + "name": "fullscreen-fill", + "font_class": "fullscreen-fill", + "unicode": "e928", + "unicode_decimal": 59688 + }, + { + "icon_id": "17104610", + "name": "fullscreen-exit-line", + "font_class": "fullscreen-exit-line", + "unicode": "e929", + "unicode_decimal": 59689 + }, + { + "icon_id": "17104741", + "name": "video-download-fill", + "font_class": "video-download-fill", + "unicode": "e92a", + "unicode_decimal": 59690 + }, + { + "icon_id": "17104742", + "name": "video-add-fill", + "font_class": "video-add-fill", + "unicode": "e92b", + "unicode_decimal": 59691 + }, + { + "icon_id": "17104743", + "name": "video-download-line", + "font_class": "video-download-line", + "unicode": "e92c", + "unicode_decimal": 59692 + }, + { + "icon_id": "17104746", + "name": "video-upload-fill", + "font_class": "video-upload-fill", + "unicode": "e92d", + "unicode_decimal": 59693 + }, + { + "icon_id": "17104747", + "name": "video-upload-line", + "font_class": "video-upload-line", + "unicode": "e92e", + "unicode_decimal": 59694 + }, + { + "icon_id": "17104748", + "name": "vidicon-2-fill", + "font_class": "vidicon-2-fill", + "unicode": "e92f", + "unicode_decimal": 59695 + }, + { + "icon_id": "17104749", + "name": "vidicon-2-line", + "font_class": "vidicon-2-line", + "unicode": "e931", + "unicode_decimal": 59697 + }, + { + "icon_id": "17104750", + "name": "vidicon-fill", + "font_class": "vidicon-fill", + "unicode": "e932", + "unicode_decimal": 59698 + }, + { + "icon_id": "17104751", + "name": "vidicon-line", + "font_class": "vidicon-line", + "unicode": "e933", + "unicode_decimal": 59699 + }, + { + "icon_id": "17104989", + "name": "download-fill", + "font_class": "download-fill", + "unicode": "e934", + "unicode_decimal": 59700 + }, + { + "icon_id": "17104993", + "name": "download-2-line", + "font_class": "download-2-line", + "unicode": "e935", + "unicode_decimal": 59701 + }, + { + "icon_id": "17104996", + "name": "eye-2-line", + "font_class": "eye-2-line", + "unicode": "e936", + "unicode_decimal": 59702 + }, + { + "icon_id": "17104998", + "name": "eye-fill", + "font_class": "eye-fill", + "unicode": "e937", + "unicode_decimal": 59703 + }, + { + "icon_id": "17104999", + "name": "eye-line", + "font_class": "eye-line", + "unicode": "e938", + "unicode_decimal": 59704 + }, + { + "icon_id": "17104942", + "name": "check-double-line", + "font_class": "check-double-line", + "unicode": "e89b", + "unicode_decimal": 59547 + }, + { + "icon_id": "17104943", + "name": "check-line", + "font_class": "check-line", + "unicode": "e89c", + "unicode_decimal": 59548 + }, + { + "icon_id": "17104946", + "name": "check-double-fill", + "font_class": "check-double-fill", + "unicode": "e8ec", + "unicode_decimal": 59628 + }, + { + "icon_id": "17104947", + "name": "check-fill", + "font_class": "check-fill", + "unicode": "e8ed", + "unicode_decimal": 59629 + }, + { + "icon_id": "17104961", + "name": "close-line", + "font_class": "close-line", + "unicode": "e8ee", + "unicode_decimal": 59630 + }, + { + "icon_id": "17104963", + "name": "close-fill", + "font_class": "close-fill", + "unicode": "e8ef", + "unicode_decimal": 59631 + }, + { + "icon_id": "20568485", + "name": "more-line", + "font_class": "more-line-vertical", + "unicode": "f07a", + "unicode_decimal": 61562 + }, + { + "icon_id": "17103330", + "name": "computer-fill", + "font_class": "computer-fill", + "unicode": "e84e", + "unicode_decimal": 59470 + }, + { + "icon_id": "17103331", + "name": "computer-line", + "font_class": "computer-line", + "unicode": "e858", + "unicode_decimal": 59480 + }, + { + "icon_id": "17103332", + "name": "cpu-fill", + "font_class": "cpu-fill", + "unicode": "e85c", + "unicode_decimal": 59484 + }, + { + "icon_id": "17103333", + "name": "cpu-line", + "font_class": "cpu-line", + "unicode": "e85f", + "unicode_decimal": 59487 + }, + { + "icon_id": "17103366", + "name": "install-line", + "font_class": "install-line", + "unicode": "e860", + "unicode_decimal": 59488 + }, + { + "icon_id": "17103367", + "name": "install-fill", + "font_class": "install-fill", + "unicode": "e865", + "unicode_decimal": 59493 + }, + { + "icon_id": "17103426", + "name": "signal-wifi-1-fill", + "font_class": "signal-wifi-1-fill", + "unicode": "e866", + "unicode_decimal": 59494 + }, + { + "icon_id": "17103427", + "name": "signal-wifi-2-fill", + "font_class": "signal-wifi-2-fill", + "unicode": "e867", + "unicode_decimal": 59495 + }, + { + "icon_id": "17103428", + "name": "signal-wifi-1-line", + "font_class": "signal-wifi-1-line", + "unicode": "e868", + "unicode_decimal": 59496 + }, + { + "icon_id": "17103429", + "name": "signal-wifi-3-line", + "font_class": "signal-wifi-3-line", + "unicode": "e86b", + "unicode_decimal": 59499 + }, + { + "icon_id": "17103430", + "name": "signal-wifi-3-fill", + "font_class": "signal-wifi-3-fill", + "unicode": "e86c", + "unicode_decimal": 59500 + }, + { + "icon_id": "17103431", + "name": "signal-wifi-error-fill", + "font_class": "signal-wifi-error-fill", + "unicode": "e86d", + "unicode_decimal": 59501 + }, + { + "icon_id": "17103432", + "name": "signal-wifi-2-line", + "font_class": "signal-wifi-2-line", + "unicode": "e86e", + "unicode_decimal": 59502 + }, + { + "icon_id": "17103433", + "name": "signal-wifi-error-line", + "font_class": "signal-wifi-error-line", + "unicode": "e86f", + "unicode_decimal": 59503 + }, + { + "icon_id": "17103434", + "name": "signal-wifi-fill", + "font_class": "signal-wifi-fill", + "unicode": "e870", + "unicode_decimal": 59504 + }, + { + "icon_id": "17103435", + "name": "signal-wifi-line", + "font_class": "signal-wifi-line", + "unicode": "e871", + "unicode_decimal": 59505 + }, + { + "icon_id": "17103436", + "name": "signal-wifi-off-fill", + "font_class": "signal-wifi-off-fill", + "unicode": "e872", + "unicode_decimal": 59506 + }, + { + "icon_id": "17103438", + "name": "signal-wifi-off-line", + "font_class": "signal-wifi-off-line", + "unicode": "e873", + "unicode_decimal": 59507 + }, + { + "icon_id": "17103449", + "name": "u-disk-fill", + "font_class": "u-disk-fill", + "unicode": "e874", + "unicode_decimal": 59508 + }, + { + "icon_id": "17103450", + "name": "u-disk-line", + "font_class": "u-disk-line", + "unicode": "e875", + "unicode_decimal": 59509 + }, + { + "icon_id": "17103452", + "name": "uninstall-fill", + "font_class": "uninstall-fill", + "unicode": "e876", + "unicode_decimal": 59510 + }, + { + "icon_id": "17103453", + "name": "uninstall-line", + "font_class": "uninstall-line", + "unicode": "e877", + "unicode_decimal": 59511 + }, + { + "icon_id": "17103454", + "name": "usb-fill", + "font_class": "usb-fill", + "unicode": "e878", + "unicode_decimal": 59512 + }, + { + "icon_id": "17103455", + "name": "usb-line", + "font_class": "usb-line", + "unicode": "e87d", + "unicode_decimal": 59517 + }, + { + "icon_id": "17103456", + "name": "wifi-line", + "font_class": "wifi-line", + "unicode": "e87e", + "unicode_decimal": 59518 + }, + { + "icon_id": "17103457", + "name": "wifi-off-line", + "font_class": "wifi-off-line", + "unicode": "e89a", + "unicode_decimal": 59546 + }, + { + "icon_id": "17103460", + "name": "wireless-charging-fill", + "font_class": "wireless-charging-fill", + "unicode": "e89d", + "unicode_decimal": 59549 + }, + { + "icon_id": "17103461", + "name": "wireless-charging-line", + "font_class": "wireless-charging-line", + "unicode": "e89e", + "unicode_decimal": 59550 + }, + { + "icon_id": "17103478", + "name": "book-2-fill", + "font_class": "book-2-fill", + "unicode": "e89f", + "unicode_decimal": 59551 + }, + { + "icon_id": "17103479", + "name": "book-3-fill", + "font_class": "book-3-fill", + "unicode": "e8a0", + "unicode_decimal": 59552 + }, + { + "icon_id": "17103482", + "name": "book-2-line", + "font_class": "book-2-line", + "unicode": "e8a1", + "unicode_decimal": 59553 + }, + { + "icon_id": "17103484", + "name": "book-mark-fill", + "font_class": "book-mark-fill", + "unicode": "e8a2", + "unicode_decimal": 59554 + }, + { + "icon_id": "17103485", + "name": "book-open-fill", + "font_class": "book-open-fill", + "unicode": "e8a3", + "unicode_decimal": 59555 + }, + { + "icon_id": "17103486", + "name": "book-open-line", + "font_class": "book-open-line", + "unicode": "e8a4", + "unicode_decimal": 59556 + }, + { + "icon_id": "17103488", + "name": "booklet-line", + "font_class": "booklet-line", + "unicode": "e8a5", + "unicode_decimal": 59557 + }, + { + "icon_id": "17103489", + "name": "booklet-fill", + "font_class": "booklet-fill", + "unicode": "e8a6", + "unicode_decimal": 59558 + }, + { + "icon_id": "17103490", + "name": "book-3-line", + "font_class": "book-3-line", + "unicode": "e8a7", + "unicode_decimal": 59559 + }, + { + "icon_id": "17103492", + "name": "contacts-book-2-fill", + "font_class": "contacts-book-2-fill", + "unicode": "e8a8", + "unicode_decimal": 59560 + }, + { + "icon_id": "17103494", + "name": "contacts-book-2-line", + "font_class": "contacts-book-2-line", + "unicode": "e8a9", + "unicode_decimal": 59561 + }, + { + "icon_id": "17103495", + "name": "contacts-book-fill", + "font_class": "contacts-book-fill", + "unicode": "e8aa", + "unicode_decimal": 59562 + }, + { + "icon_id": "17103496", + "name": "contacts-book-line", + "font_class": "contacts-book-line", + "unicode": "e8ab", + "unicode_decimal": 59563 + }, + { + "icon_id": "17103498", + "name": "book-mark-line", + "font_class": "book-mark-line", + "unicode": "e8ac", + "unicode_decimal": 59564 + }, + { + "icon_id": "17103949", + "name": "coin-fill", + "font_class": "coin-fill", + "unicode": "e8ad", + "unicode_decimal": 59565 + }, + { + "icon_id": "17104119", + "name": "dislike-fill", + "font_class": "dislike-fill", + "unicode": "e8ae", + "unicode_decimal": 59566 + }, + { + "icon_id": "17104120", + "name": "heart-add-fill", + "font_class": "heart-add-fill", + "unicode": "e8af", + "unicode_decimal": 59567 + }, + { + "icon_id": "17104121", + "name": "heart-fill", + "font_class": "heart-fill", + "unicode": "e8b0", + "unicode_decimal": 59568 + }, + { + "icon_id": "17104122", + "name": "heart-2-fill", + "font_class": "heart-2-fill", + "unicode": "e8b1", + "unicode_decimal": 59569 + }, + { + "icon_id": "17104123", + "name": "heart-3-fill", + "font_class": "heart-3-fill", + "unicode": "e8b2", + "unicode_decimal": 59570 + }, + { + "icon_id": "17104126", + "name": "heart-line", + "font_class": "heart-line", + "unicode": "e8b3", + "unicode_decimal": 59571 + }, + { + "icon_id": "17104127", + "name": "heart-3-line", + "font_class": "heart-3-line", + "unicode": "e8b4", + "unicode_decimal": 59572 + }, + { + "icon_id": "17104129", + "name": "heart-add-line", + "font_class": "heart-add-line", + "unicode": "e8b5", + "unicode_decimal": 59573 + }, + { + "icon_id": "17104130", + "name": "heart-2-line", + "font_class": "heart-2-line", + "unicode": "e8b6", + "unicode_decimal": 59574 + }, + { + "icon_id": "17104138", + "name": "hearts-fill", + "font_class": "hearts-fill", + "unicode": "e8b7", + "unicode_decimal": 59575 + }, + { + "icon_id": "17104139", + "name": "hearts-line", + "font_class": "hearts-line", + "unicode": "e8b8", + "unicode_decimal": 59576 + }, + { + "icon_id": "17104140", + "name": "heart-pulse-line", + "font_class": "heart-pulse-line", + "unicode": "e8b9", + "unicode_decimal": 59577 + }, + { + "icon_id": "17104201", + "name": "centos-line", + "font_class": "centos-line", + "unicode": "e8ba", + "unicode_decimal": 59578 + }, + { + "icon_id": "17104203", + "name": "centos-fill", + "font_class": "centos-fill", + "unicode": "e8bb", + "unicode_decimal": 59579 + }, + { + "icon_id": "17104754", + "name": "volume-down-line", + "font_class": "volume-down-line", + "unicode": "e8bc", + "unicode_decimal": 59580 + }, + { + "icon_id": "17104756", + "name": "volume-mute-fill", + "font_class": "volume-mute-fill", + "unicode": "e8bd", + "unicode_decimal": 59581 + }, + { + "icon_id": "17104757", + "name": "volume-mute-line", + "font_class": "volume-mute-line", + "unicode": "e8be", + "unicode_decimal": 59582 + }, + { + "icon_id": "17104758", + "name": "volume-off-vibrate-line", + "font_class": "volume-off-vibrate-line", + "unicode": "e8bf", + "unicode_decimal": 59583 + }, + { + "icon_id": "17104759", + "name": "volume-off-vibrate-fill", + "font_class": "volume-off-vibrate-fill", + "unicode": "e8c4", + "unicode_decimal": 59588 + }, + { + "icon_id": "17104760", + "name": "volume-up-fill", + "font_class": "volume-up-fill", + "unicode": "e8c5", + "unicode_decimal": 59589 + }, + { + "icon_id": "17104761", + "name": "volume-up-line", + "font_class": "volume-up-line", + "unicode": "e8c6", + "unicode_decimal": 59590 + }, + { + "icon_id": "17104763", + "name": "volume-vibrate-fill", + "font_class": "volume-vibrate-fill", + "unicode": "e8c7", + "unicode_decimal": 59591 + }, + { + "icon_id": "17104948", + "name": "checkbox-blank-line", + "font_class": "checkbox-blank-line", + "unicode": "e8c8", + "unicode_decimal": 59592 + }, + { + "icon_id": "17104949", + "name": "checkbox-blank-fill", + "font_class": "checkbox-blank-fill", + "unicode": "e8c9", + "unicode_decimal": 59593 + }, + { + "icon_id": "17104950", + "name": "checkbox-circle-line", + "font_class": "checkbox-circle-line", + "unicode": "e8ca", + "unicode_decimal": 59594 + }, + { + "icon_id": "17104951", + "name": "checkbox-circle-fill", + "font_class": "checkbox-circle-fill", + "unicode": "e8cb", + "unicode_decimal": 59595 + }, + { + "icon_id": "17104952", + "name": "checkbox-fill", + "font_class": "checkbox-fill", + "unicode": "e8cc", + "unicode_decimal": 59596 + }, + { + "icon_id": "17104953", + "name": "checkbox-indeterminate-fill", + "font_class": "checkbox-indeterminate-fill", + "unicode": "e8cd", + "unicode_decimal": 59597 + }, + { + "icon_id": "17104954", + "name": "checkbox-line", + "font_class": "checkbox-line", + "unicode": "e8ce", + "unicode_decimal": 59598 + }, + { + "icon_id": "17104955", + "name": "checkbox-multiple-blank-fill", + "font_class": "checkbox-multiple-blank-fill", + "unicode": "e8cf", + "unicode_decimal": 59599 + }, + { + "icon_id": "17104956", + "name": "checkbox-indeterminate-line", + "font_class": "checkbox-indeterminate-line", + "unicode": "e8d0", + "unicode_decimal": 59600 + }, + { + "icon_id": "17104957", + "name": "checkbox-multiple-blank-line", + "font_class": "checkbox-multiple-blank-line", + "unicode": "e8d1", + "unicode_decimal": 59601 + }, + { + "icon_id": "17104958", + "name": "checkbox-multiple-line", + "font_class": "checkbox-multiple-line", + "unicode": "e8d2", + "unicode_decimal": 59602 + }, + { + "icon_id": "17104959", + "name": "close-circle-fill", + "font_class": "close-circle-fill", + "unicode": "e8d3", + "unicode_decimal": 59603 + }, + { + "icon_id": "17104960", + "name": "checkbox-multiple-fill", + "font_class": "checkbox-multiple-fill", + "unicode": "e8d4", + "unicode_decimal": 59604 + }, + { + "icon_id": "17104962", + "name": "close-circle-line", + "font_class": "close-circle-line", + "unicode": "e8d5", + "unicode_decimal": 59605 + }, + { + "icon_id": "17105038", + "name": "lock-2-fill", + "font_class": "lock-2-fill", + "unicode": "e8d6", + "unicode_decimal": 59606 + }, + { + "icon_id": "17105039", + "name": "lock-2-line", + "font_class": "lock-2-line", + "unicode": "e8d7", + "unicode_decimal": 59607 + }, + { + "icon_id": "17105053", + "name": "lock-unlock-fill", + "font_class": "lock-unlock-fill", + "unicode": "e8d8", + "unicode_decimal": 59608 + }, + { + "icon_id": "17105073", + "name": "menu-fold-fill", + "font_class": "menu-fold-fill", + "unicode": "e8d9", + "unicode_decimal": 59609 + }, + { + "icon_id": "17105075", + "name": "menu-unfold-fill", + "font_class": "menu-unfold-fill", + "unicode": "e8da", + "unicode_decimal": 59610 + }, + { + "icon_id": "17105120", + "name": "shield-check-fill", + "font_class": "shield-check-fill", + "unicode": "e8db", + "unicode_decimal": 59611 + }, + { + "icon_id": "17105121", + "name": "shield-check-line", + "font_class": "shield-check-line", + "unicode": "e8dc", + "unicode_decimal": 59612 + }, + { + "icon_id": "17105122", + "name": "shield-cross-fill", + "font_class": "shield-cross-fill", + "unicode": "e8dd", + "unicode_decimal": 59613 + }, + { + "icon_id": "17105123", + "name": "shield-fill", + "font_class": "shield-fill", + "unicode": "e8de", + "unicode_decimal": 59614 + }, + { + "icon_id": "17105124", + "name": "shield-cross-line", + "font_class": "shield-cross-line", + "unicode": "e8df", + "unicode_decimal": 59615 + }, + { + "icon_id": "17105125", + "name": "shield-flash-fill", + "font_class": "shield-flash-fill", + "unicode": "e8e0", + "unicode_decimal": 59616 + }, + { + "icon_id": "17105126", + "name": "shield-flash-line", + "font_class": "shield-flash-line", + "unicode": "e8e1", + "unicode_decimal": 59617 + }, + { + "icon_id": "17105127", + "name": "shield-keyhole-fill", + "font_class": "shield-keyhole-fill", + "unicode": "e8e2", + "unicode_decimal": 59618 + }, + { + "icon_id": "17105128", + "name": "shield-keyhole-line", + "font_class": "shield-keyhole-line", + "unicode": "e8e3", + "unicode_decimal": 59619 + }, + { + "icon_id": "17105129", + "name": "more-line", + "font_class": "more-line", + "unicode": "e8e4", + "unicode_decimal": 59620 + }, + { + "icon_id": "17105130", + "name": "shield-line", + "font_class": "shield-line", + "unicode": "e8e5", + "unicode_decimal": 59621 + }, + { + "icon_id": "17105131", + "name": "shield-star-fill", + "font_class": "shield-star-fill", + "unicode": "e8e6", + "unicode_decimal": 59622 + }, + { + "icon_id": "17105132", + "name": "shield-user-fill", + "font_class": "shield-user-fill", + "unicode": "e8e7", + "unicode_decimal": 59623 + }, + { + "icon_id": "17105133", + "name": "shield-star-line", + "font_class": "shield-star-line", + "unicode": "e8e8", + "unicode_decimal": 59624 + }, + { + "icon_id": "17105134", + "name": "shield-user-line", + "font_class": "shield-user-line", + "unicode": "e8e9", + "unicode_decimal": 59625 + }, + { + "icon_id": "17586353", + "name": "select-download", + "font_class": "select-download", + "unicode": "f048", + "unicode_decimal": 61512 + }, + { + "icon_id": "17586354", + "name": "full-download", + "font_class": "full-download", + "unicode": "f049", + "unicode_decimal": 61513 + }, + { + "icon_id": "17562998", + "name": "firmware-manager", + "font_class": "firmware-manager", + "unicode": "f047", + "unicode_decimal": 61511 + }, + { + "icon_id": "17562879", + "name": "laptop-set-fill", + "font_class": "laptop-set-fill", + "unicode": "f046", + "unicode_decimal": 61510 + }, + { + "icon_id": "17457576", + "name": "turn", + "font_class": "turn", + "unicode": "f03d", + "unicode_decimal": 61501 + }, + { + "icon_id": "17418114", + "name": "health-degree", + "font_class": "health-degree", + "unicode": "f027", + "unicode_decimal": 61479 + }, + { + "icon_id": "17418115", + "name": "stoppage", + "font_class": "stoppage", + "unicode": "f02d", + "unicode_decimal": 61485 + }, + { + "icon_id": "17418116", + "name": "regular", + "font_class": "regular", + "unicode": "f03c", + "unicode_decimal": 61500 + }, + { + "icon_id": "16895347", + "name": "bxs-camera", + "font_class": "bxs-camera", + "unicode": "e826", + "unicode_decimal": 59430 + }, + { + "icon_id": "16895348", + "name": "bxs-camera-plus", + "font_class": "bxs-camera-plus", + "unicode": "e827", + "unicode_decimal": 59431 + }, + { + "icon_id": "16895354", + "name": "bxs-caret-up-circle", + "font_class": "bxs-caret-up-circle", + "unicode": "e828", + "unicode_decimal": 59432 + }, + { + "icon_id": "16895355", + "name": "bxs-caret-left-circle", + "font_class": "bxs-caret-left-circle", + "unicode": "e829", + "unicode_decimal": 59433 + }, + { + "icon_id": "16895356", + "name": "bxs-caret-right-circle", + "font_class": "bxs-caret-right-circle", + "unicode": "e83b", + "unicode_decimal": 59451 + }, + { + "icon_id": "16895357", + "name": "bxs-caret-down-circle", + "font_class": "bxs-caret-down-circle", + "unicode": "e83c", + "unicode_decimal": 59452 + }, + { + "icon_id": "16895374", + "name": "bxs-chip", + "font_class": "bxs-chip", + "unicode": "e83d", + "unicode_decimal": 59453 + }, + { + "icon_id": "16895375", + "name": "bxs-cloud-lightning", + "font_class": "bxs-cloud-lightning", + "unicode": "e83e", + "unicode_decimal": 59454 + }, + { + "icon_id": "16895376", + "name": "bxs-cloud-rain", + "font_class": "bxs-cloud-rain", + "unicode": "e83f", + "unicode_decimal": 59455 + }, + { + "icon_id": "16895377", + "name": "bxs-cloud-download", + "font_class": "bxs-cloud-download", + "unicode": "e840", + "unicode_decimal": 59456 + }, + { + "icon_id": "16895378", + "name": "bxs-cloud", + "font_class": "bxs-cloud", + "unicode": "e841", + "unicode_decimal": 59457 + }, + { + "icon_id": "16895379", + "name": "bxs-cloud-upload", + "font_class": "bxs-cloud-upload", + "unicode": "e842", + "unicode_decimal": 59458 + }, + { + "icon_id": "16895403", + "name": "bxs-cuboid", + "font_class": "bxs-cuboid", + "unicode": "e843", + "unicode_decimal": 59459 + }, + { + "icon_id": "16895409", + "name": "bxs-dashboard", + "font_class": "bxs-dashboard", + "unicode": "e844", + "unicode_decimal": 59460 + }, + { + "icon_id": "16895413", + "name": "bxs-direction-left", + "font_class": "bxs-direction-left", + "unicode": "e845", + "unicode_decimal": 59461 + }, + { + "icon_id": "16895414", + "name": "bxs-direction-right", + "font_class": "bxs-direction-right", + "unicode": "e846", + "unicode_decimal": 59462 + }, + { + "icon_id": "16895577", + "name": "bxs-report", + "font_class": "bxs-report", + "unicode": "e847", + "unicode_decimal": 59463 + }, + { + "icon_id": "16895578", + "name": "bxs-receipt", + "font_class": "bxs-receipt", + "unicode": "e848", + "unicode_decimal": 59464 + }, + { + "icon_id": "16895600", + "name": "bxs-select-multiple", + "font_class": "bxs-select-multiple", + "unicode": "e849", + "unicode_decimal": 59465 + }, + { + "icon_id": "16895601", + "name": "bxs-shield", + "font_class": "bxs-shield", + "unicode": "e84a", + "unicode_decimal": 59466 + }, + { + "icon_id": "16895602", + "name": "bxs-shield-alt-2", + "font_class": "bxs-shield-alt-2", + "unicode": "e84b", + "unicode_decimal": 59467 + }, + { + "icon_id": "16895619", + "name": "bxs-square", + "font_class": "bxs-square", + "unicode": "e84c", + "unicode_decimal": 59468 + }, + { + "icon_id": "16895620", + "name": "bxs-square-rounded", + "font_class": "bxs-square-rounded", + "unicode": "e84d", + "unicode_decimal": 59469 + }, + { + "icon_id": "16895655", + "name": "bxs-wallet-alt", + "font_class": "bxs-wallet-alt", + "unicode": "e84f", + "unicode_decimal": 59471 + }, + { + "icon_id": "16895701", + "name": "bxs-news", + "font_class": "bxs-news", + "unicode": "e850", + "unicode_decimal": 59472 + }, + { + "icon_id": "16895702", + "name": "bxs-time", + "font_class": "bxs-time", + "unicode": "e855", + "unicode_decimal": 59477 + }, + { + "icon_id": "16895703", + "name": "bxs-tone", + "font_class": "bxs-tone", + "unicode": "e856", + "unicode_decimal": 59478 + }, + { + "icon_id": "16895704", + "name": "bxs-trophy", + "font_class": "bxs-trophy1", + "unicode": "e857", + "unicode_decimal": 59479 + }, + { + "icon_id": "16895811", + "name": "bxs-badge-check", + "font_class": "bxs-badge-check", + "unicode": "e859", + "unicode_decimal": 59481 + }, + { + "icon_id": "16895812", + "name": "bxs-badge", + "font_class": "bxs-badge", + "unicode": "e85a", + "unicode_decimal": 59482 + }, + { + "icon_id": "16895815", + "name": "bxs-band-aid", + "font_class": "bxs-band-aid", + "unicode": "e85b", + "unicode_decimal": 59483 + }, + { + "icon_id": "16896013", + "name": "bxs-hand-right", + "font_class": "bxs-hand-right", + "unicode": "e8c0", + "unicode_decimal": 59584 + }, + { + "icon_id": "16896014", + "name": "bxs-hand-left", + "font_class": "bxs-hand-left", + "unicode": "e8c1", + "unicode_decimal": 59585 + }, + { + "icon_id": "16896015", + "name": "bxs-hand-down", + "font_class": "bxs-hand-down", + "unicode": "e8c2", + "unicode_decimal": 59586 + }, + { + "icon_id": "16896017", + "name": "bxs-hand-up", + "font_class": "bxs-hand-up", + "unicode": "e8c3", + "unicode_decimal": 59587 + }, + { + "icon_id": "16896182", + "name": "bxs-skip-next-circle", + "font_class": "bxs-skip-next-circle", + "unicode": "e90c", + "unicode_decimal": 59660 + }, + { + "icon_id": "16896184", + "name": "bxs-skip-previous-circle", + "font_class": "bxs-skip-previous-circle", + "unicode": "e90d", + "unicode_decimal": 59661 + }, + { + "icon_id": "16895493", + "name": "bxs-hourglass-top", + "font_class": "bxs-hourglass-top", + "unicode": "e824", + "unicode_decimal": 59428 + }, + { + "icon_id": "16895494", + "name": "bxs-hourglass-bottom", + "font_class": "bxs-hourglass-bottom", + "unicode": "e825", + "unicode_decimal": 59429 + }, + { + "icon_id": "16895569", + "name": "bxs-pyramid", + "font_class": "bxs-pyramid", + "unicode": "e82a", + "unicode_decimal": 59434 + }, + { + "icon_id": "16895570", + "name": "bxs-quote-alt-left", + "font_class": "bxs-quote-alt-left", + "unicode": "e82b", + "unicode_decimal": 59435 + }, + { + "icon_id": "16895571", + "name": "bxs-quote-left", + "font_class": "bxs-quote-left", + "unicode": "e830", + "unicode_decimal": 59440 + }, + { + "icon_id": "16895572", + "name": "bxs-quote-right", + "font_class": "bxs-quote-right", + "unicode": "e837", + "unicode_decimal": 59447 + }, + { + "icon_id": "16895573", + "name": "bxs-quote-alt-right", + "font_class": "bxs-quote-alt-right", + "unicode": "e838", + "unicode_decimal": 59448 + }, + { + "icon_id": "16895576", + "name": "bxs-quote-single-left", + "font_class": "bxs-quote-single-left", + "unicode": "e839", + "unicode_decimal": 59449 + }, + { + "icon_id": "16895579", + "name": "bxs-quote-single-right", + "font_class": "bxs-quote-single-right", + "unicode": "e83a", + "unicode_decimal": 59450 + }, + { + "icon_id": "16896120", + "name": "bxs-phone-call", + "font_class": "bxs-phone-call", + "unicode": "e8ea", + "unicode_decimal": 59626 + }, + { + "icon_id": "16896121", + "name": "bxs-phone-outgoing", + "font_class": "bxs-phone-outgoing", + "unicode": "e8eb", + "unicode_decimal": 59627 + }, + { + "icon_id": "16896156", + "name": "bxs-rename", + "font_class": "bxs-rename", + "unicode": "e8fe", + "unicode_decimal": 59646 + }, + { + "icon_id": "16896245", + "name": "bxs-videos", + "font_class": "bxs-videos", + "unicode": "e930", + "unicode_decimal": 59696 + }, + { + "icon_id": "16896275", + "name": "bxs-trophy", + "font_class": "bxs-trophy", + "unicode": "e93f", + "unicode_decimal": 59711 + }, + { + "icon_id": "17103593", + "name": "folder-2-fill", + "font_class": "folder-2-fill", + "unicode": "e7c3", + "unicode_decimal": 59331 + }, + { + "icon_id": "17103595", + "name": "folder-3-fill", + "font_class": "folder-3-fill", + "unicode": "e7c4", + "unicode_decimal": 59332 + }, + { + "icon_id": "17103596", + "name": "folder-4-fill", + "font_class": "folder-4-fill", + "unicode": "e7c5", + "unicode_decimal": 59333 + }, + { + "icon_id": "17103597", + "name": "folder-3-line", + "font_class": "folder-3-line", + "unicode": "e7c6", + "unicode_decimal": 59334 + }, + { + "icon_id": "17103598", + "name": "folder-5-fill", + "font_class": "folder-5-fill", + "unicode": "e7c7", + "unicode_decimal": 59335 + }, + { + "icon_id": "17103599", + "name": "folder-5-line", + "font_class": "folder-5-line", + "unicode": "e7c8", + "unicode_decimal": 59336 + }, + { + "icon_id": "17103600", + "name": "folder-add-fill", + "font_class": "folder-add-fill", + "unicode": "e7c9", + "unicode_decimal": 59337 + }, + { + "icon_id": "17103602", + "name": "folder-add-line", + "font_class": "folder-add-line", + "unicode": "e7ca", + "unicode_decimal": 59338 + }, + { + "icon_id": "17103604", + "name": "folder-chart-2-line", + "font_class": "folder-chart-2-line", + "unicode": "e7cb", + "unicode_decimal": 59339 + }, + { + "icon_id": "17103605", + "name": "folder-chart-2-fill", + "font_class": "folder-chart-2-fill", + "unicode": "e7cc", + "unicode_decimal": 59340 + }, + { + "icon_id": "17103606", + "name": "folder-chart-fill", + "font_class": "folder-chart-fill", + "unicode": "e7cd", + "unicode_decimal": 59341 + }, + { + "icon_id": "17103607", + "name": "folder-chart-line", + "font_class": "folder-chart-line", + "unicode": "e7ce", + "unicode_decimal": 59342 + }, + { + "icon_id": "17103608", + "name": "folder-download-fill", + "font_class": "folder-download-fill", + "unicode": "e7cf", + "unicode_decimal": 59343 + }, + { + "icon_id": "17103609", + "name": "folder-fill", + "font_class": "folder-fill", + "unicode": "e7d0", + "unicode_decimal": 59344 + }, + { + "icon_id": "17103610", + "name": "folder-4-line", + "font_class": "folder-4-line", + "unicode": "e7d1", + "unicode_decimal": 59345 + }, + { + "icon_id": "17103611", + "name": "folder-download-line", + "font_class": "folder-download-line", + "unicode": "e7d2", + "unicode_decimal": 59346 + }, + { + "icon_id": "17103612", + "name": "folder-forbid-fill", + "font_class": "folder-forbid-fill", + "unicode": "e7d3", + "unicode_decimal": 59347 + }, + { + "icon_id": "17103613", + "name": "folder-forbid-line", + "font_class": "folder-forbid-line", + "unicode": "e7d4", + "unicode_decimal": 59348 + }, + { + "icon_id": "17103614", + "name": "folder-2-line", + "font_class": "folder-2-line", + "unicode": "e7d5", + "unicode_decimal": 59349 + }, + { + "icon_id": "17103615", + "name": "folder-history-fill", + "font_class": "folder-history-fill", + "unicode": "e7d6", + "unicode_decimal": 59350 + }, + { + "icon_id": "17103616", + "name": "folder-history-line", + "font_class": "folder-history-line", + "unicode": "e7d7", + "unicode_decimal": 59351 + }, + { + "icon_id": "17103617", + "name": "folder-info-fill", + "font_class": "folder-info-fill", + "unicode": "e7d8", + "unicode_decimal": 59352 + }, + { + "icon_id": "17103618", + "name": "folder-keyhole-line", + "font_class": "folder-keyhole-line", + "unicode": "e7d9", + "unicode_decimal": 59353 + }, + { + "icon_id": "17103619", + "name": "folder-info-line", + "font_class": "folder-info-line", + "unicode": "e7da", + "unicode_decimal": 59354 + }, + { + "icon_id": "17103620", + "name": "folder-keyhole-fill", + "font_class": "folder-keyhole-fill", + "unicode": "e7db", + "unicode_decimal": 59355 + }, + { + "icon_id": "17103621", + "name": "folder-lock-fill", + "font_class": "folder-lock-fill", + "unicode": "e7dc", + "unicode_decimal": 59356 + }, + { + "icon_id": "17103622", + "name": "folder-line", + "font_class": "folder-line", + "unicode": "e7dd", + "unicode_decimal": 59357 + }, + { + "icon_id": "17103623", + "name": "folder-music-fill", + "font_class": "folder-music-fill", + "unicode": "e7de", + "unicode_decimal": 59358 + }, + { + "icon_id": "17103624", + "name": "folder-lock-line", + "font_class": "folder-lock-line", + "unicode": "e7df", + "unicode_decimal": 59359 + }, + { + "icon_id": "17103625", + "name": "folder-open-fill", + "font_class": "folder-open-fill", + "unicode": "e7e0", + "unicode_decimal": 59360 + }, + { + "icon_id": "17103626", + "name": "folder-open-line", + "font_class": "folder-open-line", + "unicode": "e7e1", + "unicode_decimal": 59361 + }, + { + "icon_id": "17103627", + "name": "folder-received-line", + "font_class": "folder-received-line", + "unicode": "e7e2", + "unicode_decimal": 59362 + }, + { + "icon_id": "17103628", + "name": "folder-reduce-fill", + "font_class": "folder-reduce-fill", + "unicode": "e7e3", + "unicode_decimal": 59363 + }, + { + "icon_id": "17103629", + "name": "folder-received-fill", + "font_class": "folder-received-fill", + "unicode": "e7e4", + "unicode_decimal": 59364 + }, + { + "icon_id": "17103630", + "name": "folder-reduce-line", + "font_class": "folder-reduce-line", + "unicode": "e7e5", + "unicode_decimal": 59365 + }, + { + "icon_id": "17103631", + "name": "folder-shared-fill", + "font_class": "folder-shared-fill", + "unicode": "e7e6", + "unicode_decimal": 59366 + }, + { + "icon_id": "17103632", + "name": "folder-music-line", + "font_class": "folder-music-line", + "unicode": "e7e7", + "unicode_decimal": 59367 + }, + { + "icon_id": "17103633", + "name": "folder-settings-fill", + "font_class": "folder-settings-fill", + "unicode": "e7e8", + "unicode_decimal": 59368 + }, + { + "icon_id": "17103634", + "name": "folder-shield-2-fill", + "font_class": "folder-shield-2-fill", + "unicode": "e7e9", + "unicode_decimal": 59369 + }, + { + "icon_id": "17103635", + "name": "folder-shield-2-line", + "font_class": "folder-shield-2-line", + "unicode": "e7ea", + "unicode_decimal": 59370 + }, + { + "icon_id": "17103636", + "name": "folder-transfer-fill", + "font_class": "folder-transfer-fill", + "unicode": "e7eb", + "unicode_decimal": 59371 + }, + { + "icon_id": "17103637", + "name": "folder-shield-line", + "font_class": "folder-shield-line", + "unicode": "e7ec", + "unicode_decimal": 59372 + }, + { + "icon_id": "17103638", + "name": "folder-shield-fill", + "font_class": "folder-shield-fill", + "unicode": "e7ed", + "unicode_decimal": 59373 + }, + { + "icon_id": "17103639", + "name": "folder-shared-line", + "font_class": "folder-shared-line", + "unicode": "e7ee", + "unicode_decimal": 59374 + }, + { + "icon_id": "17103640", + "name": "folder-unknow-line", + "font_class": "folder-unknow-line", + "unicode": "e7ef", + "unicode_decimal": 59375 + }, + { + "icon_id": "17103641", + "name": "folder-unknow-fill", + "font_class": "folder-unknow-fill", + "unicode": "e7f0", + "unicode_decimal": 59376 + }, + { + "icon_id": "17103642", + "name": "folder-transfer-line", + "font_class": "folder-transfer-line", + "unicode": "e7f1", + "unicode_decimal": 59377 + }, + { + "icon_id": "17103643", + "name": "folder-upload-fill", + "font_class": "folder-upload-fill", + "unicode": "e7f2", + "unicode_decimal": 59378 + }, + { + "icon_id": "17103644", + "name": "folder-user-fill", + "font_class": "folder-user-fill", + "unicode": "e7f3", + "unicode_decimal": 59379 + }, + { + "icon_id": "17103645", + "name": "folder-settings-line", + "font_class": "folder-settings-line", + "unicode": "e7f4", + "unicode_decimal": 59380 + }, + { + "icon_id": "17103646", + "name": "folder-user-line", + "font_class": "folder-user-line", + "unicode": "e7f5", + "unicode_decimal": 59381 + }, + { + "icon_id": "17103647", + "name": "folder-warning-fill", + "font_class": "folder-warning-fill", + "unicode": "e7f6", + "unicode_decimal": 59382 + }, + { + "icon_id": "17103648", + "name": "folder-zip-fill", + "font_class": "folder-zip-fill", + "unicode": "e7f7", + "unicode_decimal": 59383 + }, + { + "icon_id": "17103649", + "name": "folder-zip-line", + "font_class": "folder-zip-line", + "unicode": "e7f8", + "unicode_decimal": 59384 + }, + { + "icon_id": "17103650", + "name": "folders-fill", + "font_class": "folders-fill", + "unicode": "e7f9", + "unicode_decimal": 59385 + }, + { + "icon_id": "17103652", + "name": "folder-warning-line", + "font_class": "folder-warning-line", + "unicode": "e7fa", + "unicode_decimal": 59386 + }, + { + "icon_id": "17103655", + "name": "folder-upload-line", + "font_class": "folder-upload-line", + "unicode": "e7fb", + "unicode_decimal": 59387 + }, + { + "icon_id": "17103656", + "name": "newspaper-fill", + "font_class": "newspaper-fill", + "unicode": "e7fc", + "unicode_decimal": 59388 + }, + { + "icon_id": "17103657", + "name": "newspaper-line", + "font_class": "newspaper-line", + "unicode": "e7fd", + "unicode_decimal": 59389 + }, + { + "icon_id": "17103658", + "name": "numbers-fill", + "font_class": "numbers-fill", + "unicode": "e7fe", + "unicode_decimal": 59390 + }, + { + "icon_id": "17103660", + "name": "pages-line", + "font_class": "pages-line", + "unicode": "e7ff", + "unicode_decimal": 59391 + }, + { + "icon_id": "17103661", + "name": "pages-fill", + "font_class": "pages-fill", + "unicode": "e800", + "unicode_decimal": 59392 + }, + { + "icon_id": "17103662", + "name": "folders-line", + "font_class": "folders-line", + "unicode": "e801", + "unicode_decimal": 59393 + }, + { + "icon_id": "17103663", + "name": "sticky-note-2-fill", + "font_class": "sticky-note-2-fill", + "unicode": "e802", + "unicode_decimal": 59394 + }, + { + "icon_id": "17103664", + "name": "numbers-line", + "font_class": "numbers-line", + "unicode": "e803", + "unicode_decimal": 59395 + }, + { + "icon_id": "17103665", + "name": "sticky-note-fill", + "font_class": "sticky-note-fill", + "unicode": "e804", + "unicode_decimal": 59396 + }, + { + "icon_id": "17103666", + "name": "sticky-note-2-line", + "font_class": "sticky-note-2-line", + "unicode": "e805", + "unicode_decimal": 59397 + }, + { + "icon_id": "17103667", + "name": "sticky-note-line", + "font_class": "sticky-note-line", + "unicode": "e806", + "unicode_decimal": 59398 + }, + { + "icon_id": "17103668", + "name": "survey-fill", + "font_class": "survey-fill", + "unicode": "e807", + "unicode_decimal": 59399 + }, + { + "icon_id": "17103669", + "name": "task-line", + "font_class": "task-line", + "unicode": "e808", + "unicode_decimal": 59400 + }, + { + "icon_id": "17103670", + "name": "survey-line", + "font_class": "survey-line", + "unicode": "e809", + "unicode_decimal": 59401 + }, + { + "icon_id": "17103671", + "name": "task-fill", + "font_class": "task-fill1", + "unicode": "e80a", + "unicode_decimal": 59402 + }, + { + "icon_id": "17103672", + "name": "todo-fill", + "font_class": "todo-fill", + "unicode": "e80b", + "unicode_decimal": 59403 + }, + { + "icon_id": "17103674", + "name": "todo-line", + "font_class": "todo-line", + "unicode": "e80c", + "unicode_decimal": 59404 + }, + { + "icon_id": "17103743", + "name": "bring-to-front", + "font_class": "bring-to-front", + "unicode": "e80d", + "unicode_decimal": 59405 + }, + { + "icon_id": "17103744", + "name": "bring-forward", + "font_class": "bring-forward", + "unicode": "e80e", + "unicode_decimal": 59406 + }, + { + "icon_id": "17104142", + "name": "heart-pulse-fill", + "font_class": "heart-pulse-fill", + "unicode": "e80f", + "unicode_decimal": 59407 + }, + { + "icon_id": "17104419", + "name": "compass-3-fill", + "font_class": "compass-3-fill", + "unicode": "e810", + "unicode_decimal": 59408 + }, + { + "icon_id": "17104421", + "name": "compass-line", + "font_class": "compass-line", + "unicode": "e811", + "unicode_decimal": 59409 + }, + { + "icon_id": "17104449", + "name": "earth-fill", + "font_class": "earth-fill", + "unicode": "e812", + "unicode_decimal": 59410 + }, + { + "icon_id": "17104450", + "name": "earth-line", + "font_class": "earth-line", + "unicode": "e813", + "unicode_decimal": 59411 + }, + { + "icon_id": "17104453", + "name": "luggage-deposit-line", + "font_class": "luggage-deposit-line", + "unicode": "e814", + "unicode_decimal": 59412 + }, + { + "icon_id": "17104464", + "name": "luggage-deposit-fill", + "font_class": "luggage-deposit-fill", + "unicode": "e815", + "unicode_decimal": 59413 + }, + { + "icon_id": "17104615", + "name": "headphone-fill", + "font_class": "headphone-fill", + "unicode": "e816", + "unicode_decimal": 59414 + }, + { + "icon_id": "17104616", + "name": "image-2-fill", + "font_class": "image-2-fill", + "unicode": "e817", + "unicode_decimal": 59415 + }, + { + "icon_id": "17104617", + "name": "headphone-line", + "font_class": "headphone-line", + "unicode": "e818", + "unicode_decimal": 59416 + }, + { + "icon_id": "17104621", + "name": "image-edit-fill", + "font_class": "image-edit-fill", + "unicode": "e819", + "unicode_decimal": 59417 + }, + { + "icon_id": "17104622", + "name": "image-add-fill", + "font_class": "image-add-fill", + "unicode": "e81a", + "unicode_decimal": 59418 + }, + { + "icon_id": "17104625", + "name": "image-fill", + "font_class": "image-fill", + "unicode": "e81b", + "unicode_decimal": 59419 + }, + { + "icon_id": "17104630", + "name": "mic-fill", + "font_class": "mic-fill", + "unicode": "e81c", + "unicode_decimal": 59420 + }, + { + "icon_id": "17104632", + "name": "mic-2-fill", + "font_class": "mic-2-fill", + "unicode": "e81d", + "unicode_decimal": 59421 + }, + { + "icon_id": "17104667", + "name": "picture-in-picture-2-fill", + "font_class": "picture-in-picture-2-fill", + "unicode": "e81e", + "unicode_decimal": 59422 + }, + { + "icon_id": "17104669", + "name": "picture-in-picture-exit-fill", + "font_class": "picture-in-picture-exit-fill", + "unicode": "e81f", + "unicode_decimal": 59423 + }, + { + "icon_id": "17104670", + "name": "picture-in-picture-2-line", + "font_class": "picture-in-picture-2-line", + "unicode": "e820", + "unicode_decimal": 59424 + }, + { + "icon_id": "17104671", + "name": "picture-in-picture-exit-line", + "font_class": "picture-in-picture-exit-line", + "unicode": "e821", + "unicode_decimal": 59425 + }, + { + "icon_id": "17104734", + "name": "stop-mini-line", + "font_class": "stop-mini-line", + "unicode": "e822", + "unicode_decimal": 59426 + }, + { + "icon_id": "17104735", + "name": "stop-mini-fill", + "font_class": "stop-mini-fill", + "unicode": "e823", + "unicode_decimal": 59427 + }, + { + "icon_id": "17104797", + "name": "game-fill", + "font_class": "game-fill", + "unicode": "e82c", + "unicode_decimal": 59436 + }, + { + "icon_id": "17104798", + "name": "game-line", + "font_class": "game-line", + "unicode": "e82d", + "unicode_decimal": 59437 + }, + { + "icon_id": "17104806", + "name": "leaf-line", + "font_class": "leaf-line", + "unicode": "e82e", + "unicode_decimal": 59438 + }, + { + "icon_id": "17104807", + "name": "leaf-fill", + "font_class": "leaf-fill", + "unicode": "e82f", + "unicode_decimal": 59439 + }, + { + "icon_id": "17104824", + "name": "plug-2-fill", + "font_class": "plug-2-fill", + "unicode": "e831", + "unicode_decimal": 59441 + }, + { + "icon_id": "17104825", + "name": "plug-2-line", + "font_class": "plug-2-line", + "unicode": "e832", + "unicode_decimal": 59442 + }, + { + "icon_id": "17104826", + "name": "plug-fill", + "font_class": "plug-fill", + "unicode": "e833", + "unicode_decimal": 59443 + }, + { + "icon_id": "17104827", + "name": "plug-line", + "font_class": "plug-line", + "unicode": "e834", + "unicode_decimal": 59444 + }, + { + "icon_id": "17104834", + "name": "seedling-fill", + "font_class": "seedling-fill", + "unicode": "e835", + "unicode_decimal": 59445 + }, + { + "icon_id": "17104835", + "name": "seedling-line", + "font_class": "seedling-line", + "unicode": "e836", + "unicode_decimal": 59446 + }, + { + "icon_id": "17104986", + "name": "download-cloud-2-fill", + "font_class": "download-cloud-2-fill", + "unicode": "e851", + "unicode_decimal": 59473 + }, + { + "icon_id": "17104987", + "name": "download-cloud-line", + "font_class": "download-cloud-line", + "unicode": "e852", + "unicode_decimal": 59474 + }, + { + "icon_id": "17104988", + "name": "download-cloud-fill", + "font_class": "download-cloud-fill", + "unicode": "e853", + "unicode_decimal": 59475 + }, + { + "icon_id": "17104997", + "name": "download-cloud-2-line", + "font_class": "download-cloud-2-line", + "unicode": "e854", + "unicode_decimal": 59476 + }, + { + "icon_id": "17105031", + "name": "loader-2-line", + "font_class": "loader-2-line", + "unicode": "e85d", + "unicode_decimal": 59485 + }, + { + "icon_id": "17105037", + "name": "loader-fill", + "font_class": "loader-fill", + "unicode": "e85e", + "unicode_decimal": 59486 + }, + { + "icon_id": "17105052", + "name": "logout-box-fill", + "font_class": "logout-box-fill", + "unicode": "e861", + "unicode_decimal": 59489 + }, + { + "icon_id": "17105054", + "name": "logout-box-line", + "font_class": "logout-box-line", + "unicode": "e862", + "unicode_decimal": 59490 + }, + { + "icon_id": "17105055", + "name": "logout-box-r-fill", + "font_class": "logout-box-r-fill", + "unicode": "e863", + "unicode_decimal": 59491 + }, + { + "icon_id": "17105056", + "name": "logout-box-r-line", + "font_class": "logout-box-r-line", + "unicode": "e864", + "unicode_decimal": 59492 + }, + { + "icon_id": "17105083", + "name": "notification-badge-fill", + "font_class": "notification-badge-fill", + "unicode": "e869", + "unicode_decimal": 59497 + }, + { + "icon_id": "17105084", + "name": "notification-badge-line", + "font_class": "notification-badge-line", + "unicode": "e86a", + "unicode_decimal": 59498 + }, + { + "icon_id": "17105146", + "name": "thumb-up-line", + "font_class": "thumb-up-line", + "unicode": "e879", + "unicode_decimal": 59513 + }, + { + "icon_id": "17105151", + "name": "thumb-down-fill", + "font_class": "thumb-down-fill", + "unicode": "e87a", + "unicode_decimal": 59514 + }, + { + "icon_id": "17105152", + "name": "thumb-up-fill", + "font_class": "thumb-up-fill", + "unicode": "e87b", + "unicode_decimal": 59515 + }, + { + "icon_id": "17105155", + "name": "thumb-down-line", + "font_class": "thumb-down-line", + "unicode": "e87c", + "unicode_decimal": 59516 + }, + { + "icon_id": "17353760", + "name": "cloud-line-fill", + "font_class": "cloud-line-fill", + "unicode": "f045", + "unicode_decimal": 61509 + }, + { + "icon_id": "17102832", + "name": "mail-volume-fill", + "font_class": "mail-volume-fill", + "unicode": "e7ae", + "unicode_decimal": 59310 + }, + { + "icon_id": "17102834", + "name": "printer-fill", + "font_class": "printer-fill", + "unicode": "e7af", + "unicode_decimal": 59311 + }, + { + "icon_id": "17102836", + "name": "printer-cloud-fill", + "font_class": "printer-cloud-fill", + "unicode": "e7b0", + "unicode_decimal": 59312 + }, + { + "icon_id": "17102837", + "name": "printer-cloud-line", + "font_class": "printer-cloud-line", + "unicode": "e7b1", + "unicode_decimal": 59313 + }, + { + "icon_id": "17102838", + "name": "printer-line", + "font_class": "printer-line", + "unicode": "e7b2", + "unicode_decimal": 59314 + }, + { + "icon_id": "17102839", + "name": "profile-fill", + "font_class": "profile-fill", + "unicode": "e7b3", + "unicode_decimal": 59315 + }, + { + "icon_id": "17102840", + "name": "profile-line", + "font_class": "profile-line", + "unicode": "e7b4", + "unicode_decimal": 59316 + }, + { + "icon_id": "17102841", + "name": "projector-2-fill", + "font_class": "projector-2-fill", + "unicode": "e7b5", + "unicode_decimal": 59317 + }, + { + "icon_id": "17102842", + "name": "projector-2-line", + "font_class": "projector-2-line", + "unicode": "e7b6", + "unicode_decimal": 59318 + }, + { + "icon_id": "17102847", + "name": "registered-fill", + "font_class": "registered-fill", + "unicode": "e7b7", + "unicode_decimal": 59319 + }, + { + "icon_id": "17102848", + "name": "registered-line", + "font_class": "registered-line", + "unicode": "e7b8", + "unicode_decimal": 59320 + }, + { + "icon_id": "17102855", + "name": "service-fill", + "font_class": "service-fill", + "unicode": "e7b9", + "unicode_decimal": 59321 + }, + { + "icon_id": "17102861", + "name": "service-line", + "font_class": "service-line", + "unicode": "e7ba", + "unicode_decimal": 59322 + }, + { + "icon_id": "17102865", + "name": "slideshow-fill", + "font_class": "slideshow-fill", + "unicode": "e7bb", + "unicode_decimal": 59323 + }, + { + "icon_id": "17102866", + "name": "slideshow-line", + "font_class": "slideshow-line", + "unicode": "e7bc", + "unicode_decimal": 59324 + }, + { + "icon_id": "17102870", + "name": "window-2-line", + "font_class": "window-2-line", + "unicode": "e7bd", + "unicode_decimal": 59325 + }, + { + "icon_id": "17102871", + "name": "window-2-fill", + "font_class": "window-2-fill", + "unicode": "e7be", + "unicode_decimal": 59326 + }, + { + "icon_id": "17102872", + "name": "window-fill", + "font_class": "window-fill", + "unicode": "e7bf", + "unicode_decimal": 59327 + }, + { + "icon_id": "17102873", + "name": "window-line", + "font_class": "window-line", + "unicode": "e7c0", + "unicode_decimal": 59328 + }, + { + "icon_id": "17102932", + "name": "chat-history-fill", + "font_class": "chat-history-fill", + "unicode": "e7c1", + "unicode_decimal": 59329 + }, + { + "icon_id": "17102933", + "name": "chat-history-line", + "font_class": "chat-history-line", + "unicode": "e7c2", + "unicode_decimal": 59330 + }, + { + "icon_id": "17102797", + "name": "mail-add-line", + "font_class": "mail-add-line", + "unicode": "e704", + "unicode_decimal": 59140 + }, + { + "icon_id": "17102798", + "name": "mail-check-fill", + "font_class": "mail-check-fill", + "unicode": "e724", + "unicode_decimal": 59172 + }, + { + "icon_id": "17102801", + "name": "mail-check-line", + "font_class": "mail-check-line", + "unicode": "e728", + "unicode_decimal": 59176 + }, + { + "icon_id": "17102802", + "name": "mail-add-fill", + "font_class": "mail-add-fill", + "unicode": "e798", + "unicode_decimal": 59288 + }, + { + "icon_id": "17102803", + "name": "mail-close-line", + "font_class": "mail-close-line", + "unicode": "e799", + "unicode_decimal": 59289 + }, + { + "icon_id": "17102804", + "name": "mail-download-line", + "font_class": "mail-download-line", + "unicode": "e79a", + "unicode_decimal": 59290 + }, + { + "icon_id": "17102805", + "name": "mail-close-fill", + "font_class": "mail-close-fill", + "unicode": "e79b", + "unicode_decimal": 59291 + }, + { + "icon_id": "17102806", + "name": "mail-fill", + "font_class": "mail-fill", + "unicode": "e79c", + "unicode_decimal": 59292 + }, + { + "icon_id": "17102807", + "name": "mail-forbid-fill", + "font_class": "mail-forbid-fill", + "unicode": "e79d", + "unicode_decimal": 59293 + }, + { + "icon_id": "17102808", + "name": "mail-line", + "font_class": "mail-line", + "unicode": "e79e", + "unicode_decimal": 59294 + }, + { + "icon_id": "17102809", + "name": "mail-forbid-line", + "font_class": "mail-forbid-line", + "unicode": "e79f", + "unicode_decimal": 59295 + }, + { + "icon_id": "17102810", + "name": "mail-lock-fill", + "font_class": "mail-lock-fill", + "unicode": "e7a0", + "unicode_decimal": 59296 + }, + { + "icon_id": "17102811", + "name": "mail-download-fill", + "font_class": "mail-download-fill", + "unicode": "e7a1", + "unicode_decimal": 59297 + }, + { + "icon_id": "17102812", + "name": "mail-lock-line", + "font_class": "mail-lock-line", + "unicode": "e7a2", + "unicode_decimal": 59298 + }, + { + "icon_id": "17102813", + "name": "mail-open-fill", + "font_class": "mail-open-fill", + "unicode": "e7a3", + "unicode_decimal": 59299 + }, + { + "icon_id": "17102814", + "name": "mail-open-line", + "font_class": "mail-open-line", + "unicode": "e7a4", + "unicode_decimal": 59300 + }, + { + "icon_id": "17102815", + "name": "mail-send-line", + "font_class": "mail-send-line", + "unicode": "e7a5", + "unicode_decimal": 59301 + }, + { + "icon_id": "17102816", + "name": "mail-send-fill", + "font_class": "mail-send-fill", + "unicode": "e7a6", + "unicode_decimal": 59302 + }, + { + "icon_id": "17102817", + "name": "mail-settings-line", + "font_class": "mail-settings-line", + "unicode": "e7a7", + "unicode_decimal": 59303 + }, + { + "icon_id": "17102818", + "name": "mail-star-line", + "font_class": "mail-star-line", + "unicode": "e7a8", + "unicode_decimal": 59304 + }, + { + "icon_id": "17102819", + "name": "mail-star-fill", + "font_class": "mail-star-fill", + "unicode": "e7a9", + "unicode_decimal": 59305 + }, + { + "icon_id": "17102820", + "name": "mail-unread-line", + "font_class": "mail-unread-line", + "unicode": "e7aa", + "unicode_decimal": 59306 + }, + { + "icon_id": "17102821", + "name": "mail-unread-fill", + "font_class": "mail-unread-fill", + "unicode": "e7ab", + "unicode_decimal": 59307 + }, + { + "icon_id": "17102822", + "name": "mail-volume-line", + "font_class": "mail-volume-line", + "unicode": "e7ac", + "unicode_decimal": 59308 + }, + { + "icon_id": "17102830", + "name": "mail-settings-fill", + "font_class": "mail-settings-fill", + "unicode": "e7ad", + "unicode_decimal": 59309 + }, + { + "icon_id": "17102554", + "name": "building-fill", + "font_class": "building-fill1", + "unicode": "e6b1", + "unicode_decimal": 59057 + }, + { + "icon_id": "17102557", + "name": "building-line", + "font_class": "building-line", + "unicode": "e6b2", + "unicode_decimal": 59058 + }, + { + "icon_id": "17102558", + "name": "government-line", + "font_class": "government-line", + "unicode": "e6b3", + "unicode_decimal": 59059 + }, + { + "icon_id": "17102559", + "name": "government-fill", + "font_class": "government-fill", + "unicode": "e6b4", + "unicode_decimal": 59060 + }, + { + "icon_id": "17102585", + "name": "home-smile-fill", + "font_class": "home-smile-fill", + "unicode": "e6b9", + "unicode_decimal": 59065 + }, + { + "icon_id": "17102586", + "name": "home-smile-line", + "font_class": "home-smile-line", + "unicode": "e6ba", + "unicode_decimal": 59066 + }, + { + "icon_id": "17102703", + "name": "archive-drawer-fill", + "font_class": "archive-drawer-fill", + "unicode": "e6be", + "unicode_decimal": 59070 + }, + { + "icon_id": "17102706", + "name": "archive-line", + "font_class": "archive-line", + "unicode": "e6bf", + "unicode_decimal": 59071 + }, + { + "icon_id": "17102707", + "name": "archive-drawer-line", + "font_class": "archive-drawer-line", + "unicode": "e6c0", + "unicode_decimal": 59072 + }, + { + "icon_id": "17102708", + "name": "archive-fill", + "font_class": "archive-fill", + "unicode": "e6c1", + "unicode_decimal": 59073 + }, + { + "icon_id": "17102709", + "name": "at-fill", + "font_class": "at-fill", + "unicode": "e6c2", + "unicode_decimal": 59074 + }, + { + "icon_id": "17102710", + "name": "at-line", + "font_class": "at-line", + "unicode": "e6c3", + "unicode_decimal": 59075 + }, + { + "icon_id": "17102714", + "name": "bar-chart-2-line", + "font_class": "bar-chart-2-line", + "unicode": "e6c4", + "unicode_decimal": 59076 + }, + { + "icon_id": "17102715", + "name": "bar-chart-fill", + "font_class": "bar-chart-fill", + "unicode": "e6c5", + "unicode_decimal": 59077 + }, + { + "icon_id": "17102721", + "name": "bar-chart-horizontal-fill", + "font_class": "bar-chart-horizontal-fill", + "unicode": "e6c6", + "unicode_decimal": 59078 + }, + { + "icon_id": "17102722", + "name": "bar-chart-horizontal-line", + "font_class": "bar-chart-horizontal-line", + "unicode": "e6c7", + "unicode_decimal": 59079 + }, + { + "icon_id": "17102738", + "name": "bubble-chart-fill", + "font_class": "bubble-chart-fill", + "unicode": "e6c8", + "unicode_decimal": 59080 + }, + { + "icon_id": "17102739", + "name": "bubble-chart-line", + "font_class": "bubble-chart-line", + "unicode": "e6c9", + "unicode_decimal": 59081 + }, + { + "icon_id": "17103017", + "name": "contrast-2-fill", + "font_class": "contrast-2-fill", + "unicode": "e705", + "unicode_decimal": 59141 + }, + { + "icon_id": "17103018", + "name": "contrast-2-line", + "font_class": "contrast-2-line", + "unicode": "e707", + "unicode_decimal": 59143 + }, + { + "icon_id": "17103019", + "name": "contrast-drop-2-fill", + "font_class": "contrast-drop-2-fill", + "unicode": "e708", + "unicode_decimal": 59144 + }, + { + "icon_id": "17103021", + "name": "contrast-drop-fill", + "font_class": "contrast-drop-fill", + "unicode": "e709", + "unicode_decimal": 59145 + }, + { + "icon_id": "17103022", + "name": "contrast-drop-2-line", + "font_class": "contrast-drop-2-line", + "unicode": "e70a", + "unicode_decimal": 59146 + }, + { + "icon_id": "17103023", + "name": "contrast-drop-line", + "font_class": "contrast-drop-line", + "unicode": "e70b", + "unicode_decimal": 59147 + }, + { + "icon_id": "17103024", + "name": "contrast-line", + "font_class": "contrast-line", + "unicode": "e70c", + "unicode_decimal": 59148 + }, + { + "icon_id": "17103025", + "name": "crop-2-fill", + "font_class": "crop-2-fill", + "unicode": "e70d", + "unicode_decimal": 59149 + }, + { + "icon_id": "17103026", + "name": "crop-fill", + "font_class": "crop-fill", + "unicode": "e70e", + "unicode_decimal": 59150 + }, + { + "icon_id": "17103027", + "name": "crop-line", + "font_class": "crop-line", + "unicode": "e70f", + "unicode_decimal": 59151 + }, + { + "icon_id": "17103028", + "name": "crop-2-line", + "font_class": "crop-2-line", + "unicode": "e710", + "unicode_decimal": 59152 + }, + { + "icon_id": "17103030", + "name": "drag-drop-fill", + "font_class": "drag-drop-fill", + "unicode": "e711", + "unicode_decimal": 59153 + }, + { + "icon_id": "17103031", + "name": "drag-move-fill", + "font_class": "drag-move-fill", + "unicode": "e712", + "unicode_decimal": 59154 + }, + { + "icon_id": "17103032", + "name": "drag-move-line", + "font_class": "drag-move-line", + "unicode": "e713", + "unicode_decimal": 59155 + }, + { + "icon_id": "17103033", + "name": "drop-fill", + "font_class": "drop-fill", + "unicode": "e714", + "unicode_decimal": 59156 + }, + { + "icon_id": "17103034", + "name": "drop-line", + "font_class": "drop-line", + "unicode": "e715", + "unicode_decimal": 59157 + }, + { + "icon_id": "17103035", + "name": "drag-move-2-line", + "font_class": "drag-move-2-line", + "unicode": "e716", + "unicode_decimal": 59158 + }, + { + "icon_id": "17103036", + "name": "drag-drop-line", + "font_class": "drag-drop-line", + "unicode": "e719", + "unicode_decimal": 59161 + }, + { + "icon_id": "17103037", + "name": "edit-box-fill", + "font_class": "edit-box-fill", + "unicode": "e71a", + "unicode_decimal": 59162 + }, + { + "icon_id": "17103038", + "name": "edit-box-line", + "font_class": "edit-box-line", + "unicode": "e71b", + "unicode_decimal": 59163 + }, + { + "icon_id": "17103039", + "name": "edit-circle-fill", + "font_class": "edit-circle-fill", + "unicode": "e71c", + "unicode_decimal": 59164 + }, + { + "icon_id": "17103040", + "name": "edit-circle-line", + "font_class": "edit-circle-line", + "unicode": "e71e", + "unicode_decimal": 59166 + }, + { + "icon_id": "17103042", + "name": "edit-2-fill", + "font_class": "edit-2-fill", + "unicode": "e71f", + "unicode_decimal": 59167 + }, + { + "icon_id": "17103044", + "name": "focus-2-fill", + "font_class": "focus-2-fill", + "unicode": "e722", + "unicode_decimal": 59170 + }, + { + "icon_id": "17103046", + "name": "eraser-fill", + "font_class": "eraser-fill", + "unicode": "e723", + "unicode_decimal": 59171 + }, + { + "icon_id": "17103047", + "name": "focus-fill", + "font_class": "focus-fill", + "unicode": "e730", + "unicode_decimal": 59184 + }, + { + "icon_id": "17103048", + "name": "eraser-line", + "font_class": "eraser-line", + "unicode": "e736", + "unicode_decimal": 59190 + }, + { + "icon_id": "17103049", + "name": "focus-3-fill", + "font_class": "focus-3-fill", + "unicode": "e738", + "unicode_decimal": 59192 + }, + { + "icon_id": "17103050", + "name": "focus-2-line", + "font_class": "focus-2-line", + "unicode": "e739", + "unicode_decimal": 59193 + }, + { + "icon_id": "17103052", + "name": "hammer-fill", + "font_class": "hammer-fill", + "unicode": "e741", + "unicode_decimal": 59201 + }, + { + "icon_id": "17103097", + "name": "magic-fill", + "font_class": "magic-fill", + "unicode": "e742", + "unicode_decimal": 59202 + }, + { + "icon_id": "17103099", + "name": "magic-line", + "font_class": "magic-line", + "unicode": "e746", + "unicode_decimal": 59206 + }, + { + "icon_id": "17103103", + "name": "paint-brush-fill", + "font_class": "paint-brush-fill", + "unicode": "e748", + "unicode_decimal": 59208 + }, + { + "icon_id": "17103104", + "name": "paint-line", + "font_class": "paint-line", + "unicode": "e74b", + "unicode_decimal": 59211 + }, + { + "icon_id": "17103105", + "name": "paint-fill", + "font_class": "paint-fill", + "unicode": "e74e", + "unicode_decimal": 59214 + }, + { + "icon_id": "17103109", + "name": "paint-brush-line", + "font_class": "paint-brush-line", + "unicode": "e760", + "unicode_decimal": 59232 + }, + { + "icon_id": "17103114", + "name": "pencil-ruler-fill", + "font_class": "pencil-ruler-fill", + "unicode": "e761", + "unicode_decimal": 59233 + }, + { + "icon_id": "17103116", + "name": "pencil-ruler-line", + "font_class": "pencil-ruler-line", + "unicode": "e762", + "unicode_decimal": 59234 + }, + { + "icon_id": "17103120", + "name": "pencil-ruler-2-fill", + "font_class": "pencil-ruler-2-fill", + "unicode": "e763", + "unicode_decimal": 59235 + }, + { + "icon_id": "17103121", + "name": "ruler-fill", + "font_class": "ruler-fill", + "unicode": "e764", + "unicode_decimal": 59236 + }, + { + "icon_id": "17103122", + "name": "ruler-2-line", + "font_class": "ruler-2-line", + "unicode": "e76d", + "unicode_decimal": 59245 + }, + { + "icon_id": "17103123", + "name": "pencil-ruler-2-line", + "font_class": "pencil-ruler-2-line", + "unicode": "e76e", + "unicode_decimal": 59246 + }, + { + "icon_id": "17103124", + "name": "scissors-2-fill", + "font_class": "scissors-2-fill", + "unicode": "e773", + "unicode_decimal": 59251 + }, + { + "icon_id": "17103125", + "name": "scissors-2-line", + "font_class": "scissors-2-line", + "unicode": "e774", + "unicode_decimal": 59252 + }, + { + "icon_id": "17103126", + "name": "scissors-cut-fill", + "font_class": "scissors-cut-fill", + "unicode": "e775", + "unicode_decimal": 59253 + }, + { + "icon_id": "17103142", + "name": "t-box-line", + "font_class": "t-box-line", + "unicode": "e776", + "unicode_decimal": 59254 + }, + { + "icon_id": "17103143", + "name": "t-box-fill", + "font_class": "t-box-fill", + "unicode": "e777", + "unicode_decimal": 59255 + }, + { + "icon_id": "17103165", + "name": "brackets-fill", + "font_class": "brackets-fill", + "unicode": "e778", + "unicode_decimal": 59256 + }, + { + "icon_id": "17103166", + "name": "braces-fill", + "font_class": "braces-fill", + "unicode": "e779", + "unicode_decimal": 59257 + }, + { + "icon_id": "17103167", + "name": "braces-line", + "font_class": "braces-line", + "unicode": "e77a", + "unicode_decimal": 59258 + }, + { + "icon_id": "17103168", + "name": "brackets-line", + "font_class": "brackets-line", + "unicode": "e77b", + "unicode_decimal": 59259 + }, + { + "icon_id": "17103177", + "name": "bug-fill", + "font_class": "bug-fill", + "unicode": "e77c", + "unicode_decimal": 59260 + }, + { + "icon_id": "17103338", + "name": "database-fill", + "font_class": "database-fill1", + "unicode": "e77d", + "unicode_decimal": 59261 + }, + { + "icon_id": "17103339", + "name": "database-2-line", + "font_class": "database-2-line", + "unicode": "e77e", + "unicode_decimal": 59262 + }, + { + "icon_id": "17103340", + "name": "database-2-fill", + "font_class": "database-2-fill", + "unicode": "e77f", + "unicode_decimal": 59263 + }, + { + "icon_id": "17103343", + "name": "database-line", + "font_class": "database-line", + "unicode": "e780", + "unicode_decimal": 59264 + }, + { + "icon_id": "17103374", + "name": "macbook-line", + "font_class": "macbook-line", + "unicode": "e781", + "unicode_decimal": 59265 + }, + { + "icon_id": "17103387", + "name": "macbook-fill", + "font_class": "macbook-fill", + "unicode": "e782", + "unicode_decimal": 59266 + }, + { + "icon_id": "17103390", + "name": "radar-line", + "font_class": "radar-line", + "unicode": "e783", + "unicode_decimal": 59267 + }, + { + "icon_id": "17103392", + "name": "radar-fill", + "font_class": "radar-fill", + "unicode": "e784", + "unicode_decimal": 59268 + }, + { + "icon_id": "17103400", + "name": "router-line", + "font_class": "router-line", + "unicode": "e785", + "unicode_decimal": 59269 + }, + { + "icon_id": "17103401", + "name": "router-fill", + "font_class": "router-fill", + "unicode": "e786", + "unicode_decimal": 59270 + }, + { + "icon_id": "17103403", + "name": "rss-line", + "font_class": "rss-line", + "unicode": "e787", + "unicode_decimal": 59271 + }, + { + "icon_id": "17103406", + "name": "rss-fill", + "font_class": "rss-fill", + "unicode": "e788", + "unicode_decimal": 59272 + }, + { + "icon_id": "17103408", + "name": "save-fill", + "font_class": "save-fill", + "unicode": "e789", + "unicode_decimal": 59273 + }, + { + "icon_id": "17103409", + "name": "save-3-line", + "font_class": "save-3-line", + "unicode": "e78a", + "unicode_decimal": 59274 + }, + { + "icon_id": "17103411", + "name": "save-3-fill", + "font_class": "save-3-fill", + "unicode": "e78b", + "unicode_decimal": 59275 + }, + { + "icon_id": "17103412", + "name": "scan-fill", + "font_class": "scan-fill", + "unicode": "e78c", + "unicode_decimal": 59276 + }, + { + "icon_id": "17103413", + "name": "scan-line", + "font_class": "scan-line", + "unicode": "e78d", + "unicode_decimal": 59277 + }, + { + "icon_id": "17103416", + "name": "sd-card-fill", + "font_class": "sd-card-fill", + "unicode": "e78e", + "unicode_decimal": 59278 + }, + { + "icon_id": "17103417", + "name": "sd-card-mini-fill", + "font_class": "sd-card-mini-fill", + "unicode": "e78f", + "unicode_decimal": 59279 + }, + { + "icon_id": "17103418", + "name": "sd-card-mini-line", + "font_class": "sd-card-mini-line", + "unicode": "e790", + "unicode_decimal": 59280 + }, + { + "icon_id": "17103420", + "name": "server-line", + "font_class": "server-line", + "unicode": "e791", + "unicode_decimal": 59281 + }, + { + "icon_id": "17103421", + "name": "server-fill", + "font_class": "server-fill1", + "unicode": "e792", + "unicode_decimal": 59282 + }, + { + "icon_id": "17103423", + "name": "sd-card-line", + "font_class": "sd-card-line", + "unicode": "e793", + "unicode_decimal": 59283 + }, + { + "icon_id": "17103458", + "name": "wifi-off-fill", + "font_class": "wifi-off-fill", + "unicode": "e794", + "unicode_decimal": 59284 + }, + { + "icon_id": "17103459", + "name": "wifi-fill", + "font_class": "wifi-fill", + "unicode": "e795", + "unicode_decimal": 59285 + }, + { + "icon_id": "17103481", + "name": "book-fill", + "font_class": "book-fill", + "unicode": "e796", + "unicode_decimal": 59286 + }, + { + "icon_id": "17103483", + "name": "book-line", + "font_class": "book-line", + "unicode": "e797", + "unicode_decimal": 59287 + }, + { + "icon_id": "17105213", + "name": "aliens-fill", + "font_class": "aliens-fill", + "unicode": "e87f", + "unicode_decimal": 59519 + }, + { + "icon_id": "17105218", + "name": "aliens-line", + "font_class": "aliens-line", + "unicode": "e880", + "unicode_decimal": 59520 + }, + { + "icon_id": "17105223", + "name": "bear-smile-fill", + "font_class": "bear-smile-fill", + "unicode": "e881", + "unicode_decimal": 59521 + }, + { + "icon_id": "17105224", + "name": "criminal-fill", + "font_class": "criminal-fill", + "unicode": "e882", + "unicode_decimal": 59522 + }, + { + "icon_id": "17105225", + "name": "bear-smile-line", + "font_class": "bear-smile-line", + "unicode": "e883", + "unicode_decimal": 59523 + }, + { + "icon_id": "17105226", + "name": "criminal-line", + "font_class": "criminal-line", + "unicode": "e884", + "unicode_decimal": 59524 + }, + { + "icon_id": "17105227", + "name": "emotion-2-line", + "font_class": "emotion-2-line", + "unicode": "e885", + "unicode_decimal": 59525 + }, + { + "icon_id": "17105228", + "name": "emotion-happy-fill", + "font_class": "emotion-happy-fill", + "unicode": "e886", + "unicode_decimal": 59526 + }, + { + "icon_id": "17105229", + "name": "emotion-line", + "font_class": "emotion-line", + "unicode": "e887", + "unicode_decimal": 59527 + }, + { + "icon_id": "17105230", + "name": "emotion-fill", + "font_class": "emotion-fill", + "unicode": "e888", + "unicode_decimal": 59528 + }, + { + "icon_id": "17105231", + "name": "emotion-laugh-line", + "font_class": "emotion-laugh-line", + "unicode": "e889", + "unicode_decimal": 59529 + }, + { + "icon_id": "17105232", + "name": "emotion-laugh-fill", + "font_class": "emotion-laugh-fill", + "unicode": "e88a", + "unicode_decimal": 59530 + }, + { + "icon_id": "17105233", + "name": "emotion-normal-line", + "font_class": "emotion-normal-line", + "unicode": "e88b", + "unicode_decimal": 59531 + }, + { + "icon_id": "17105234", + "name": "emotion-happy-line", + "font_class": "emotion-happy-line", + "unicode": "e88c", + "unicode_decimal": 59532 + }, + { + "icon_id": "17105235", + "name": "emotion-normal-fill", + "font_class": "emotion-normal-fill", + "unicode": "e88d", + "unicode_decimal": 59533 + }, + { + "icon_id": "17105236", + "name": "emotion-sad-fill", + "font_class": "emotion-sad-fill", + "unicode": "e88e", + "unicode_decimal": 59534 + }, + { + "icon_id": "17105238", + "name": "ghost-2-fill", + "font_class": "ghost-2-fill", + "unicode": "e88f", + "unicode_decimal": 59535 + }, + { + "icon_id": "17105239", + "name": "ghost-smile-fill", + "font_class": "ghost-smile-fill", + "unicode": "e890", + "unicode_decimal": 59536 + }, + { + "icon_id": "17105241", + "name": "ghost-fill", + "font_class": "ghost-fill", + "unicode": "e891", + "unicode_decimal": 59537 + }, + { + "icon_id": "17105242", + "name": "emotion-unhappy-line", + "font_class": "emotion-unhappy-line", + "unicode": "e892", + "unicode_decimal": 59538 + }, + { + "icon_id": "17105243", + "name": "ghost-line", + "font_class": "ghost-line", + "unicode": "e893", + "unicode_decimal": 59539 + }, + { + "icon_id": "17105244", + "name": "ghost-2-line", + "font_class": "ghost-2-line", + "unicode": "e894", + "unicode_decimal": 59540 + }, + { + "icon_id": "17105249", + "name": "emotion-2-fill", + "font_class": "emotion-2-fill", + "unicode": "e895", + "unicode_decimal": 59541 + }, + { + "icon_id": "17105258", + "name": "emotion-sad-line", + "font_class": "emotion-sad-line", + "unicode": "e896", + "unicode_decimal": 59542 + }, + { + "icon_id": "17105259", + "name": "emotion-unhappy-fill", + "font_class": "emotion-unhappy-fill", + "unicode": "e897", + "unicode_decimal": 59543 + }, + { + "icon_id": "17105260", + "name": "skull-fill", + "font_class": "skull-fill", + "unicode": "e898", + "unicode_decimal": 59544 + }, + { + "icon_id": "17105267", + "name": "star-smile-fill", + "font_class": "star-smile-fill", + "unicode": "e899", + "unicode_decimal": 59545 + }, + { + "icon_id": "17102756", + "name": "cloud-line", + "font_class": "cloud-line", + "unicode": "e6cc", + "unicode_decimal": 59084 + }, + { + "icon_id": "17102757", + "name": "cloud-off-fill", + "font_class": "cloud-off-fill", + "unicode": "e6cd", + "unicode_decimal": 59085 + }, + { + "icon_id": "17102758", + "name": "copyleft-line", + "font_class": "copyleft-line", + "unicode": "e6ce", + "unicode_decimal": 59086 + }, + { + "icon_id": "17102759", + "name": "copyleft-fill", + "font_class": "copyleft-fill", + "unicode": "e6cf", + "unicode_decimal": 59087 + }, + { + "icon_id": "17102760", + "name": "copyright-fill", + "font_class": "copyright-fill", + "unicode": "e6d0", + "unicode_decimal": 59088 + }, + { + "icon_id": "17102761", + "name": "cloud-off-line", + "font_class": "cloud-off-line", + "unicode": "e6d1", + "unicode_decimal": 59089 + }, + { + "icon_id": "17102762", + "name": "creative-commons-by-line", + "font_class": "creative-commons-by-line", + "unicode": "e6d2", + "unicode_decimal": 59090 + }, + { + "icon_id": "17102763", + "name": "copyright-line", + "font_class": "copyright-line", + "unicode": "e6d3", + "unicode_decimal": 59091 + }, + { + "icon_id": "17102764", + "name": "creative-commons-fill", + "font_class": "creative-commons-fill", + "unicode": "e6d4", + "unicode_decimal": 59092 + }, + { + "icon_id": "17102765", + "name": "creative-commons-nc-line", + "font_class": "creative-commons-nc-line", + "unicode": "e6e7", + "unicode_decimal": 59111 + }, + { + "icon_id": "17102766", + "name": "creative-commons-nd-fill", + "font_class": "creative-commons-nd-fill", + "unicode": "e6e9", + "unicode_decimal": 59113 + }, + { + "icon_id": "17102767", + "name": "creative-commons-by-fill", + "font_class": "creative-commons-by-fill", + "unicode": "e6ea", + "unicode_decimal": 59114 + }, + { + "icon_id": "17102768", + "name": "creative-commons-line", + "font_class": "creative-commons-line", + "unicode": "e6eb", + "unicode_decimal": 59115 + }, + { + "icon_id": "17102769", + "name": "creative-commons-nc-fill", + "font_class": "creative-commons-nc-fill", + "unicode": "e6ec", + "unicode_decimal": 59116 + }, + { + "icon_id": "17102770", + "name": "creative-commons-zero-fill", + "font_class": "creative-commons-zero-fill", + "unicode": "e6ed", + "unicode_decimal": 59117 + }, + { + "icon_id": "17102771", + "name": "creative-commons-sa-line", + "font_class": "creative-commons-sa-line", + "unicode": "e6ee", + "unicode_decimal": 59118 + }, + { + "icon_id": "17102772", + "name": "creative-commons-zero-line", + "font_class": "creative-commons-zero-line", + "unicode": "e6ef", + "unicode_decimal": 59119 + }, + { + "icon_id": "17102773", + "name": "creative-commons-nd-line", + "font_class": "creative-commons-nd-line", + "unicode": "e6f0", + "unicode_decimal": 59120 + }, + { + "icon_id": "17102775", + "name": "customer-service-2-line", + "font_class": "customer-service-2-line", + "unicode": "e6f1", + "unicode_decimal": 59121 + }, + { + "icon_id": "17102776", + "name": "customer-service-fill", + "font_class": "customer-service-fill", + "unicode": "e6f2", + "unicode_decimal": 59122 + }, + { + "icon_id": "17102777", + "name": "flag-2-fill", + "font_class": "flag-2-fill", + "unicode": "e6f3", + "unicode_decimal": 59123 + }, + { + "icon_id": "17102778", + "name": "customer-service-line", + "font_class": "customer-service-line", + "unicode": "e6f4", + "unicode_decimal": 59124 + }, + { + "icon_id": "17102779", + "name": "flag-fill", + "font_class": "flag-fill", + "unicode": "e6f5", + "unicode_decimal": 59125 + }, + { + "icon_id": "17102780", + "name": "flag-2-line", + "font_class": "flag-2-line", + "unicode": "e6f6", + "unicode_decimal": 59126 + }, + { + "icon_id": "17102781", + "name": "customer-service-2-fill", + "font_class": "customer-service-2-fill", + "unicode": "e6f7", + "unicode_decimal": 59127 + }, + { + "icon_id": "17102782", + "name": "donut-chart-line", + "font_class": "donut-chart-line", + "unicode": "e6f8", + "unicode_decimal": 59128 + }, + { + "icon_id": "17102783", + "name": "donut-chart-fill", + "font_class": "donut-chart-fill", + "unicode": "e6f9", + "unicode_decimal": 59129 + }, + { + "icon_id": "17102785", + "name": "global-fill", + "font_class": "global-fill", + "unicode": "e6fa", + "unicode_decimal": 59130 + }, + { + "icon_id": "17102786", + "name": "honour-line", + "font_class": "honour-line", + "unicode": "e6fb", + "unicode_decimal": 59131 + }, + { + "icon_id": "17102787", + "name": "honour-fill", + "font_class": "honour-fill", + "unicode": "e6fc", + "unicode_decimal": 59132 + }, + { + "icon_id": "17102788", + "name": "inbox-archive-line", + "font_class": "inbox-archive-line", + "unicode": "e6fd", + "unicode_decimal": 59133 + }, + { + "icon_id": "17102789", + "name": "global-line", + "font_class": "global-line", + "unicode": "e6fe", + "unicode_decimal": 59134 + }, + { + "icon_id": "17102790", + "name": "inbox-archive-fill", + "font_class": "inbox-archive-fill", + "unicode": "e6ff", + "unicode_decimal": 59135 + }, + { + "icon_id": "17102792", + "name": "inbox-unarchive-fill", + "font_class": "inbox-unarchive-fill", + "unicode": "e702", + "unicode_decimal": 59138 + }, + { + "icon_id": "17102793", + "name": "inbox-unarchive-line", + "font_class": "inbox-unarchive-line", + "unicode": "e703", + "unicode_decimal": 59139 + }, + { + "icon_id": "17352115", + "name": "send-mail", + "font_class": "send-mail", + "unicode": "f041", + "unicode_decimal": 61505 + }, + { + "icon_id": "17352116", + "name": "hammer", + "font_class": "hammer", + "unicode": "f042", + "unicode_decimal": 61506 + }, + { + "icon_id": "17352117", + "name": "expert", + "font_class": "expert", + "unicode": "f043", + "unicode_decimal": 61507 + }, + { + "icon_id": "17352118", + "name": "asset-menu", + "font_class": "asset-menu", + "unicode": "f044", + "unicode_decimal": 61508 + }, + { + "icon_id": "17351685", + "name": "pen", + "font_class": "pen", + "unicode": "f03a", + "unicode_decimal": 61498 + }, + { + "icon_id": "17351686", + "name": "diamond", + "font_class": "diamond", + "unicode": "f03b", + "unicode_decimal": 61499 + }, + { + "icon_id": "17351689", + "name": "read", + "font_class": "read", + "unicode": "f03e", + "unicode_decimal": 61502 + }, + { + "icon_id": "17351690", + "name": "report", + "font_class": "report", + "unicode": "f03f", + "unicode_decimal": 61503 + }, + { + "icon_id": "17351691", + "name": "convention", + "font_class": "convention", + "unicode": "f040", + "unicode_decimal": 61504 + }, + { + "icon_id": "17346722", + "name": "safety-certificate-fill", + "font_class": "safety-certificate-fill", + "unicode": "f033", + "unicode_decimal": 61491 + }, + { + "icon_id": "17346723", + "name": "trend", + "font_class": "trend", + "unicode": "f034", + "unicode_decimal": 61492 + }, + { + "icon_id": "17346724", + "name": "property", + "font_class": "property", + "unicode": "f035", + "unicode_decimal": 61493 + }, + { + "icon_id": "17346725", + "name": "secret-key", + "font_class": "secret-key", + "unicode": "f036", + "unicode_decimal": 61494 + }, + { + "icon_id": "17346726", + "name": "agreement", + "font_class": "agreement", + "unicode": "f037", + "unicode_decimal": 61495 + }, + { + "icon_id": "17346727", + "name": "agreement-normal", + "font_class": "agreement-normal", + "unicode": "f038", + "unicode_decimal": 61496 + }, + { + "icon_id": "17346728", + "name": "agreement-eye", + "font_class": "agreement-eye", + "unicode": "f039", + "unicode_decimal": 61497 + }, + { + "icon_id": "17343531", + "name": "renovate", + "font_class": "renovate", + "unicode": "f031", + "unicode_decimal": 61489 + }, + { + "icon_id": "17343532", + "name": "laptop-renovate-fill", + "font_class": "laptop-renovate-fill", + "unicode": "f032", + "unicode_decimal": 61490 + }, + { + "icon_id": "17342936", + "name": "spot", + "font_class": "spot", + "unicode": "f02e", + "unicode_decimal": 61486 + }, + { + "icon_id": "17342937", + "name": "big-spot", + "font_class": "big-spot", + "unicode": "f02f", + "unicode_decimal": 61487 + }, + { + "icon_id": "17342938", + "name": "screen", + "font_class": "screen", + "unicode": "f030", + "unicode_decimal": 61488 + }, + { + "icon_id": "17324187", + "name": "nfs", + "font_class": "nfs", + "unicode": "f02c", + "unicode_decimal": 61484 + }, + { + "icon_id": "17324142", + "name": "NVDIA", + "font_class": "NVDIA", + "unicode": "f02b", + "unicode_decimal": 61483 + }, + { + "icon_id": "17324042", + "name": "memory", + "font_class": "memory1", + "unicode": "f02a", + "unicode_decimal": 61482 + }, + { + "icon_id": "16954759", + "name": "favorites", + "font_class": "favorites", + "unicode": "e633", + "unicode_decimal": 58931 + }, + { + "icon_id": "16954764", + "name": "favorites-fill", + "font_class": "favorites-fill", + "unicode": "e634", + "unicode_decimal": 58932 + }, + { + "icon_id": "17320862", + "name": "license", + "font_class": "license", + "unicode": "f029", + "unicode_decimal": 61481 + }, + { + "icon_id": "17320776", + "name": "homework", + "font_class": "homework", + "unicode": "f028", + "unicode_decimal": 61480 + }, + { + "icon_id": "17320700", + "name": "journal", + "font_class": "journal", + "unicode": "f026", + "unicode_decimal": 61478 + }, + { + "icon_id": "248933", + "name": "refresh", + "font_class": "refresh", + "unicode": "e67f", + "unicode_decimal": 59007 + }, + { + "icon_id": "16929988", + "name": "mirror-image", + "font_class": "mirror-image", + "unicode": "f022", + "unicode_decimal": 61474 + }, + { + "icon_id": "16929989", + "name": "firmware-up", + "font_class": "firmware-up", + "unicode": "f023", + "unicode_decimal": 61475 + }, + { + "icon_id": "16929990", + "name": "repair", + "font_class": "repair", + "unicode": "f024", + "unicode_decimal": 61476 + }, + { + "icon_id": "16929991", + "name": "firmware-cog", + "font_class": "firmware-cog", + "unicode": "f025", + "unicode_decimal": 61477 + }, + { + "icon_id": "16891114", + "name": "arrowdown-s", + "font_class": "arrowdown-s", + "unicode": "f00c", + "unicode_decimal": 61452 + }, + { + "icon_id": "16891115", + "name": "arrowup-s", + "font_class": "arrowup-s", + "unicode": "f00f", + "unicode_decimal": 61455 + }, + { + "icon_id": "16891116", + "name": "arrowright-s", + "font_class": "arrowright-s", + "unicode": "f010", + "unicode_decimal": 61456 + }, + { + "icon_id": "16891117", + "name": "arrowleft-s", + "font_class": "arrowleft-s", + "unicode": "f011", + "unicode_decimal": 61457 + }, + { + "icon_id": "16891031", + "name": "point-down", + "font_class": "point-down", + "unicode": "f00e", + "unicode_decimal": 61454 + }, + { + "icon_id": "16891035", + "name": "point-right", + "font_class": "point-right", + "unicode": "f012", + "unicode_decimal": 61458 + }, + { + "icon_id": "16891036", + "name": "point-left", + "font_class": "point-left", + "unicode": "f013", + "unicode_decimal": 61459 + }, + { + "icon_id": "16891037", + "name": "point-up", + "font_class": "point-up", + "unicode": "f021", + "unicode_decimal": 61473 + }, + { + "icon_id": "16739506", + "name": "look", + "font_class": "look", + "unicode": "f020", + "unicode_decimal": 61472 + }, + { + "icon_id": "16681847", + "name": "monitor", + "font_class": "monitor", + "unicode": "f01e", + "unicode_decimal": 61470 + }, + { + "icon_id": "16681848", + "name": "monitor-fill", + "font_class": "monitor-fill", + "unicode": "f01f", + "unicode_decimal": 61471 + }, + { + "icon_id": "16658102", + "name": "edit-circle", + "font_class": "edit-circle", + "unicode": "f01d", + "unicode_decimal": 61469 + }, + { + "icon_id": "16656247", + "name": "temperature", + "font_class": "temperature", + "unicode": "f01c", + "unicode_decimal": 61468 + }, + { + "icon_id": "16642569", + "name": "supervise", + "font_class": "supervise", + "unicode": "f01a", + "unicode_decimal": 61466 + }, + { + "icon_id": "16642570", + "name": "safety-certificate", + "font_class": "safety-certificate", + "unicode": "f01b", + "unicode_decimal": 61467 + }, + { + "icon_id": "16642546", + "name": "network-fill", + "font_class": "network-fill", + "unicode": "f018", + "unicode_decimal": 61464 + }, + { + "icon_id": "16642547", + "name": "network", + "font_class": "network", + "unicode": "f019", + "unicode_decimal": 61465 + }, + { + "icon_id": "16642074", + "name": "memory", + "font_class": "memory", + "unicode": "f016", + "unicode_decimal": 61462 + }, + { + "icon_id": "16642075", + "name": "memory-fill", + "font_class": "memory-fill", + "unicode": "f017", + "unicode_decimal": 61463 + }, + { + "icon_id": "16641896", + "name": "store-fill", + "font_class": "store-fill", + "unicode": "f014", + "unicode_decimal": 61460 + }, + { + "icon_id": "16641897", + "name": "store", + "font_class": "store", + "unicode": "f015", + "unicode_decimal": 61461 + }, + { + "icon_id": "16638676", + "name": "time", + "font_class": "time", + "unicode": "f00d", + "unicode_decimal": 61453 + }, + { + "icon_id": "16638483", + "name": "task-fill", + "font_class": "task-fill", + "unicode": "f000", + "unicode_decimal": 61440 + }, + { + "icon_id": "16638484", + "name": "task", + "font_class": "task", + "unicode": "f003", + "unicode_decimal": 61443 + }, + { + "icon_id": "16638418", + "name": "shielding-fill", + "font_class": "shielding-fill", + "unicode": "f009", + "unicode_decimal": 61449 + }, + { + "icon_id": "16638419", + "name": "shielding", + "font_class": "shielding", + "unicode": "f00a", + "unicode_decimal": 61450 + }, + { + "icon_id": "16638412", + "name": "lock-fill", + "font_class": "lock-fill", + "unicode": "f006", + "unicode_decimal": 61446 + }, + { + "icon_id": "16638413", + "name": "lock", + "font_class": "lock", + "unicode": "f007", + "unicode_decimal": 61447 + }, + { + "icon_id": "16638408", + "name": "workbench-fill", + "font_class": "workbench-fill", + "unicode": "f004", + "unicode_decimal": 61444 + }, + { + "icon_id": "16638391", + "name": "workbench", + "font_class": "workbench", + "unicode": "f005", + "unicode_decimal": 61445 + }, + { + "icon_id": "16638321", + "name": "tasklist_fill", + "font_class": "tasklist_fill", + "unicode": "f001", + "unicode_decimal": 61441 + }, + { + "icon_id": "16638322", + "name": "tasklist", + "font_class": "tasklist", + "unicode": "f002", + "unicode_decimal": 61442 + }, + { + "icon_id": "16638308", + "name": "undo", + "font_class": "undo", + "unicode": "efff", + "unicode_decimal": 61439 + }, + { + "icon_id": "16637496", + "name": "undo-right", + "font_class": "undo-right", + "unicode": "f008", + "unicode_decimal": 61448 + }, + { + "icon_id": "16637499", + "name": "accessory", + "font_class": "accessory", + "unicode": "f00b", + "unicode_decimal": 61451 + }, + { + "icon_id": "16632860", + "name": "document", + "font_class": "document", + "unicode": "eff5", + "unicode_decimal": 61429 + }, + { + "icon_id": "16632861", + "name": "document-fill", + "font_class": "document-fill", + "unicode": "eff6", + "unicode_decimal": 61430 + }, + { + "icon_id": "16632862", + "name": "group", + "font_class": "group", + "unicode": "eff7", + "unicode_decimal": 61431 + }, + { + "icon_id": "16632863", + "name": "people", + "font_class": "people", + "unicode": "eff8", + "unicode_decimal": 61432 + }, + { + "icon_id": "16632864", + "name": "group-fill", + "font_class": "group-fill", + "unicode": "eff9", + "unicode_decimal": 61433 + }, + { + "icon_id": "16632865", + "name": "people-fill", + "font_class": "people-fill", + "unicode": "effa", + "unicode_decimal": 61434 + }, + { + "icon_id": "16632866", + "name": "unlock-fill", + "font_class": "unlock-fill", + "unicode": "effb", + "unicode_decimal": 61435 + }, + { + "icon_id": "16632867", + "name": "smallscreen-fill", + "font_class": "smallscreen-fill", + "unicode": "effc", + "unicode_decimal": 61436 + }, + { + "icon_id": "16632868", + "name": "unlock", + "font_class": "unlock", + "unicode": "effd", + "unicode_decimal": 61437 + }, + { + "icon_id": "16632869", + "name": "smallscreen", + "font_class": "smallscreen", + "unicode": "effe", + "unicode_decimal": 61438 + }, + { + "icon_id": "16632852", + "name": "addressbook-fill", + "font_class": "addressbook-fill", + "unicode": "efed", + "unicode_decimal": 61421 + }, + { + "icon_id": "16632853", + "name": "addpeople-fill", + "font_class": "addpeople-fill", + "unicode": "efee", + "unicode_decimal": 61422 + }, + { + "icon_id": "16632854", + "name": "addressbook", + "font_class": "addressbook", + "unicode": "efef", + "unicode_decimal": 61423 + }, + { + "icon_id": "16632855", + "name": "createtask", + "font_class": "createtask", + "unicode": "eff0", + "unicode_decimal": 61424 + }, + { + "icon_id": "16632857", + "name": "addpeople", + "font_class": "addpeople", + "unicode": "eff2", + "unicode_decimal": 61426 + }, + { + "icon_id": "16632858", + "name": "createtask-fill", + "font_class": "createtask-fill", + "unicode": "eff3", + "unicode_decimal": 61427 + }, + { + "icon_id": "16629849", + "name": "quit", + "font_class": "quit", + "unicode": "efec", + "unicode_decimal": 61420 + }, + { + "icon_id": "16626912", + "name": "delete", + "font_class": "delete", + "unicode": "efea", + "unicode_decimal": 61418 + }, + { + "icon_id": "16626913", + "name": "delete-fill", + "font_class": "delete-fill", + "unicode": "efeb", + "unicode_decimal": 61419 + }, + { + "icon_id": "16624532", + "name": "empty", + "font_class": "empty", + "unicode": "efe9", + "unicode_decimal": 61417 + }, + { + "icon_id": "16624330", + "name": "search", + "font_class": "search", + "unicode": "efe8", + "unicode_decimal": 61416 + }, + { + "icon_id": "16623196", + "name": "laptop-check-fill", + "font_class": "laptop-check-fill", + "unicode": "efdf", + "unicode_decimal": 61407 + }, + { + "icon_id": "16623197", + "name": "laptop-error-fill", + "font_class": "laptop-error-fill", + "unicode": "efe0", + "unicode_decimal": 61408 + }, + { + "icon_id": "16623198", + "name": "information-fill", + "font_class": "information-fill", + "unicode": "efe1", + "unicode_decimal": 61409 + }, + { + "icon_id": "16623199", + "name": "statistics-fill", + "font_class": "statistics-fill", + "unicode": "efe2", + "unicode_decimal": 61410 + }, + { + "icon_id": "16623200", + "name": "displayarrow-left-fill", + "font_class": "displayarrow-left-fill", + "unicode": "efe3", + "unicode_decimal": 61411 + }, + { + "icon_id": "16623201", + "name": "system-manage-fill", + "font_class": "system-manage-fill", + "unicode": "efe4", + "unicode_decimal": 61412 + }, + { + "icon_id": "16623202", + "name": "displayarrow-right-fill", + "font_class": "displayarrow-right-fill", + "unicode": "efe5", + "unicode_decimal": 61413 + }, + { + "icon_id": "16623203", + "name": "operation-manage-fill", + "font_class": "operation-manage-fill", + "unicode": "efe6", + "unicode_decimal": 61414 + }, + { + "icon_id": "16623204", + "name": "display-code-fill", + "font_class": "display-code-fill", + "unicode": "efe7", + "unicode_decimal": 61415 + }, + { + "icon_id": "16617631", + "name": "unhealth-fill", + "font_class": "unhealth-fill", + "unicode": "efdb", + "unicode_decimal": 61403 + }, + { + "icon_id": "16617632", + "name": "health", + "font_class": "health", + "unicode": "efdc", + "unicode_decimal": 61404 + }, + { + "icon_id": "16617633", + "name": "unhealth", + "font_class": "unhealth", + "unicode": "efdd", + "unicode_decimal": 61405 + }, + { + "icon_id": "16617634", + "name": "health-fill", + "font_class": "health-fill", + "unicode": "efde", + "unicode_decimal": 61406 + }, + { + "icon_id": "16498437", + "name": "hot", + "font_class": "hot", + "unicode": "efd9", + "unicode_decimal": 61401 + }, + { + "icon_id": "16498438", + "name": "hot-fill", + "font_class": "hot-fill", + "unicode": "efda", + "unicode_decimal": 61402 + }, + { + "icon_id": "16498414", + "name": "3D", + "font_class": "3D", + "unicode": "efd7", + "unicode_decimal": 61399 + }, + { + "icon_id": "16498415", + "name": "24px-3D", + "font_class": "24px-3D", + "unicode": "efd8", + "unicode_decimal": 61400 + }, + { + "icon_id": "16498407", + "name": "plug-circle", + "font_class": "plug-circle", + "unicode": "efd5", + "unicode_decimal": 61397 + }, + { + "icon_id": "16498408", + "name": "plug", + "font_class": "plug", + "unicode": "efd6", + "unicode_decimal": 61398 + }, + { + "icon_id": "16498182", + "name": "table-condition-fill", + "font_class": "table-condition-fill", + "unicode": "efcf", + "unicode_decimal": 61391 + }, + { + "icon_id": "16498183", + "name": "table-condition", + "font_class": "table-condition", + "unicode": "efd4", + "unicode_decimal": 61396 + }, + { + "icon_id": "16497995", + "name": "exchange-fill", + "font_class": "exchange-fill", + "unicode": "efc7", + "unicode_decimal": 61383 + }, + { + "icon_id": "16497996", + "name": "exchange", + "font_class": "exchange", + "unicode": "efce", + "unicode_decimal": 61390 + }, + { + "icon_id": "16497505", + "name": "question-circle-fill", + "font_class": "question-circle-fill", + "unicode": "efc0", + "unicode_decimal": 61376 + }, + { + "icon_id": "16497506", + "name": "question-circle", + "font_class": "question-circle", + "unicode": "efc1", + "unicode_decimal": 61377 + }, + { + "icon_id": "16497507", + "name": "table-fire", + "font_class": "table-fire", + "unicode": "efc2", + "unicode_decimal": 61378 + }, + { + "icon_id": "16497508", + "name": "table-fire-fill", + "font_class": "table-fire-fill", + "unicode": "efc3", + "unicode_decimal": 61379 + }, + { + "icon_id": "16497509", + "name": "table-imperative-fill", + "font_class": "table-imperative-fill", + "unicode": "efc4", + "unicode_decimal": 61380 + }, + { + "icon_id": "16497510", + "name": "table-lightning", + "font_class": "table-lightning", + "unicode": "efc5", + "unicode_decimal": 61381 + }, + { + "icon_id": "16497513", + "name": "table-water", + "font_class": "table-water", + "unicode": "efc8", + "unicode_decimal": 61384 + }, + { + "icon_id": "16497514", + "name": "table-imperative", + "font_class": "table-imperative", + "unicode": "efc9", + "unicode_decimal": 61385 + }, + { + "icon_id": "16497515", + "name": "table-lightning-fill", + "font_class": "table-lightning-fill", + "unicode": "efca", + "unicode_decimal": 61386 + }, + { + "icon_id": "16497516", + "name": "waiting-fill", + "font_class": "waiting-fill", + "unicode": "efcb", + "unicode_decimal": 61387 + }, + { + "icon_id": "16497517", + "name": "waiting", + "font_class": "waiting", + "unicode": "efcc", + "unicode_decimal": 61388 + }, + { + "icon_id": "16497518", + "name": "table-water-fill", + "font_class": "table-water-fill", + "unicode": "efcd", + "unicode_decimal": 61389 + }, + { + "icon_id": "16497521", + "name": "exclamation-circle", + "font_class": "exclamation-circle", + "unicode": "efd0", + "unicode_decimal": 61392 + }, + { + "icon_id": "16497522", + "name": "info-circle-fill", + "font_class": "info-circle-fill", + "unicode": "efd1", + "unicode_decimal": 61393 + }, + { + "icon_id": "16497523", + "name": "info-circle", + "font_class": "info-circle", + "unicode": "efd2", + "unicode_decimal": 61394 + }, + { + "icon_id": "16497524", + "name": "exclamationcircle-f", + "font_class": "exclamationcircle-f", + "unicode": "efd3", + "unicode_decimal": 61395 + }, + { + "icon_id": "16482186", + "name": "clour", + "font_class": "clour", + "unicode": "efbd", + "unicode_decimal": 61373 + }, + { + "icon_id": "16482187", + "name": "table-no", + "font_class": "table-no", + "unicode": "efbe", + "unicode_decimal": 61374 + }, + { + "icon_id": "16482188", + "name": "table-yes", + "font_class": "table-yes", + "unicode": "efbf", + "unicode_decimal": 61375 + }, + { + "icon_id": "16481929", + "name": "setup", + "font_class": "setup", + "unicode": "efbb", + "unicode_decimal": 61371 + }, + { + "icon_id": "16481930", + "name": "setup-fill", + "font_class": "setup-fill", + "unicode": "efbc", + "unicode_decimal": 61372 + }, + { + "icon_id": "16481259", + "name": "building-fill", + "font_class": "building-fill", + "unicode": "efb9", + "unicode_decimal": 61369 + }, + { + "icon_id": "16481260", + "name": "building", + "font_class": "building", + "unicode": "efba", + "unicode_decimal": 61370 + }, + { + "icon_id": "16472208", + "name": "firewall", + "font_class": "firewall", + "unicode": "efb8", + "unicode_decimal": 61368 + }, + { + "icon_id": "16472175", + "name": "details-firewall", + "font_class": "details-firewall", + "unicode": "efb6", + "unicode_decimal": 61366 + }, + { + "icon_id": "16472176", + "name": "details-cutte", + "font_class": "details-cutte", + "unicode": "efb7", + "unicode_decimal": 61367 + }, + { + "icon_id": "16471349", + "name": "details-rack", + "font_class": "details-rack", + "unicode": "efb4", + "unicode_decimal": 61364 + }, + { + "icon_id": "16471350", + "name": "details-server", + "font_class": "details-server", + "unicode": "efb5", + "unicode_decimal": 61365 + }, + { + "icon_id": "16468990", + "name": "remote-desktop", + "font_class": "remote-desktop", + "unicode": "efb2", + "unicode_decimal": 61362 + }, + { + "icon_id": "16468991", + "name": "monitor-screenshot", + "font_class": "monitor-screenshot", + "unicode": "efb3", + "unicode_decimal": 61363 + }, + { + "icon_id": "16468502", + "name": "terminal", + "font_class": "terminal", + "unicode": "efb0", + "unicode_decimal": 61360 + }, + { + "icon_id": "16468503", + "name": "terminal-fill", + "font_class": "terminal-fill", + "unicode": "efb1", + "unicode_decimal": 61361 + }, + { + "icon_id": "16468489", + "name": "right-arrow-rect", + "font_class": "right-arrow-rect", + "unicode": "efae", + "unicode_decimal": 61358 + }, + { + "icon_id": "16468491", + "name": "left-arrow-rect", + "font_class": "left-arrow-rect", + "unicode": "efaf", + "unicode_decimal": 61359 + }, + { + "icon_id": "16468467", + "name": "share", + "font_class": "share", + "unicode": "efac", + "unicode_decimal": 61356 + }, + { + "icon_id": "16468468", + "name": "reply", + "font_class": "reply", + "unicode": "efad", + "unicode_decimal": 61357 + }, + { + "icon_id": "16467946", + "name": "server-fill", + "font_class": "server-fill", + "unicode": "efaa", + "unicode_decimal": 61354 + }, + { + "icon_id": "16467947", + "name": "server", + "font_class": "server", + "unicode": "efab", + "unicode_decimal": 61355 + }, + { + "icon_id": "16467816", + "name": "map", + "font_class": "map", + "unicode": "efa5", + "unicode_decimal": 61349 + }, + { + "icon_id": "16467817", + "name": "map-plus", + "font_class": "map-plus", + "unicode": "efa6", + "unicode_decimal": 61350 + }, + { + "icon_id": "16467818", + "name": "map-outline", + "font_class": "map-outline", + "unicode": "efa7", + "unicode_decimal": 61351 + }, + { + "icon_id": "16467819", + "name": "map-search", + "font_class": "map-search", + "unicode": "efa8", + "unicode_decimal": 61352 + }, + { + "icon_id": "16467820", + "name": "map-minus", + "font_class": "map-minus", + "unicode": "efa9", + "unicode_decimal": 61353 + }, + { + "icon_id": "16467806", + "name": "cloud-machine-fill", + "font_class": "cloud-machine-fill", + "unicode": "ef9f", + "unicode_decimal": 61343 + }, + { + "icon_id": "16467807", + "name": "database-plus", + "font_class": "database-plus", + "unicode": "efa0", + "unicode_decimal": 61344 + }, + { + "icon_id": "16467808", + "name": "database-fill", + "font_class": "database-fill", + "unicode": "efa1", + "unicode_decimal": 61345 + }, + { + "icon_id": "16467809", + "name": "databaseplus-fill", + "font_class": "databaseplus-fill", + "unicode": "efa2", + "unicode_decimal": 61346 + }, + { + "icon_id": "16467810", + "name": "database", + "font_class": "database", + "unicode": "efa3", + "unicode_decimal": 61347 + }, + { + "icon_id": "16467811", + "name": "cloud-machine", + "font_class": "cloud-machine", + "unicode": "efa4", + "unicode_decimal": 61348 + }, + { + "icon_id": "16452612", + "name": "playcircle-fill", + "font_class": "playcircle-fill", + "unicode": "ef99", + "unicode_decimal": 61337 + }, + { + "icon_id": "16452613", + "name": "stopcircle-fill", + "font_class": "stopcircle-fill", + "unicode": "ef9a", + "unicode_decimal": 61338 + }, + { + "icon_id": "16452614", + "name": "pausecircle-fill", + "font_class": "pausecircle-fill", + "unicode": "ef9b", + "unicode_decimal": 61339 + }, + { + "icon_id": "16452615", + "name": "stopcircle", + "font_class": "stopcircle", + "unicode": "ef9c", + "unicode_decimal": 61340 + }, + { + "icon_id": "16452616", + "name": "playcircle", + "font_class": "playcircle", + "unicode": "ef9d", + "unicode_decimal": 61341 + }, + { + "icon_id": "16452617", + "name": "pausecircle", + "font_class": "pausecircle", + "unicode": "ef9e", + "unicode_decimal": 61342 + }, + { + "icon_id": "16452482", + "name": "train-fill", + "font_class": "train-fill", + "unicode": "ef97", + "unicode_decimal": 61335 + }, + { + "icon_id": "16452483", + "name": "train", + "font_class": "train", + "unicode": "ef98", + "unicode_decimal": 61336 + }, + { + "icon_id": "16417010", + "name": "file-done", + "font_class": "file-done", + "unicode": "e655", + "unicode_decimal": 58965 + }, + { + "icon_id": "16417011", + "name": "file-fill", + "font_class": "file-fill", + "unicode": "e656", + "unicode_decimal": 58966 + }, + { + "icon_id": "16417012", + "name": "file-exclamation-fill", + "font_class": "file-exclamation-fill", + "unicode": "e657", + "unicode_decimal": 58967 + }, + { + "icon_id": "16417013", + "name": "file-exception", + "font_class": "file-exception", + "unicode": "e658", + "unicode_decimal": 58968 + }, + { + "icon_id": "16417015", + "name": "file-exclamation", + "font_class": "file-exclamation", + "unicode": "e659", + "unicode_decimal": 58969 + }, + { + "icon_id": "16417016", + "name": "file-exl-fill", + "font_class": "file-exl-fill", + "unicode": "e65a", + "unicode_decimal": 58970 + }, + { + "icon_id": "16417017", + "name": "file-excel", + "font_class": "file-excel", + "unicode": "e65b", + "unicode_decimal": 58971 + }, + { + "icon_id": "16417021", + "name": "file-image-fill", + "font_class": "file-image-fill", + "unicode": "e65c", + "unicode_decimal": 58972 + }, + { + "icon_id": "16417022", + "name": "file-excel-fill", + "font_class": "file-excel-fill", + "unicode": "e65d", + "unicode_decimal": 58973 + }, + { + "icon_id": "16417025", + "name": "file-image", + "font_class": "file-image", + "unicode": "e65e", + "unicode_decimal": 58974 + }, + { + "icon_id": "16417026", + "name": "file-markdown", + "font_class": "file-markdown", + "unicode": "e65f", + "unicode_decimal": 58975 + }, + { + "icon_id": "16417027", + "name": "file-pdf2", + "font_class": "file-pdf2", + "unicode": "e660", + "unicode_decimal": 58976 + }, + { + "icon_id": "16417028", + "name": "file-markdown-fill", + "font_class": "file-markdown-fill", + "unicode": "e661", + "unicode_decimal": 58977 + }, + { + "icon_id": "16417029", + "name": "file-gif-fill", + "font_class": "file-gif-fill", + "unicode": "e662", + "unicode_decimal": 58978 + }, + { + "icon_id": "16417030", + "name": "file-jpge-fill", + "font_class": "file-jpge-fill", + "unicode": "e663", + "unicode_decimal": 58979 + }, + { + "icon_id": "16417031", + "name": "file-pdf-fill", + "font_class": "file-pdf-fill", + "unicode": "e664", + "unicode_decimal": 58980 + }, + { + "icon_id": "16417032", + "name": "file-pdf2-fill", + "font_class": "file-pdf2-fill", + "unicode": "e665", + "unicode_decimal": 58981 + }, + { + "icon_id": "16417033", + "name": "file-png-fill", + "font_class": "file-png-fill", + "unicode": "e666", + "unicode_decimal": 58982 + }, + { + "icon_id": "16417034", + "name": "file-ppt", + "font_class": "file-ppt", + "unicode": "e667", + "unicode_decimal": 58983 + }, + { + "icon_id": "16417035", + "name": "file-ppt-fill", + "font_class": "file-ppt-fill", + "unicode": "e668", + "unicode_decimal": 58984 + }, + { + "icon_id": "16417036", + "name": "file-sync", + "font_class": "file-sync", + "unicode": "e669", + "unicode_decimal": 58985 + }, + { + "icon_id": "16417037", + "name": "file-protect", + "font_class": "file-protect", + "unicode": "e66a", + "unicode_decimal": 58986 + }, + { + "icon_id": "16417038", + "name": "file-text", + "font_class": "file-text", + "unicode": "e66b", + "unicode_decimal": 58987 + }, + { + "icon_id": "16417039", + "name": "file-search", + "font_class": "file-search", + "unicode": "e66c", + "unicode_decimal": 58988 + }, + { + "icon_id": "16417040", + "name": "file-text-fill", + "font_class": "file-text-fill", + "unicode": "e66d", + "unicode_decimal": 58989 + }, + { + "icon_id": "16417041", + "name": "file-tif-fill", + "font_class": "file-tif-fill", + "unicode": "e66e", + "unicode_decimal": 58990 + }, + { + "icon_id": "16417042", + "name": "file-unknown-fill", + "font_class": "file-unknown-fill", + "unicode": "e66f", + "unicode_decimal": 58991 + }, + { + "icon_id": "16417043", + "name": "file-unknown", + "font_class": "file-unknown", + "unicode": "e670", + "unicode_decimal": 58992 + }, + { + "icon_id": "16417044", + "name": "file-txt-fill", + "font_class": "file-txt-fill", + "unicode": "e671", + "unicode_decimal": 58993 + }, + { + "icon_id": "16417045", + "name": "file-word-fill", + "font_class": "file-word-fill", + "unicode": "e672", + "unicode_decimal": 58994 + }, + { + "icon_id": "16417046", + "name": "file-word", + "font_class": "file-word", + "unicode": "e673", + "unicode_decimal": 58995 + }, + { + "icon_id": "16417047", + "name": "file-zip2", + "font_class": "file-zip2", + "unicode": "e674", + "unicode_decimal": 58996 + }, + { + "icon_id": "16417048", + "name": "file-zip-fill", + "font_class": "file-zip-fill", + "unicode": "e675", + "unicode_decimal": 58997 + }, + { + "icon_id": "16417049", + "name": "file-zip2-fill", + "font_class": "file-zip2-fill", + "unicode": "e676", + "unicode_decimal": 58998 + }, + { + "icon_id": "16417050", + "name": "file-xlsx-fill", + "font_class": "file-xlsx-fill", + "unicode": "e677", + "unicode_decimal": 58999 + }, + { + "icon_id": "16417051", + "name": "file-add", + "font_class": "file-add", + "unicode": "e678", + "unicode_decimal": 59000 + }, + { + "icon_id": "16417052", + "name": "file", + "font_class": "file", + "unicode": "e679", + "unicode_decimal": 59001 + }, + { + "icon_id": "16417053", + "name": "file-add-fill", + "font_class": "file-add-fill", + "unicode": "e67a", + "unicode_decimal": 59002 + }, + { + "icon_id": "16417054", + "name": "file-bmp-fill", + "font_class": "file-bmp-fill", + "unicode": "e67b", + "unicode_decimal": 59003 + }, + { + "icon_id": "16417055", + "name": "file-copy", + "font_class": "file-copy", + "unicode": "e67c", + "unicode_decimal": 59004 + }, + { + "icon_id": "16417056", + "name": "file-copy-fill", + "font_class": "file-copy-fill", + "unicode": "e67d", + "unicode_decimal": 59005 + }, + { + "icon_id": "16417057", + "name": "file-doc-fill", + "font_class": "file-doc-fill", + "unicode": "e67e", + "unicode_decimal": 59006 + }, + { + "icon_id": "16417601", + "name": "radio-fill", + "font_class": "radio-fill", + "unicode": "e6e5", + "unicode_decimal": 59109 + }, + { + "icon_id": "16417614", + "name": "checked-fill", + "font_class": "checked-fill", + "unicode": "e6e8", + "unicode_decimal": 59112 + }, + { + "icon_id": "16417595", + "name": "radio-unchecked", + "font_class": "radio-unchecked", + "unicode": "e6dd", + "unicode_decimal": 59101 + }, + { + "icon_id": "16417597", + "name": "radio", + "font_class": "radio", + "unicode": "e6df", + "unicode_decimal": 59103 + }, + { + "icon_id": "16452121", + "name": "collect-hba", + "font_class": "collect-hba", + "unicode": "ef8c", + "unicode_decimal": 61324 + }, + { + "icon_id": "16452123", + "name": "collect-raid", + "font_class": "collect-raid", + "unicode": "ef8d", + "unicode_decimal": 61325 + }, + { + "icon_id": "16452124", + "name": "collect-adapter", + "font_class": "collect-adapter", + "unicode": "ef8e", + "unicode_decimal": 61326 + }, + { + "icon_id": "16452126", + "name": "GPU", + "font_class": "GPU", + "unicode": "ef8f", + "unicode_decimal": 61327 + }, + { + "icon_id": "16452127", + "name": "CPU", + "font_class": "CPU", + "unicode": "ef90", + "unicode_decimal": 61328 + }, + { + "icon_id": "16417983", + "name": "tag", + "font_class": "tag", + "unicode": "e75a", + "unicode_decimal": 59226 + }, + { + "icon_id": "16417985", + "name": "tags", + "font_class": "tags", + "unicode": "e75c", + "unicode_decimal": 59228 + }, + { + "icon_id": "16417986", + "name": "tag-fill", + "font_class": "tag-fill", + "unicode": "e75e", + "unicode_decimal": 59230 + }, + { + "icon_id": "16417987", + "name": "tags-fill", + "font_class": "tags-fill", + "unicode": "e75f", + "unicode_decimal": 59231 + }, + { + "icon_id": "16417868", + "name": "filter", + "font_class": "filter", + "unicode": "e72d", + "unicode_decimal": 59181 + }, + { + "icon_id": "16417872", + "name": "filter-fill", + "font_class": "filter-fill", + "unicode": "e72e", + "unicode_decimal": 59182 + }, + { + "icon_id": "16446657", + "name": "copy-fill", + "font_class": "copy-fill", + "unicode": "ef88", + "unicode_decimal": 61320 + }, + { + "icon_id": "16446658", + "name": "copy", + "font_class": "copy", + "unicode": "ef89", + "unicode_decimal": 61321 + }, + { + "icon_id": "16417610", + "name": "batch-folding-fill", + "font_class": "batch-folding-fill", + "unicode": "e6da", + "unicode_decimal": 59098 + }, + { + "icon_id": "16417611", + "name": "batch-folding", + "font_class": "batch-folding", + "unicode": "e6db", + "unicode_decimal": 59099 + }, + { + "icon_id": "16417634", + "name": "minus-circle", + "font_class": "minus-circle", + "unicode": "e6e1", + "unicode_decimal": 59105 + }, + { + "icon_id": "16417636", + "name": "minus-circle-fill", + "font_class": "minus-circle-fill", + "unicode": "e6e2", + "unicode_decimal": 59106 + }, + { + "icon_id": "16417637", + "name": "minus-square-fill", + "font_class": "minus-square-fill", + "unicode": "e6e3", + "unicode_decimal": 59107 + }, + { + "icon_id": "16417638", + "name": "minus-square", + "font_class": "minus-square", + "unicode": "e6e4", + "unicode_decimal": 59108 + }, + { + "icon_id": "16417592", + "name": "plus-circle-fill", + "font_class": "plus-circle-fill", + "unicode": "e6d5", + "unicode_decimal": 59093 + }, + { + "icon_id": "16417594", + "name": "plus-circle", + "font_class": "plus-circle", + "unicode": "e6d6", + "unicode_decimal": 59094 + }, + { + "icon_id": "16417599", + "name": "plus-square-fill", + "font_class": "plus-square-fill", + "unicode": "e6d7", + "unicode_decimal": 59095 + }, + { + "icon_id": "16417600", + "name": "plus-square", + "font_class": "plus-square", + "unicode": "e6d8", + "unicode_decimal": 59096 + }, + { + "icon_id": "16445585", + "name": "networks", + "font_class": "networks", + "unicode": "ef87", + "unicode_decimal": 61319 + }, + { + "icon_id": "16444953", + "name": "log-off", + "font_class": "log-off", + "unicode": "ef85", + "unicode_decimal": 61317 + }, + { + "icon_id": "16444957", + "name": "import", + "font_class": "import", + "unicode": "ef86", + "unicode_decimal": 61318 + }, + { + "icon_id": "11810809", + "name": "menu-indent", + "font_class": "menu-indent", + "unicode": "e75b", + "unicode_decimal": 59227 + }, + { + "icon_id": "11810823", + "name": "menu-outdent", + "font_class": "menu-outdent", + "unicode": "e75d", + "unicode_decimal": 59229 + }, + { + "icon_id": "11810790", + "name": "Chinese", + "font_class": "chinese", + "unicode": "e706", + "unicode_decimal": 59142 + }, + { + "icon_id": "11810792", + "name": "English", + "font_class": "english", + "unicode": "e71d", + "unicode_decimal": 59165 + }, + { + "icon_id": "16418048", + "name": "api", + "font_class": "api", + "unicode": "e768", + "unicode_decimal": 59240 + }, + { + "icon_id": "16418053", + "name": "api-fill", + "font_class": "api-fill", + "unicode": "e76c", + "unicode_decimal": 59244 + }, + { + "icon_id": "16441241", + "name": "node-fill", + "font_class": "node-fill", + "unicode": "ef83", + "unicode_decimal": 61315 + }, + { + "icon_id": "16441242", + "name": "node", + "font_class": "node", + "unicode": "ef84", + "unicode_decimal": 61316 + }, + { + "icon_id": "11810824", + "name": "password-show-fill", + "font_class": "password-show-fill", + "unicode": "e76f", + "unicode_decimal": 59247 + }, + { + "icon_id": "11810830", + "name": "password-hide", + "font_class": "password-hide", + "unicode": "e770", + "unicode_decimal": 59248 + }, + { + "icon_id": "11810831", + "name": "password-show", + "font_class": "password-show", + "unicode": "e771", + "unicode_decimal": 59249 + }, + { + "icon_id": "11810863", + "name": "password-hide-fill", + "font_class": "password-hide-fill", + "unicode": "e772", + "unicode_decimal": 59250 + }, + { + "icon_id": "16438972", + "name": "tasks-fill", + "font_class": "tasks-fill", + "unicode": "ef81", + "unicode_decimal": 61313 + }, + { + "icon_id": "16438973", + "name": "tasks", + "font_class": "tasks", + "unicode": "ef82", + "unicode_decimal": 61314 + }, + { + "icon_id": "16436914", + "name": "monitoring", + "font_class": "monitoring", + "unicode": "ef7f", + "unicode_decimal": 61311 + }, + { + "icon_id": "16436916", + "name": "operation-analysis", + "font_class": "operation-analysis", + "unicode": "ef80", + "unicode_decimal": 61312 + }, + { + "icon_id": "16435727", + "name": "chat-group-fill", + "font_class": "chat-group-fill", + "unicode": "ef7d", + "unicode_decimal": 61309 + }, + { + "icon_id": "16435728", + "name": "chat-group", + "font_class": "chat-group", + "unicode": "ef7e", + "unicode_decimal": 61310 + }, + { + "icon_id": "16433047", + "name": "more", + "font_class": "more", + "unicode": "ef79", + "unicode_decimal": 61305 + }, + { + "icon_id": "16433048", + "name": "gallery-view", + "font_class": "gallery-view", + "unicode": "ef7a", + "unicode_decimal": 61306 + }, + { + "icon_id": "16433049", + "name": "all-fill", + "font_class": "all-fill", + "unicode": "ef7b", + "unicode_decimal": 61307 + }, + { + "icon_id": "16433050", + "name": "all", + "font_class": "all", + "unicode": "ef7c", + "unicode_decimal": 61308 + }, + { + "icon_id": "16430191", + "name": "laptop-check", + "font_class": "laptop-check", + "unicode": "ef74", + "unicode_decimal": 61300 + }, + { + "icon_id": "16430192", + "name": "display-arrow-left", + "font_class": "display-arrow-left", + "unicode": "ef75", + "unicode_decimal": 61301 + }, + { + "icon_id": "16430193", + "name": "display-code", + "font_class": "display-code", + "unicode": "ef76", + "unicode_decimal": 61302 + }, + { + "icon_id": "16430194", + "name": "display-arrow-right", + "font_class": "display-arrow-right", + "unicode": "ef77", + "unicode_decimal": 61303 + }, + { + "icon_id": "16430195", + "name": "laptop-error", + "font_class": "laptop-error", + "unicode": "ef78", + "unicode_decimal": 61304 + }, + { + "icon_id": "16428715", + "name": "laptop", + "font_class": "laptop", + "unicode": "ef6f", + "unicode_decimal": 61295 + }, + { + "icon_id": "16428716", + "name": "operation-manage", + "font_class": "operation-manage", + "unicode": "ef70", + "unicode_decimal": 61296 + }, + { + "icon_id": "16428717", + "name": "system-manage", + "font_class": "system-manage", + "unicode": "ef71", + "unicode_decimal": 61297 + }, + { + "icon_id": "16428718", + "name": "statistics", + "font_class": "statistics", + "unicode": "ef72", + "unicode_decimal": 61298 + }, + { + "icon_id": "16428719", + "name": "information", + "font_class": "information", + "unicode": "ef73", + "unicode_decimal": 61299 + }, + { + "icon_id": "16417845", + "name": "cloud-fill", + "font_class": "cloud-fill", + "unicode": "e72a", + "unicode_decimal": 59178 + }, + { + "icon_id": "16417839", + "name": "cloud-download", + "font_class": "cloud-download", + "unicode": "e725", + "unicode_decimal": 59173 + }, + { + "icon_id": "16417840", + "name": "cloud-sync", + "font_class": "cloud-sync", + "unicode": "e726", + "unicode_decimal": 59174 + }, + { + "icon_id": "16417841", + "name": "cloud-server", + "font_class": "cloud-server", + "unicode": "e727", + "unicode_decimal": 59175 + }, + { + "icon_id": "16417844", + "name": "cloud-upload", + "font_class": "cloud-upload", + "unicode": "e729", + "unicode_decimal": 59177 + }, + { + "icon_id": "16427300", + "name": "cloud", + "font_class": "cloud", + "unicode": "ef6e", + "unicode_decimal": 61294 + }, + { + "icon_id": "16417811", + "name": "bulb-fill", + "font_class": "bulb-fill", + "unicode": "e717", + "unicode_decimal": 59159 + }, + { + "icon_id": "16417812", + "name": "bulb", + "font_class": "bulb", + "unicode": "e718", + "unicode_decimal": 59160 + }, + { + "icon_id": "16417831", + "name": "chat", + "font_class": "chat", + "unicode": "e720", + "unicode_decimal": 59168 + }, + { + "icon_id": "16417832", + "name": "chat-fill", + "font_class": "chat-fill", + "unicode": "e721", + "unicode_decimal": 59169 + }, + { + "icon_id": "16417854", + "name": "dashboard", + "font_class": "dashboard", + "unicode": "e72b", + "unicode_decimal": 59179 + }, + { + "icon_id": "16417855", + "name": "dashboard-fill", + "font_class": "dashboard-fill", + "unicode": "e72c", + "unicode_decimal": 59180 + }, + { + "icon_id": "16417911", + "name": "message", + "font_class": "message", + "unicode": "e73a", + "unicode_decimal": 59194 + }, + { + "icon_id": "16417912", + "name": "message-fill", + "font_class": "message-fill", + "unicode": "e73b", + "unicode_decimal": 59195 + }, + { + "icon_id": "16417889", + "name": "home-fill", + "font_class": "home-fill", + "unicode": "e72f", + "unicode_decimal": 59183 + }, + { + "icon_id": "16417891", + "name": "home", + "font_class": "home", + "unicode": "e731", + "unicode_decimal": 59185 + }, + { + "icon_id": "16417899", + "name": "integral-fill", + "font_class": "integral-fill", + "unicode": "e732", + "unicode_decimal": 59186 + }, + { + "icon_id": "16417900", + "name": "integral", + "font_class": "integral", + "unicode": "e733", + "unicode_decimal": 59187 + }, + { + "icon_id": "16417902", + "name": "map-address", + "font_class": "map-address", + "unicode": "e734", + "unicode_decimal": 59188 + }, + { + "icon_id": "16417904", + "name": "map-location-fill", + "font_class": "map-location-fill", + "unicode": "e735", + "unicode_decimal": 59189 + }, + { + "icon_id": "16417906", + "name": "map-location", + "font_class": "map-location", + "unicode": "e737", + "unicode_decimal": 59191 + }, + { + "icon_id": "16417921", + "name": "notice", + "font_class": "notice", + "unicode": "e73c", + "unicode_decimal": 59196 + }, + { + "icon_id": "16417923", + "name": "notice-bell-fill", + "font_class": "notice-bell-fill", + "unicode": "e73d", + "unicode_decimal": 59197 + }, + { + "icon_id": "16417924", + "name": "notice-bell-mute", + "font_class": "notice-bell-mute", + "unicode": "e73e", + "unicode_decimal": 59198 + }, + { + "icon_id": "16417926", + "name": "notice-mute-fill", + "font_class": "notice-mute-fill", + "unicode": "e73f", + "unicode_decimal": 59199 + }, + { + "icon_id": "16417927", + "name": "notice-mute", + "font_class": "notice-mute", + "unicode": "e740", + "unicode_decimal": 59200 + }, + { + "icon_id": "16417953", + "name": "rocket-fill", + "font_class": "rocket-fill", + "unicode": "e743", + "unicode_decimal": 59203 + }, + { + "icon_id": "16417954", + "name": "rocket", + "font_class": "rocket", + "unicode": "e744", + "unicode_decimal": 59204 + }, + { + "icon_id": "16417956", + "name": "search-category", + "font_class": "search-category", + "unicode": "e758", + "unicode_decimal": 59224 + }, + { + "icon_id": "16417972", + "name": "search-category-fill", + "font_class": "search-category-fill", + "unicode": "e759", + "unicode_decimal": 59225 + }, + { + "icon_id": "16417966", + "name": "snippets-fill", + "font_class": "snippets-fill", + "unicode": "e756", + "unicode_decimal": 59222 + }, + { + "icon_id": "16417967", + "name": "snippets", + "font_class": "snippets", + "unicode": "e757", + "unicode_decimal": 59223 + }, + { + "icon_id": "16418045", + "name": "user-group", + "font_class": "user-group", + "unicode": "e765", + "unicode_decimal": 59237 + }, + { + "icon_id": "16418046", + "name": "apartment-fill", + "font_class": "apartment-fill", + "unicode": "e766", + "unicode_decimal": 59238 + }, + { + "icon_id": "16418047", + "name": "apartment", + "font_class": "apartment", + "unicode": "e767", + "unicode_decimal": 59239 + }, + { + "icon_id": "16418057", + "name": "user-group-add", + "font_class": "user-group-add", + "unicode": "e769", + "unicode_decimal": 59241 + }, + { + "icon_id": "16418058", + "name": "user-group-delete", + "font_class": "user-group-delete", + "unicode": "e76a", + "unicode_decimal": 59242 + }, + { + "icon_id": "16418064", + "name": "user-group-follow", + "font_class": "user-group-follow", + "unicode": "e76b", + "unicode_decimal": 59243 + }, + { + "icon_id": "16417968", + "name": "sound", + "font_class": "sound", + "unicode": "e74c", + "unicode_decimal": 59212 + }, + { + "icon_id": "16417969", + "name": "sound-fill", + "font_class": "sound-fill", + "unicode": "e74d", + "unicode_decimal": 59213 + }, + { + "icon_id": "16417970", + "name": "sound-mute", + "font_class": "sound-mute", + "unicode": "e754", + "unicode_decimal": 59220 + }, + { + "icon_id": "16417971", + "name": "sound-mute-fill", + "font_class": "sound-mute-fill", + "unicode": "e755", + "unicode_decimal": 59221 + }, + { + "icon_id": "16417979", + "name": "star-circle", + "font_class": "star-circle", + "unicode": "e74f", + "unicode_decimal": 59215 + }, + { + "icon_id": "16417980", + "name": "star-collection", + "font_class": "star-collection", + "unicode": "e750", + "unicode_decimal": 59216 + }, + { + "icon_id": "16417981", + "name": "star-collection-half", + "font_class": "star-collection-half", + "unicode": "e751", + "unicode_decimal": 59217 + }, + { + "icon_id": "16417982", + "name": "star-fill", + "font_class": "star-fill", + "unicode": "e752", + "unicode_decimal": 59218 + }, + { + "icon_id": "16418004", + "name": "star-empty", + "font_class": "star-empty", + "unicode": "e753", + "unicode_decimal": 59219 + }, + { + "icon_id": "16423019", + "name": "calendar-fill", + "font_class": "calendar-fill", + "unicode": "ef67", + "unicode_decimal": 61287 + }, + { + "icon_id": "16423020", + "name": "calendar", + "font_class": "calendar", + "unicode": "ef68", + "unicode_decimal": 61288 + }, + { + "icon_id": "16423005", + "name": "chart-pie-fill", + "font_class": "chart-pie-fill", + "unicode": "ef65", + "unicode_decimal": 61285 + }, + { + "icon_id": "16423007", + "name": "chart-pie", + "font_class": "chart-pie", + "unicode": "ef66", + "unicode_decimal": 61286 + }, + { + "icon_id": "16422970", + "name": "chart-area", + "font_class": "chart-area", + "unicode": "ef69", + "unicode_decimal": 61289 + }, + { + "icon_id": "16422971", + "name": "chart-line", + "font_class": "chart-line", + "unicode": "ef6a", + "unicode_decimal": 61290 + }, + { + "icon_id": "16422972", + "name": "chart-radar", + "font_class": "chart-radar", + "unicode": "ef6b", + "unicode_decimal": 61291 + }, + { + "icon_id": "16422973", + "name": "chart-bar", + "font_class": "chart-bar", + "unicode": "ef6c", + "unicode_decimal": 61292 + }, + { + "icon_id": "16422974", + "name": "chart-pointmap", + "font_class": "chart-pointmap", + "unicode": "ef6d", + "unicode_decimal": 61293 + }, + { + "icon_id": "16421386", + "name": "up-f", + "font_class": "up-f", + "unicode": "ef61", + "unicode_decimal": 61281 + }, + { + "icon_id": "16421387", + "name": "down-f", + "font_class": "down-f", + "unicode": "ef62", + "unicode_decimal": 61282 + }, + { + "icon_id": "16421388", + "name": "left-f", + "font_class": "left-f", + "unicode": "ef63", + "unicode_decimal": 61283 + }, + { + "icon_id": "16421389", + "name": "right-f", + "font_class": "right-f", + "unicode": "ef64", + "unicode_decimal": 61284 + }, + { + "icon_id": "11810765", + "name": "arrowdown", + "font_class": "arrowdown", + "unicode": "e745", + "unicode_decimal": 59205 + }, + { + "icon_id": "11810768", + "name": "arrowright", + "font_class": "arrowright", + "unicode": "e747", + "unicode_decimal": 59207 + }, + { + "icon_id": "11810770", + "name": "arrowrup", + "font_class": "arrowup", + "unicode": "e749", + "unicode_decimal": 59209 + }, + { + "icon_id": "11810771", + "name": "arrowleft", + "font_class": "arrowleft", + "unicode": "e74a", + "unicode_decimal": 59210 + }, + { + "icon_id": "6838107", + "name": "向下", + "font_class": "down", + "unicode": "e6a2", + "unicode_decimal": 59042 + }, + { + "icon_id": "6838120", + "name": "向上", + "font_class": "up", + "unicode": "e6a3", + "unicode_decimal": 59043 + }, + { + "icon_id": "6838135", + "name": "向右", + "font_class": "right", + "unicode": "e6a4", + "unicode_decimal": 59044 + }, + { + "icon_id": "6995913", + "name": "向左", + "font_class": "left", + "unicode": "e6af", + "unicode_decimal": 59055 + } + ] +} diff --git a/InManageBoot-ui/public/font/iconfont.ttf b/InManageBoot-ui/public/font/iconfont.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3db94f2809749a22769ab0add69821a2694b432a Binary files /dev/null and b/InManageBoot-ui/public/font/iconfont.ttf differ diff --git a/InManageBoot-ui/public/font/iconfont.woff b/InManageBoot-ui/public/font/iconfont.woff new file mode 100644 index 0000000000000000000000000000000000000000..c5b3dcaec7507ed7ca84c96e7f9122b1a5516781 Binary files /dev/null and b/InManageBoot-ui/public/font/iconfont.woff differ diff --git a/InManageBoot-ui/public/font/iconfont.woff2 b/InManageBoot-ui/public/font/iconfont.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..13d2f8a8e9d3a2cf385bdb2729f0d54098966b86 Binary files /dev/null and b/InManageBoot-ui/public/font/iconfont.woff2 differ diff --git a/InManageBoot-ui/public/font/iconnew/demo.css b/InManageBoot-ui/public/font/iconnew/demo.css new file mode 100644 index 0000000000000000000000000000000000000000..a67054a0a030993643b8cbe9f344b34706efa134 --- /dev/null +++ b/InManageBoot-ui/public/font/iconnew/demo.css @@ -0,0 +1,539 @@ +/* Logo 字体 */ +@font-face { + font-family: "iconfont logo"; + src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834'); + src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'), + url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'), + url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'), + url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg'); +} + +.logo { + font-family: "iconfont logo"; + font-size: 160px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* tabs */ +.nav-tabs { + position: relative; +} + +.nav-tabs .nav-more { + position: absolute; + right: 0; + bottom: 0; + height: 42px; + line-height: 42px; + color: #666; +} + +#tabs { + border-bottom: 1px solid #eee; +} + +#tabs li { + cursor: pointer; + width: 100px; + height: 40px; + line-height: 40px; + text-align: center; + font-size: 16px; + border-bottom: 2px solid transparent; + position: relative; + z-index: 1; + margin-bottom: -1px; + color: #666; +} + + +#tabs .active { + border-bottom-color: #f00; + color: #222; +} + +.tab-container .content { + display: none; +} + +/* 页面布局 */ +.main { + padding: 30px 100px; + width: 960px; + margin: 0 auto; +} + +.main .logo { + color: #333; + text-align: left; + margin-bottom: 30px; + line-height: 1; + height: 110px; + margin-top: -50px; + overflow: hidden; + *zoom: 1; +} + +.main .logo a { + font-size: 160px; + color: #333; +} + +.helps { + margin-top: 40px; +} + +.helps pre { + padding: 20px; + margin: 10px 0; + border: solid 1px #e7e1cd; + background-color: #fffdef; + overflow: auto; +} + +.icon_lists { + width: 100% !important; + overflow: hidden; + *zoom: 1; +} + +.icon_lists li { + width: 100px; + margin-bottom: 10px; + margin-right: 20px; + text-align: center; + list-style: none !important; + cursor: default; +} + +.icon_lists li .code-name { + line-height: 1.2; +} + +.icon_lists .icon { + display: block; + height: 100px; + line-height: 100px; + font-size: 42px; + margin: 10px auto; + color: #333; + -webkit-transition: font-size 0.25s linear, width 0.25s linear; + -moz-transition: font-size 0.25s linear, width 0.25s linear; + transition: font-size 0.25s linear, width 0.25s linear; +} + +.icon_lists .icon:hover { + font-size: 100px; +} + +.icon_lists .svg-icon { + /* 通过设置 font-size 来改变图标大小 */ + width: 1em; + /* 图标和文字相邻时,垂直对齐 */ + vertical-align: -0.15em; + /* 通过设置 color 来改变 SVG 的颜色/fill */ + fill: currentColor; + /* path 和 stroke 溢出 viewBox 部分在 IE 下会显示 + normalize.css 中也包含这行 */ + overflow: hidden; +} + +.icon_lists li .name, +.icon_lists li .code-name { + color: #666; +} + +/* markdown 样式 */ +.markdown { + color: #666; + font-size: 14px; + line-height: 1.8; +} + +.highlight { + line-height: 1.5; +} + +.markdown img { + vertical-align: middle; + max-width: 100%; +} + +.markdown h1 { + color: #404040; + font-weight: 500; + line-height: 40px; + margin-bottom: 24px; +} + +.markdown h2, +.markdown h3, +.markdown h4, +.markdown h5, +.markdown h6 { + color: #404040; + margin: 1.6em 0 0.6em 0; + font-weight: 500; + clear: both; +} + +.markdown h1 { + font-size: 28px; +} + +.markdown h2 { + font-size: 22px; +} + +.markdown h3 { + font-size: 16px; +} + +.markdown h4 { + font-size: 14px; +} + +.markdown h5 { + font-size: 12px; +} + +.markdown h6 { + font-size: 12px; +} + +.markdown hr { + height: 1px; + border: 0; + background: #e9e9e9; + margin: 16px 0; + clear: both; +} + +.markdown p { + margin: 1em 0; +} + +.markdown>p, +.markdown>blockquote, +.markdown>.highlight, +.markdown>ol, +.markdown>ul { + width: 80%; +} + +.markdown ul>li { + list-style: circle; +} + +.markdown>ul li, +.markdown blockquote ul>li { + margin-left: 20px; + padding-left: 4px; +} + +.markdown>ul li p, +.markdown>ol li p { + margin: 0.6em 0; +} + +.markdown ol>li { + list-style: decimal; +} + +.markdown>ol li, +.markdown blockquote ol>li { + margin-left: 20px; + padding-left: 4px; +} + +.markdown code { + margin: 0 3px; + padding: 0 5px; + background: #eee; + border-radius: 3px; +} + +.markdown strong, +.markdown b { + font-weight: 600; +} + +.markdown>table { + border-collapse: collapse; + border-spacing: 0px; + empty-cells: show; + border: 1px solid #e9e9e9; + width: 95%; + margin-bottom: 24px; +} + +.markdown>table th { + white-space: nowrap; + color: #333; + font-weight: 600; +} + +.markdown>table th, +.markdown>table td { + border: 1px solid #e9e9e9; + padding: 8px 16px; + text-align: left; +} + +.markdown>table th { + background: #F7F7F7; +} + +.markdown blockquote { + font-size: 90%; + color: #999; + border-left: 4px solid #e9e9e9; + padding-left: 0.8em; + margin: 1em 0; +} + +.markdown blockquote p { + margin: 0; +} + +.markdown .anchor { + opacity: 0; + transition: opacity 0.3s ease; + margin-left: 8px; +} + +.markdown .waiting { + color: #ccc; +} + +.markdown h1:hover .anchor, +.markdown h2:hover .anchor, +.markdown h3:hover .anchor, +.markdown h4:hover .anchor, +.markdown h5:hover .anchor, +.markdown h6:hover .anchor { + opacity: 1; + display: inline-block; +} + +.markdown>br, +.markdown>p>br { + clear: both; +} + + +.hljs { + display: block; + background: white; + padding: 0.5em; + color: #333333; + overflow-x: auto; +} + +.hljs-comment, +.hljs-meta { + color: #969896; +} + +.hljs-string, +.hljs-variable, +.hljs-template-variable, +.hljs-strong, +.hljs-emphasis, +.hljs-quote { + color: #df5000; +} + +.hljs-keyword, +.hljs-selector-tag, +.hljs-type { + color: #a71d5d; +} + +.hljs-literal, +.hljs-symbol, +.hljs-bullet, +.hljs-attribute { + color: #0086b3; +} + +.hljs-section, +.hljs-name { + color: #63a35c; +} + +.hljs-tag { + color: #333333; +} + +.hljs-title, +.hljs-attr, +.hljs-selector-id, +.hljs-selector-class, +.hljs-selector-attr, +.hljs-selector-pseudo { + color: #795da3; +} + +.hljs-addition { + color: #55a532; + background-color: #eaffea; +} + +.hljs-deletion { + color: #bd2c00; + background-color: #ffecec; +} + +.hljs-link { + text-decoration: underline; +} + +/* 代码高亮 */ +/* PrismJS 1.15.0 +https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */ +/** + * prism.js default theme for JavaScript, CSS and HTML + * Based on dabblet (http://dabblet.com) + * @author Lea Verou + */ +code[class*="language-"], +pre[class*="language-"] { + color: black; + background: none; + text-shadow: 0 1px white; + font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; + text-align: left; + white-space: pre; + word-spacing: normal; + word-break: normal; + word-wrap: normal; + line-height: 1.5; + + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} + +pre[class*="language-"]::-moz-selection, +pre[class*="language-"] ::-moz-selection, +code[class*="language-"]::-moz-selection, +code[class*="language-"] ::-moz-selection { + text-shadow: none; + background: #b3d4fc; +} + +pre[class*="language-"]::selection, +pre[class*="language-"] ::selection, +code[class*="language-"]::selection, +code[class*="language-"] ::selection { + text-shadow: none; + background: #b3d4fc; +} + +@media print { + + code[class*="language-"], + pre[class*="language-"] { + text-shadow: none; + } +} + +/* Code blocks */ +pre[class*="language-"] { + padding: 1em; + margin: .5em 0; + overflow: auto; +} + +:not(pre)>code[class*="language-"], +pre[class*="language-"] { + background: #f5f2f0; +} + +/* Inline code */ +:not(pre)>code[class*="language-"] { + padding: .1em; + border-radius: .3em; + white-space: normal; +} + +.token.comment, +.token.prolog, +.token.doctype, +.token.cdata { + color: slategray; +} + +.token.punctuation { + color: #999; +} + +.namespace { + opacity: .7; +} + +.token.property, +.token.tag, +.token.boolean, +.token.number, +.token.constant, +.token.symbol, +.token.deleted { + color: #905; +} + +.token.selector, +.token.attr-name, +.token.string, +.token.char, +.token.builtin, +.token.inserted { + color: #690; +} + +.token.operator, +.token.entity, +.token.url, +.language-css .token.string, +.style .token.string { + color: #9a6e3a; + background: hsla(0, 0%, 100%, .5); +} + +.token.atrule, +.token.attr-value, +.token.keyword { + color: #07a; +} + +.token.function, +.token.class-name { + color: #DD4A68; +} + +.token.regex, +.token.important, +.token.variable { + color: #e90; +} + +.token.important, +.token.bold { + font-weight: bold; +} + +.token.italic { + font-style: italic; +} + +.token.entity { + cursor: help; +} diff --git a/InManageBoot-ui/public/font/iconnew/demo_index.html b/InManageBoot-ui/public/font/iconnew/demo_index.html new file mode 100644 index 0000000000000000000000000000000000000000..f2a9b7d2178d46125b63ed0b678e363e5508139e --- /dev/null +++ b/InManageBoot-ui/public/font/iconnew/demo_index.html @@ -0,0 +1,18936 @@ + + + + + iconfont Demo + + + + + + + + + + + + + +
+

+ + +

+ +
+
+
    + +
  • + +
    file seal-line
    +
    &#xeaa9;
    +
  • + +
  • + +
    file search-line
    +
    &#xeaaa;
    +
  • + +
  • + +
    success-fill
    +
    &#xe649;
    +
  • + +
  • + +
    v3-line
    +
    &#xf054;
    +
  • + +
  • + +
    yingshe-line
    +
    &#xe660;
    +
  • + +
  • + +
    mirror-line
    +
    &#xe66f;
    +
  • + +
  • + +
    terminal-fill
    +
    &#xe735;
    +
  • + +
  • + +
    terminal-line
    +
    &#xe737;
    +
  • + +
  • + +
    terminal-window-fill
    +
    &#xe738;
    +
  • + +
  • + +
    terminal-window-line
    +
    &#xe742;
    +
  • + +
  • + +
    save-fill
    +
    &#xeaa7;
    +
  • + +
  • + +
    text editor save-line
    +
    &#xeaa8;
    +
  • + +
  • + +
    user-shared-fill
    +
    &#xe8a6;
    +
  • + +
  • + +
    user-shared-line
    +
    &#xe8a7;
    +
  • + +
  • + +
    dynamic-line
    +
    &#xee18;
    +
  • + +
  • + +
    jbod-line
    +
    &#xf052;
    +
  • + +
  • + +
    statistical view pie chart 2-line
    +
    &#xeaa6;
    +
  • + +
  • + +
    slideshow-fill
    +
    &#xe70a;
    +
  • + +
  • + +
    slideshow-line
    +
    &#xe715;
    +
  • + +
  • + +
    caogao-line
    +
    &#xf050;
    +
  • + +
  • + +
    caogao-fill
    +
    &#xf051;
    +
  • + +
  • + +
    date-fill
    +
    &#xeaa4;
    +
  • + +
  • + +
    date-line
    +
    &#xeaa5;
    +
  • + +
  • + +
    weixin-line
    +
    &#xf049;
    +
  • + +
  • + +
    weixin-fill
    +
    &#xf04b;
    +
  • + +
  • + +
    bookmark-3-fill
    +
    &#xe6c4;
    +
  • + +
  • + +
    bookmark-3-line
    +
    &#xe6c7;
    +
  • + +
  • + +
    user-6-fill
    +
    &#xe8a2;
    +
  • + +
  • + +
    user-fill
    +
    &#xe8a3;
    +
  • + +
  • + +
    user-6-line
    +
    &#xe8a4;
    +
  • + +
  • + +
    user-line
    +
    &#xe8a5;
    +
  • + +
  • + +
    eye-off-line
    +
    &#xe896;
    +
  • + +
  • + +
    message-2-line
    +
    &#xe6ff;
    +
  • + +
  • + +
    钉钉
    +
    &#xe787;
    +
  • + +
  • + +
    电池
    +
    &#xe648;
    +
  • + +
  • + +
    snowy-line
    +
    &#xe8a0;
    +
  • + +
  • + +
    snowy-fill
    +
    &#xe8a1;
    +
  • + +
  • + +
    fire-fill
    +
    &#xe89c;
    +
  • + +
  • + +
    fire-line
    +
    &#xe89d;
    +
  • + +
  • + +
    amount 5-line
    +
    &#xeaa3;
    +
  • + +
  • + +
    vidicon-fill
    +
    &#xe824;
    +
  • + +
  • + +
    vidicon-line
    +
    &#xe825;
    +
  • + +
  • + +
    money-cny-box-line
    +
    &#xe7b3;
    +
  • + +
  • + +
    money-cny-box-fill
    +
    &#xe7bb;
    +
  • + +
  • + +
    celsius-fill
    +
    &#xe897;
    +
  • + +
  • + +
    temp-hot-line
    +
    &#xe89e;
    +
  • + +
  • + +
    temp-hot-fill
    +
    &#xe89f;
    +
  • + +
  • + +
    structure 2-line
    +
    &#xeaa1;
    +
  • + +
  • + +
    structure 2-fill
    +
    &#xeaa2;
    +
  • + +
  • + +
    edit 2-line
    +
    &#xea9e;
    +
  • + +
  • + +
    relation 7-fill
    +
    &#xea9f;
    +
  • + +
  • + +
    relation 7-line
    +
    &#xeaa0;
    +
  • + +
  • + +
    hand bin-fill
    +
    &#xea98;
    +
  • + +
  • + +
    hand bin-line
    +
    &#xea9d;
    +
  • + +
  • + +
    goal analysis-line
    +
    &#xea95;
    +
  • + +
  • + +
    web page code-line
    +
    &#xea96;
    +
  • + +
  • + +
    web page code-fill
    +
    &#xea97;
    +
  • + +
  • + +
    cut-fill
    +
    &#xea93;
    +
  • + +
  • + +
    cut-line
    +
    &#xea94;
    +
  • + +
  • + +
    api-fill
    +
    &#xea91;
    +
  • + +
  • + +
    api-line
    +
    &#xea92;
    +
  • + +
  • + +
    terminal-box-line
    +
    &#xe733;
    +
  • + +
  • + +
    terminal-box-fill
    +
    &#xe734;
    +
  • + +
  • + +
    lightbulb-flash-line
    +
    &#xe849;
    +
  • + +
  • + +
    documentation download-fill
    +
    &#xea8f;
    +
  • + +
  • + +
    documentation download-line
    +
    &#xea90;
    +
  • + +
  • + +
    physical-disk-line
    +
    &#xf024;
    +
  • + +
  • + +
    raid-line
    +
    &#xf025;
    +
  • + +
  • + +
    logical-disk-line
    +
    &#xf026;
    +
  • + +
  • + +
    emt-box-line
    +
    &#xf023;
    +
  • + +
  • + +
    full-box-line
    +
    &#xf020;
    +
  • + +
  • + +
    half-box-line
    +
    &#xf021;
    +
  • + +
  • + +
    picture-in-picture-fill
    +
    &#xe813;
    +
  • + +
  • + +
    picture-in-picture-line
    +
    &#xe814;
    +
  • + +
  • + +
    structure 1-fill
    +
    &#xea8c;
    +
  • + +
  • + +
    structure 1-line
    +
    &#xea8d;
    +
  • + +
  • + +
    history-line
    +
    &#xe893;
    +
  • + +
  • + +
    history-fill
    +
    &#xe894;
    +
  • + +
  • + +
    guaqi-line
    +
    &#xf01a;
    +
  • + +
  • + +
    daiban-fill
    +
    &#xf01b;
    +
  • + +
  • + +
    yiban-line
    +
    &#xf01c;
    +
  • + +
  • + +
    daiban-line
    +
    &#xf01d;
    +
  • + +
  • + +
    yiban-fill
    +
    &#xf01e;
    +
  • + +
  • + +
    guaqi-fill
    +
    &#xf01f;
    +
  • + +
  • + +
    file-add-fill
    +
    &#xe785;
    +
  • + +
  • + +
    file-add-line
    +
    &#xe786;
    +
  • + +
  • + +
    chuku-line
    +
    &#xf016;
    +
  • + +
  • + +
    zaiku-line
    +
    &#xf017;
    +
  • + +
  • + +
    inbox-archive-line
    +
    &#xe6fb;
    +
  • + +
  • + +
    inbox-archive-fill
    +
    &#xe6fc;
    +
  • + +
  • + +
    inbox-unarchive-fill
    +
    &#xe6fd;
    +
  • + +
  • + +
    inbox-unarchive-line
    +
    &#xe6fe;
    +
  • + +
  • + +
    briefcase-2-fill
    +
    &#xe6c5;
    +
  • + +
  • + +
    briefcase-2-line
    +
    &#xe6c6;
    +
  • + +
  • + +
    share-box-line
    +
    &#xe872;
    +
  • + +
  • + +
    share-box-fill
    +
    &#xe892;
    +
  • + +
  • + +
    file-download-fill
    +
    &#xe783;
    +
  • + +
  • + +
    file-download-line
    +
    &#xe784;
    +
  • + +
  • + +
    more-2-fill
    +
    &#xe868;
    +
  • + +
  • + +
    more-2-line
    +
    &#xe869;
    +
  • + +
  • + +
    more-fill
    +
    &#xe871;
    +
  • + +
  • + +
    more-line
    +
    &#xe879;
    +
  • + +
  • + +
    filter-line
    +
    &#xe858;
    +
  • + +
  • + +
    filter-fill
    +
    &#xe859;
    +
  • + +
  • + +
    filter-off-fill
    +
    &#xe85a;
    +
  • + +
  • + +
    filter-off-line
    +
    &#xe866;
    +
  • + +
  • + +
    left small line-line
    +
    &#xea99;
    +
  • + +
  • + +
    right small line-line
    +
    &#xea9a;
    +
  • + +
  • + +
    up small-line
    +
    &#xea9b;
    +
  • + +
  • + +
    under small-line
    +
    &#xea9c;
    +
  • + +
  • + +
    mesh 5-line
    +
    &#xea8e;
    +
  • + +
  • + +
    list-check
    +
    &#xe7a3;
    +
  • + +
  • + +
    list-unordered
    +
    &#xe7a4;
    +
  • + +
  • + +
    file-copy-fill
    +
    &#xe77f;
    +
  • + +
  • + +
    file-copy-line
    +
    &#xe782;
    +
  • + +
  • + +
    share-forward-box-fill
    +
    &#xe873;
    +
  • + +
  • + +
    share-forward-box-line
    +
    &#xe876;
    +
  • + +
  • + +
    contacts-fill
    +
    &#xe890;
    +
  • + +
  • + +
    contacts-line
    +
    &#xe891;
    +
  • + +
  • + +
    lock-2-fill
    +
    &#xe860;
    +
  • + +
  • + +
    lock-2-line
    +
    &#xe861;
    +
  • + +
  • + +
    lock-fill
    +
    &#xe862;
    +
  • + +
  • + +
    lock-line
    +
    &#xe863;
    +
  • + +
  • + +
    lock-unlock-line
    +
    &#xe864;
    +
  • + +
  • + +
    lock-unlock-fill
    +
    &#xe865;
    +
  • + +
  • + +
    box-open-fill
    +
    &#xf013;
    +
  • + +
  • + +
    null case-fill
    +
    &#xea8a;
    +
  • + +
  • + +
    null case-line
    +
    &#xea8b;
    +
  • + +
  • + +
    passport-fill
    +
    &#xe7f5;
    +
  • + +
  • + +
    passport-line
    +
    &#xe7f6;
    +
  • + +
  • + +
    bill-fill
    +
    &#xe75e;
    +
  • + +
  • + +
    bill-line
    +
    &#xe77e;
    +
  • + +
  • + +
    file-lock-fill
    +
    &#xe780;
    +
  • + +
  • + +
    file-lock-line
    +
    &#xe781;
    +
  • + +
  • + +
    lower right page-line
    +
    &#xea89;
    +
  • + +
  • + +
    frame-fill
    +
    &#xea83;
    +
  • + +
  • + +
    frame-line
    +
    &#xea84;
    +
  • + +
  • + +
    list choose-line
    +
    &#xea85;
    +
  • + +
  • + +
    list view-fill
    +
    &#xea86;
    +
  • + +
  • + +
    list view-line
    +
    &#xea87;
    +
  • + +
  • + +
    lower right page-fill
    +
    &#xea88;
    +
  • + +
  • + +
    route 2-fill
    +
    &#xea81;
    +
  • + +
  • + +
    route 2-line
    +
    &#xea82;
    +
  • + +
  • +  +
    cube-fill
    +
    &#xea7f;
    +
  • + +
  • + +
    cube-line
    +
    &#xea80;
    +
  • + +
  • + +
    page level-fill
    +
    &#xea7c;
    +
  • + +
  • + +
    page level-line
    +
    &#xea7e;
    +
  • + +
  • + +
    computer movement-line
    +
    &#xea7d;
    +
  • + +
  • + +
    case-line
    +
    &#xea6c;
    +
  • + +
  • + +
    case-fill
    +
    &#xea6d;
    +
  • + +
  • + +
    constitute-fill
    +
    &#xea69;
    +
  • + +
  • + +
    constitute-line
    +
    &#xea6b;
    +
  • + +
  • + +
    file-settings-fill
    +
    &#xe77c;
    +
  • + +
  • + +
    file-settings-line
    +
    &#xe77d;
    +
  • + +
  • + +
    map-pin-range-fill
    +
    &#xe7f1;
    +
  • + +
  • + +
    map-pin-range-line
    +
    &#xe7f2;
    +
  • + +
  • + +
    stack-line
    +
    &#xe6f9;
    +
  • + +
  • + +
    stack-fill
    +
    &#xe6fa;
    +
  • + +
  • + +
    node-tree
    +
    &#xe79f;
    +
  • + +
  • + +
    mind-map
    +
    &#xe7a1;
    +
  • + +
  • + +
    list-check-2
    +
    &#xe7a2;
    +
  • + +
  • + +
    box-open-line
    +
    &#xe647;
    +
  • + +
  • + +
    inbox-line
    +
    &#xe6e9;
    +
  • + +
  • + +
    inbox-fill
    +
    &#xe6eb;
    +
  • + +
  • + +
    dots-sm
    +
    &#xe646;
    +
  • + +
  • + +
    applet-line
    +
    &#xe645;
    +
  • + +
  • + +
    mail-add-line
    +
    &#xe6df;
    +
  • + +
  • + +
    mail-check-fill
    +
    &#xe6e0;
    +
  • + +
  • + +
    mail-check-line
    +
    &#xe6e1;
    +
  • + +
  • + +
    mail-add-fill
    +
    &#xe6e5;
    +
  • + +
  • + +
    mail-close-line
    +
    &#xe6e6;
    +
  • + +
  • + +
    mail-download-line
    +
    &#xe6e7;
    +
  • + +
  • + +
    mail-close-fill
    +
    &#xe6e8;
    +
  • + +
  • + +
    mail-forbid-fill
    +
    &#xe6ea;
    +
  • + +
  • + +
    mail-forbid-line
    +
    &#xe6ec;
    +
  • + +
  • + +
    mail-lock-fill
    +
    &#xe6ed;
    +
  • + +
  • + +
    mail-download-fill
    +
    &#xe6ee;
    +
  • + +
  • + +
    mail-lock-line
    +
    &#xe6ef;
    +
  • + +
  • + +
    mail-open-fill
    +
    &#xe6f0;
    +
  • + +
  • + +
    mail-open-line
    +
    &#xe6f1;
    +
  • + +
  • + +
    mail-send-line
    +
    &#xe6f2;
    +
  • + +
  • + +
    mail-send-fill
    +
    &#xe6f3;
    +
  • + +
  • + +
    mail-settings-line
    +
    &#xe6f4;
    +
  • + +
  • + +
    mail-star-line
    +
    &#xe6f5;
    +
  • + +
  • + +
    mail-star-fill
    +
    &#xe6f6;
    +
  • + +
  • + +
    mail-unread-line
    +
    &#xe6f7;
    +
  • + +
  • + +
    mail-unread-fill
    +
    &#xe6f8;
    +
  • + +
  • + +
    hand-heart-fill
    +
    &#xe641;
    +
  • + +
  • + +
    outlet-2-line
    +
    &#xe642;
    +
  • + +
  • + +
    hand-heart-line
    +
    &#xe643;
    +
  • + +
  • + +
    outlet-2-fill
    +
    &#xe644;
    +
  • + +
  • + +
    user-3-line
    +
    &#xe63f;
    +
  • + +
  • + +
    user-3-fill
    +
    &#xe640;
    +
  • + +
  • + +
    freight-line
    +
    &#xea06;
    +
  • + +
  • + +
    task-line
    +
    &#xe797;
    +
  • + +
  • + +
    task-fill
    +
    &#xe799;
    +
  • + +
  • + +
    send-plane-fill
    +
    &#xea63;
    +
  • + +
  • + +
    send-plane-line
    +
    &#xea64;
    +
  • + +
  • + +
    jisuanqi
    +
    &#xe63b;
    +
  • + +
  • + +
    wangluo1
    +
    &#xe63c;
    +
  • + +
  • + +
    xunijiKVM
    +
    &#xe63d;
    +
  • + +
  • + +
    cunchu
    +
    &#xe63e;
    +
  • + +
  • + +
    bios
    +
    &#xe6db;
    +
  • + +
  • + +
    upgrade-pim
    +
    &#xf012;
    +
  • + +
  • + +
    box calculator-line
    +
    &#xea05;
    +
  • + +
  • + +
    cloud-fill
    +
    &#xe6cd;
    +
  • + +
  • + +
    cloud-line
    +
    &#xe6ce;
    +
  • + +
  • + +
    cloud-off-fill
    +
    &#xe6cf;
    +
  • + +
  • + +
    cloud-off-line
    +
    &#xe6d0;
    +
  • + +
  • + +
    change
    +
    &#xf011;
    +
  • + +
  • + +
    draft-fill
    +
    &#xe76c;
    +
  • + +
  • + +
    draft-line
    +
    &#xe77b;
    +
  • + +
  • + +
    zhishiku
    +
    &#xe636;
    +
  • + +
  • + +
    fuwu
    +
    &#xe637;
    +
  • + +
  • + +
    yuzhi
    +
    &#xe638;
    +
  • + +
  • + +
    bujian
    +
    &#xe639;
    +
  • + +
  • + +
    shengji
    +
    &#xe63a;
    +
  • + +
  • + +
    tree-Load-balancing
    +
    &#xe629;
    +
  • + +
  • + +
    tree-change
    +
    &#xe62e;
    +
  • + +
  • + +
    tree-wall
    +
    &#xe62f;
    +
  • + +
  • + +
    tree-waf
    +
    &#xe630;
    +
  • + +
  • + +
    tree-DDoS
    +
    &#xe631;
    +
  • + +
  • + +
    tree-server
    +
    &#xe632;
    +
  • + +
  • + +
    tree-router
    +
    &#xe633;
    +
  • + +
  • + +
    tree-store
    +
    &#xe634;
    +
  • + +
  • + +
    tree-DDoS
    +
    &#xe635;
    +
  • + +
  • + +
    survey-add-line
    +
    &#xe625;
    +
  • + +
  • + +
    file-mark-fill
    +
    &#xe771;
    +
  • + +
  • + +
    file-mark-line
    +
    &#xe772;
    +
  • + +
  • + +
    honour-line
    +
    &#xe6d9;
    +
  • + +
  • + +
    honour-fill
    +
    &#xe6da;
    +
  • + +
  • + +
    customer-service-2-line
    +
    &#xe6d1;
    +
  • + +
  • + +
    customer-service-fill
    +
    &#xe6d2;
    +
  • + +
  • + +
    customer-service-line
    +
    &#xe6d5;
    +
  • + +
  • + +
    customer-service-2-fill
    +
    &#xe6d6;
    +
  • + +
  • + +
    emotion-happy-fill
    +
    &#xe88c;
    +
  • + +
  • + +
    emotion-line
    +
    &#xe88d;
    +
  • + +
  • + +
    emotion-fill
    +
    &#xe88e;
    +
  • + +
  • + +
    emotion-happy-line
    +
    &#xe88f;
    +
  • + +
  • + +
    upload-fill
    +
    &#xe61d;
    +
  • + +
  • + +
    upload-line
    +
    &#xe624;
    +
  • + +
  • + +
    hail-line
    +
    &#xe89a;
    +
  • + +
  • + +
    hail-fill
    +
    &#xe89b;
    +
  • + +
  • + +
    pages-line
    +
    &#xe78d;
    +
  • + +
  • + +
    pages-fill
    +
    &#xe78e;
    +
  • + +
  • + +
    survey-fill
    +
    &#xe78f;
    +
  • + +
  • + +
    survey-line
    +
    &#xe790;
    +
  • + +
  • + +
    todo-fill
    +
    &#xe793;
    +
  • + +
  • + +
    todo-line
    +
    &#xe794;
    +
  • + +
  • + +
    exchange-funds-fill
    +
    &#xe7b4;
    +
  • + +
  • + +
    funds-box-fill
    +
    &#xe7b5;
    +
  • + +
  • + +
    funds-fill
    +
    &#xe7b6;
    +
  • + +
  • + +
    funds-line
    +
    &#xe7b7;
    +
  • + +
  • + +
    funds-box-line
    +
    &#xe7b8;
    +
  • + +
  • + +
    leaf-line
    +
    &#xe830;
    +
  • + +
  • + +
    leaf-fill
    +
    &#xe835;
    +
  • + +
  • + +
    lightbulb-line
    +
    &#xe836;
    +
  • + +
  • + +
    lightbulb-flash-fill
    +
    &#xe837;
    +
  • + +
  • + +
    plant-fill
    +
    &#xe838;
    +
  • + +
  • + +
    plant-line
    +
    &#xe844;
    +
  • + +
  • + +
    voice-recognition-fill
    +
    &#xe845;
    +
  • + +
  • + +
    voice-recognition-line
    +
    &#xe846;
    +
  • + +
  • + +
    function-line
    +
    &#xe85e;
    +
  • + +
  • + +
    team-fill
    +
    &#xe88a;
    +
  • + +
  • + +
    team-line
    +
    &#xe88b;
    +
  • + +
  • + +
    file-shield-fill
    +
    &#xe775;
    +
  • + +
  • + +
    file-shield-2-line
    +
    &#xe779;
    +
  • + +
  • + +
    question
    +
    &#xe714;
    +
  • + +
  • + +
    显卡类型
    +
    &#xe623;
    +
  • + +
  • + +
    send message-line
    +
    &#xea60;
    +
  • + +
  • + +
    send message-fill
    +
    &#xea61;
    +
  • + +
  • + +
    内存
    +
    &#xe627;
    +
  • + +
  • + +
    database-2-line
    +
    &#xe740;
    +
  • + +
  • + +
    database-2-fill
    +
    &#xe741;
    +
  • + +
  • + +
    监控管理
    +
    &#xe6a9;
    +
  • + +
  • + +
    computer end-line
    +
    &#xea62;
    +
  • + +
  • + +
    computer more-line
    +
    &#xea65;
    +
  • + +
  • + +
    computer public-line
    +
    &#xea66;
    +
  • + +
  • + +
    computer-fill
    +
    &#xea67;
    +
  • + +
  • + +
    computer movement-fill
    +
    &#xea68;
    +
  • + +
  • + +
    computer more-fill
    +
    &#xea6a;
    +
  • + +
  • + +
    computer warning-line
    +
    &#xea6e;
    +
  • + +
  • + +
    computer trend-fill
    +
    &#xea6f;
    +
  • + +
  • + +
    computer set-fill
    +
    &#xea70;
    +
  • + +
  • + +
    compose-line
    +
    &#xea71;
    +
  • + +
  • + +
    compose-fill
    +
    &#xea72;
    +
  • + +
  • + +
    computer end-fill
    +
    &#xea73;
    +
  • + +
  • + +
    computer error-line
    +
    &#xea74;
    +
  • + +
  • + +
    computer volatility-fill
    +
    &#xea75;
    +
  • + +
  • + +
    computer error-fill
    +
    &#xea76;
    +
  • + +
  • + +
    computer set-line
    +
    &#xea77;
    +
  • + +
  • + +
    computer trend-line
    +
    &#xea78;
    +
  • + +
  • + +
    computer volatility-line
    +
    &#xea79;
    +
  • + +
  • + +
    computer-line
    +
    &#xea7a;
    +
  • + +
  • + +
    computer public-fill
    +
    &#xea7b;
    +
  • + +
  • + +
    double right line-line
    +
    &#xe9e6;
    +
  • + +
  • + +
    double left line-line
    +
    &#xea5f;
    +
  • + +
  • + +
    drag-move-line
    +
    &#xe713;
    +
  • + +
  • + +
    flashlight-fill
    +
    &#xe898;
    +
  • + +
  • + +
    flashlight-line
    +
    &#xe899;
    +
  • + +
  • + +
    adhibition-line
    +
    &#xe9e5;
    +
  • + +
  • + +
    net
    +
    &#xe64b;
    +
  • + +
  • + +
    timer shaft-fill
    +
    &#xea5c;
    +
  • + +
  • + +
    timer shaft-line
    +
    &#xea5e;
    +
  • + +
  • + +
    subtract-fill
    +
    &#xe87a;
    +
  • + +
  • + +
    subtract-line
    +
    &#xe889;
    +
  • + +
  • + +
    menu-line
    +
    &#xe867;
    +
  • + +
  • + +
    download-line
    +
    &#xe93b;
    +
  • + +
  • + +
    upload-line
    +
    &#xe942;
    +
  • + +
  • + +
    close-line
    +
    &#xe8ee;
    +
  • + +
  • + +
    close-fill
    +
    &#xe8ef;
    +
  • + +
  • + +
    -out
    +
    &#xee89;
    +
  • + +
  • + +
    grid-fill
    +
    &#xe712;
    +
  • + +
  • + +
    unhealth-fill
    +
    &#xefdb;
    +
  • + +
  • + +
    health
    +
    &#xefdc;
    +
  • + +
  • + +
    unhealth
    +
    &#xefdd;
    +
  • + +
  • + +
    health-fill
    +
    &#xefde;
    +
  • + +
  • + +
    article-fill
    +
    &#xea5d;
    +
  • + +
  • + +
    hotel-line
    +
    &#xe6bb;
    +
  • + +
  • + +
    hotel-fill
    +
    &#xe6bc;
    +
  • + +
  • + +
    building-fill
    +
    &#xe6b1;
    +
  • + +
  • + +
    building-line
    +
    &#xe6b2;
    +
  • + +
  • + +
    danban
    +
    &#xe61c;
    +
  • + +
  • + +
    server-circle
    +
    &#xe61a;
    +
  • + +
  • + +
    port
    +
    &#xe611;
    +
  • + +
  • + +
    waf
    +
    &#xe617;
    +
  • + +
  • + +
    ddos
    +
    &#xe616;
    +
  • + +
  • + +
    control-circle
    +
    &#xe615;
    +
  • + +
  • + +
    23d
    +
    &#xe614;
    +
  • + +
  • + +
    brush-3-fill
    +
    &#xe708;
    +
  • + +
  • + +
    brush-3-line
    +
    &#xe709;
    +
  • + +
  • + +
    water-flash-fill
    +
    &#xe7bc;
    +
  • + +
  • + +
    water-flash-line
    +
    &#xe7bd;
    +
  • + +
  • + +
    coupon-4-circle
    +
    &#xe613;
    +
  • + +
  • + +
    lun-circle
    +
    &#xe60d;
    +
  • + +
  • + +
    book-2-circle
    +
    &#xe60e;
    +
  • + +
  • + +
    iscsi-circle
    +
    &#xe60f;
    +
  • + +
  • + +
    fan-circle
    +
    &#xe610;
    +
  • + +
  • + +
    store-circle
    +
    &#xe612;
    +
  • + +
  • + +
    book-2-fill
    +
    &#xe75c;
    +
  • + +
  • + +
    book-2-line
    +
    &#xe75d;
    +
  • + +
  • + +
    archive-drawer-fill
    +
    &#xe6be;
    +
  • + +
  • + +
    archive-drawer-line
    +
    &#xe6bf;
    +
  • + +
  • + +
    control
    +
    &#xe618;
    +
  • + +
  • + +
    iscsi
    +
    &#xe619;
    +
  • + +
  • + +
    lun
    +
    &#xe61b;
    +
  • + +
  • + +
    store-fill
    +
    &#xf014;
    +
  • + +
  • + +
    store
    +
    &#xf015;
    +
  • + +
  • + +
    shield-check-fill
    +
    &#xe8db;
    +
  • + +
  • + +
    shield-check-line
    +
    &#xe8dc;
    +
  • + +
  • + +
    shield-cross-fill
    +
    &#xe8dd;
    +
  • + +
  • + +
    shield-cross-line
    +
    &#xe8df;
    +
  • + +
  • + +
    file-list-2-fill
    +
    &#xe76d;
    +
  • + +
  • + +
    file-list-3-fill
    +
    &#xe76e;
    +
  • + +
  • + +
    file-list-3-line
    +
    &#xe76f;
    +
  • + +
  • + +
    file-list-2-line
    +
    &#xe770;
    +
  • + +
  • + +
    node-fill
    +
    &#xef83;
    +
  • + +
  • + +
    node
    +
    &#xef84;
    +
  • + +
  • + +
    file-text-fill
    +
    &#xe777;
    +
  • + +
  • + +
    file-text-line
    +
    &#xe778;
    +
  • + +
  • + +
    anticlockwise-2-line
    +
    &#xe700;
    +
  • + +
  • + +
    anticlockwise-fill
    +
    &#xe701;
    +
  • + +
  • + +
    anticlockwise-2-fill
    +
    &#xe702;
    +
  • + +
  • + +
    anticlockwise-line
    +
    &#xe703;
    +
  • + +
  • + +
    artboard-2-line
    +
    &#xe704;
    +
  • + +
  • + +
    artboard-2-fill
    +
    &#xe705;
    +
  • + +
  • + +
    clockwise-2-fill
    +
    &#xe706;
    +
  • + +
  • + +
    clockwise-line
    +
    &#xe707;
    +
  • + +
  • + +
    contacts-book-2-fill
    +
    &#xe760;
    +
  • + +
  • + +
    contacts-book-2-line
    +
    &#xe761;
    +
  • + +
  • + +
    contacts-book-fill
    +
    &#xe762;
    +
  • + +
  • + +
    contacts-book-line
    +
    &#xe763;
    +
  • + +
  • + +
    mini-program-line
    +
    &#xe7d6;
    +
  • + +
  • + +
    mini-program-fill
    +
    &#xe7d7;
    +
  • + +
  • + +
    map-pin-line
    +
    &#xe7ef;
    +
  • + +
  • + +
    map-pin-fill
    +
    &#xe7f0;
    +
  • + +
  • + +
    book-mark-line
    +
    &#xe75f;
    +
  • + +
  • + +
    file-chart-2-line
    +
    &#xe764;
    +
  • + +
  • + +
    file-chart-2-fill
    +
    &#xe769;
    +
  • + +
  • + +
    laptop-set-fill
    +
    &#xe60c;
    +
  • + +
  • + +
    links-fill
    +
    &#xe6d7;
    +
  • + +
  • + +
    links-line
    +
    &#xe6d8;
    +
  • + +
  • + +
    link-m
    +
    &#xe79b;
    +
  • + +
  • + +
    link-unlink-m
    +
    &#xe79c;
    +
  • + +
  • + +
    link-unlink
    +
    &#xe79d;
    +
  • + +
  • + +
    link
    +
    &#xe79e;
    +
  • + +
  • + +
    star-smile-fill
    +
    &#xe887;
    +
  • + +
  • + +
    star-smile-line
    +
    &#xe888;
    +
  • + +
  • + +
    download-line
    +
    &#xe608;
    +
  • + +
  • + +
    download-fill
    +
    &#xe609;
    +
  • + +
  • + +
    upload-line
    +
    &#xe60a;
    +
  • + +
  • + +
    upload-fill
    +
    &#xe60b;
    +
  • + +
  • + +
    top-cn
    +
    &#xe606;
    +
  • + +
  • + +
    top-en
    +
    &#xe607;
    +
  • + +
  • + +
    cpu-line-bg
    +
    &#xe62a;
    +
  • + +
  • + +
    plug-line-bg
    +
    &#xe62b;
    +
  • + +
  • + +
    fan-line-bg
    +
    &#xe62c;
    +
  • + +
  • + +
    save-line-bg
    +
    &#xe62d;
    +
  • + +
  • + +
    save-fill
    +
    &#xe74e;
    +
  • + +
  • + +
    save-line
    +
    &#xe74f;
    +
  • + +
  • + +
    fan
    +
    &#xf668;
    +
  • + +
  • + +
    cpu-fill
    +
    &#xe73e;
    +
  • + +
  • + +
    cpu-line
    +
    &#xe73f;
    +
  • + +
  • + +
    details-rack
    +
    &#xefb4;
    +
  • + +
  • + +
    details-server
    +
    &#xefb5;
    +
  • + +
  • + +
    details-firewall
    +
    &#xefb6;
    +
  • + +
  • + +
    details-cutte
    +
    &#xefb7;
    +
  • + +
  • + +
    details-store-fill
    +
    &#xf076;
    +
  • + +
  • + +
    details-fram
    +
    &#xf077;
    +
  • + +
  • + +
    details-safe
    +
    &#xf078;
    +
  • + +
  • + +
    picture-in-picture-exit-fill
    +
    &#xe81f;
    +
  • + +
  • + +
    picture-in-picture-exit-line
    +
    &#xe821;
    +
  • + +
  • + +
    vidicon-2-fill
    +
    &#xe822;
    +
  • + +
  • + +
    vidicon-2-line
    +
    &#xe823;
    +
  • + +
  • + +
    restart
    +
    &#xf069;
    +
  • + +
  • + +
    switch off-line
    +
    &#xea5a;
    +
  • + +
  • + +
    switch on-line
    +
    &#xea5b;
    +
  • + +
  • + +
    server-line
    +
    &#xe791;
    +
  • + +
  • + +
    server-fill
    +
    &#xe792;
    +
  • + +
  • + +
    router-line
    +
    &#xe74c;
    +
  • + +
  • + +
    router-fill
    +
    &#xe74d;
    +
  • + +
  • + +
    flow-chart
    +
    &#xe795;
    +
  • + +
  • + +
    organization-chart
    +
    &#xe7a0;
    +
  • + +
  • + +
    account-circle-fill
    +
    &#xe885;
    +
  • + +
  • + +
    account-circle-line
    +
    &#xe886;
    +
  • + +
  • + +
    arrow-left-circle-fill
    +
    &#xe841;
    +
  • + +
  • + +
    arrow-left-circle-line
    +
    &#xe843;
    +
  • + +
  • + +
    arrow-right-circle-fill
    +
    &#xe842;
    +
  • + +
  • + +
    arrow-right-circle-line
    +
    &#xe857;
    +
  • + +
  • + +
    file-edit-line
    +
    &#xe76a;
    +
  • + +
  • + +
    file-edit-fill
    +
    &#xe76b;
    +
  • + +
  • + +
    pie-chart-fill
    +
    &#xe6e3;
    +
  • + +
  • + +
    pie-chart-line
    +
    &#xe6e4;
    +
  • + +
  • + +
    up-mirror-image
    +
    &#xe602;
    +
  • + +
  • + +
    up-borderverticle-fill
    +
    &#xe603;
    +
  • + +
  • + +
    search-add
    +
    &#xe604;
    +
  • + +
  • + +
    search-min
    +
    &#xe605;
    +
  • + +
  • + +
    rocket-line
    +
    &#xe7f4;
    +
  • + +
  • + +
    rocket-fill
    +
    &#xe7f3;
    +
  • + +
  • + +
    dashboard-3-fill
    +
    &#xe73c;
    +
  • + +
  • + +
    dashboard-3-line
    +
    &#xe73d;
    +
  • + +
  • + +
    exchange-funds-line
    +
    &#xe7b2;
    +
  • + +
  • + +
    time-fill
    +
    &#xe883;
    +
  • + +
  • + +
    time-line
    +
    &#xe884;
    +
  • + +
  • + +
    timer-fill
    +
    &#xea58;
    +
  • + +
  • + +
    timer-line
    +
    &#xea59;
    +
  • + +
  • + +
    edit-box-fill
    +
    &#xe70f;
    +
  • + +
  • + +
    edit-box-line
    +
    &#xe710;
    +
  • + +
  • + +
    eye-close-line
    +
    &#xe939;
    +
  • + +
  • + +
    eye-close-fill
    +
    &#xe93a;
    +
  • + +
  • + +
    eye-off-fill
    +
    &#xe93d;
    +
  • + +
  • + +
    arrow-drop-down-line
    +
    &#xe951;
    +
  • + +
  • + +
    arrow-drop-down-fill
    +
    &#xe952;
    +
  • + +
  • + +
    arrow-drop-left-line
    +
    &#xe953;
    +
  • + +
  • + +
    arrow-drop-left-fill
    +
    &#xe954;
    +
  • + +
  • + +
    arrow-drop-right-line
    +
    &#xe956;
    +
  • + +
  • + +
    arrow-drop-right-fill
    +
    &#xe957;
    +
  • + +
  • + +
    arrow-drop-up-fill
    +
    &#xe959;
    +
  • + +
  • + +
    arrow-drop-up-line
    +
    &#xe95a;
    +
  • + +
  • + +
    arrow-left-s-fill
    +
    &#xe961;
    +
  • + +
  • + +
    arrow-right-s-fill
    +
    &#xe96b;
    +
  • + +
  • + +
    eye-fill
    +
    &#xe937;
    +
  • + +
  • + +
    eye-line
    +
    &#xe938;
    +
  • + +
  • + +
    drag-move-2-line
    +
    &#xe716;
    +
  • + +
  • + +
    drag-move-fill
    +
    &#xe712;
    +
  • + +
  • + +
    -alignleft-fill
    +
    &#xee95;
    +
  • + +
  • + +
    -borderbottom-fill
    +
    &#xee96;
    +
  • + +
  • + +
    -alignright-fill
    +
    &#xee97;
    +
  • + +
  • + +
    -bordertop-fill
    +
    &#xee98;
    +
  • + +
  • + +
    -picside-fill
    +
    &#xee99;
    +
  • + +
  • + +
    -borderverticle-fill
    +
    &#xee9a;
    +
  • + +
  • + +
    -piccenter-fill
    +
    &#xee9b;
    +
  • + +
  • + +
    mirror-image
    +
    &#xf022;
    +
  • + +
  • + +
    drag-drop-fill
    +
    &#xe711;
    +
  • + +
  • + +
    machine-room
    +
    &#xe628;
    +
  • + +
  • + +
    wall
    +
    &#xe626;
    +
  • + +
  • + +
    arrow-down-line
    +
    &#xe94b;
    +
  • + +
  • + +
    arrow-left-line
    +
    &#xe95d;
    +
  • + +
  • + +
    arrow-right-line
    +
    &#xe969;
    +
  • + +
  • + +
    arrow-up-line
    +
    &#xe971;
    +
  • + +
  • + +
    account-pin-circle-line
    +
    &#xe881;
    +
  • + +
  • + +
    account-pin-circle-fill
    +
    &#xe882;
    +
  • + +
  • + +
    search-line
    +
    &#xe870;
    +
  • + +
  • + +
    heart-2-fill
    +
    &#xe7bf;
    +
  • + +
  • + +
    heart-2-line
    +
    &#xe7c0;
    +
  • + +
  • + +
    shield-keyhole-fill
    +
    &#xe877;
    +
  • + +
  • + +
    shield-keyhole-line
    +
    &#xe878;
    +
  • + +
  • + +
    edit-lock-fill
    +
    &#xf053;
    +
  • + +
  • + +
    signal-wifi-1-fill
    +
    &#xe750;
    +
  • + +
  • + +
    signal-wifi-2-fill
    +
    &#xe751;
    +
  • + +
  • + +
    signal-wifi-1-line
    +
    &#xe752;
    +
  • + +
  • + +
    signal-wifi-3-line
    +
    &#xe753;
    +
  • + +
  • + +
    signal-wifi-3-fill
    +
    &#xe754;
    +
  • + +
  • + +
    signal-wifi-2-line
    +
    &#xe755;
    +
  • + +
  • + +
    signal-wifi-error-line
    +
    &#xe756;
    +
  • + +
  • + +
    wifi-line
    +
    &#xe758;
    +
  • + +
  • + +
    wifi-off-line
    +
    &#xe759;
    +
  • + +
  • + +
    wifi-off-fill
    +
    &#xe75a;
    +
  • + +
  • + +
    wifi-fill
    +
    &#xe75b;
    +
  • + +
  • + +
    upload-2-fill
    +
    &#xe87f;
    +
  • + +
  • + +
    upload-2-line
    +
    &#xe880;
    +
  • + +
  • + +
    bar-chart-2-line
    +
    &#xe6c0;
    +
  • + +
  • + +
    bar-chart-fill
    +
    &#xe6c1;
    +
  • + +
  • + +
    file-copy-2-fill
    +
    &#xe767;
    +
  • + +
  • + +
    file-copy-2-line
    +
    &#xe768;
    +
  • + +
  • + +
    waiting-fill
    +
    &#xefcb;
    +
  • + +
  • + +
    waiting
    +
    &#xefcc;
    +
  • + +
  • + +
    up-f
    +
    &#xef61;
    +
  • + +
  • + +
    down-f
    +
    &#xef62;
    +
  • + +
  • + +
    left-f
    +
    &#xef63;
    +
  • + +
  • + +
    right-f
    +
    &#xef64;
    +
  • + +
  • + +
    chart-area
    +
    &#xef69;
    +
  • + +
  • + +
    chart-line
    +
    &#xef6a;
    +
  • + +
  • + +
    chart-bar
    +
    &#xef6c;
    +
  • + +
  • + +
    chart-pointmap
    +
    &#xef6d;
    +
  • + +
  • + +
    certificate-fill
    +
    &#xf065;
    +
  • + +
  • + +
    monitor-circle
    +
    &#xf06a;
    +
  • + +
  • + +
    store-circle
    +
    &#xf06b;
    +
  • + +
  • + +
    server-circle
    +
    &#xf06c;
    +
  • + +
  • + +
    firewall-circle
    +
    &#xf06d;
    +
  • + +
  • + +
    change-circle
    +
    &#xf06e;
    +
  • + +
  • + +
    nic-circle
    +
    &#xf06f;
    +
  • + +
  • + +
    mail-volume-line
    +
    &#xe6de;
    +
  • + +
  • + +
    mail-volume-fill
    +
    &#xe6e2;
    +
  • + +
  • + +
    search-eye-fill
    +
    &#xe86e;
    +
  • + +
  • + +
    search-eye-line
    +
    &#xe86f;
    +
  • + +
  • + +
    restart-line
    +
    &#xe74a;
    +
  • + +
  • + +
    restart-fill
    +
    &#xe74b;
    +
  • + +
  • + +
    ongoing
    +
    &#xe601;
    +
  • + +
  • + +
    pause-circle-fill
    +
    &#xe80f;
    +
  • + +
  • + +
    pause-circle-line
    +
    &#xe810;
    +
  • + +
  • + +
    play-circle-fill
    +
    &#xe811;
    +
  • + +
  • + +
    play-circle-line
    +
    &#xe812;
    +
  • + +
  • + +
    timer-2-fill
    +
    &#xe87b;
    +
  • + +
  • + +
    timer-2-line
    +
    &#xe87e;
    +
  • + +
  • + +
    file-chart-line
    +
    &#xe765;
    +
  • + +
  • + +
    file-chart-fill
    +
    &#xe766;
    +
  • + +
  • + +
    file-transfer-fill
    +
    &#xe776;
    +
  • + +
  • + +
    file-transfer-line
    +
    &#xe77a;
    +
  • + +
  • + +
    file-search-fill
    +
    &#xe773;
    +
  • + +
  • + +
    file-search-line
    +
    &#xe774;
    +
  • + +
  • + +
    exchange-box-fill
    +
    &#xe7ae;
    +
  • + +
  • + +
    exchange-box-line
    +
    &#xe7b0;
    +
  • + +
  • + +
    volume-vibrate-line
    +
    &#xe826;
    +
  • + +
  • + +
    volume-vibrate-fill
    +
    &#xe827;
    +
  • + +
  • + +
    alarm-fill
    +
    &#xe83b;
    +
  • + +
  • + +
    alarm-line
    +
    &#xe840;
    +
  • + +
  • + +
    laptop-check
    +
    &#xef74;
    +
  • + +
  • + +
    laptop-error
    +
    &#xef78;
    +
  • + +
  • + +
    laptop-check-fill
    +
    &#xefdf;
    +
  • + +
  • + +
    laptop-error-fill
    +
    &#xefe0;
    +
  • + +
  • + +
    statistical view pie chart -line
    +
    &#xea56;
    +
  • + +
  • + +
    statistical view pie chart 2-fill
    +
    &#xea57;
    +
  • + +
  • + +
    hard-drive-2-fill
    +
    &#xe99f;
    +
  • + +
  • + +
    hard-drive-2-line
    +
    &#xe9a0;
    +
  • + +
  • + +
    spot
    +
    &#xf02e;
    +
  • + +
  • + +
    question-fill
    +
    &#xe86a;
    +
  • + +
  • + +
    question-line
    +
    &#xe86b;
    +
  • + +
  • + +
    table-fire
    +
    &#xefc2;
    +
  • + +
  • + +
    table-fire-fill
    +
    &#xefc3;
    +
  • + +
  • + +
    table-imperative-fill
    +
    &#xefc4;
    +
  • + +
  • + +
    table-lightning
    +
    &#xefc5;
    +
  • + +
  • + +
    table-water
    +
    &#xefc8;
    +
  • + +
  • + +
    table-imperative
    +
    &#xefc9;
    +
  • + +
  • + +
    table-lightning-fill
    +
    &#xefca;
    +
  • + +
  • + +
    table-water-fill
    +
    &#xefcd;
    +
  • + +
  • + +
    exclamation-circle
    +
    &#xefd0;
    +
  • + +
  • + +
    info-circle-fill
    +
    &#xefd1;
    +
  • + +
  • + +
    info-circle
    +
    &#xefd2;
    +
  • + +
  • + +
    exclamationcircle-f
    +
    &#xefd3;
    +
  • + +
  • + +
    table-condition-fill
    +
    &#xefcf;
    +
  • + +
  • + +
    table-condition
    +
    &#xefd4;
    +
  • + +
  • + +
    details-distributed
    +
    &#xf055;
    +
  • + +
  • + +
    details-change
    +
    &#xf056;
    +
  • + +
  • + +
    database-save-fill
    +
    &#xf057;
    +
  • + +
  • + +
    details-router
    +
    &#xf058;
    +
  • + +
  • + +
    details-nic
    +
    &#xf059;
    +
  • + +
  • + +
    details-sdn
    +
    &#xf05a;
    +
  • + +
  • + +
    details-monitor
    +
    &#xf05b;
    +
  • + +
  • + +
    save-set-fill
    +
    &#xf05c;
    +
  • + +
  • + +
    details-store
    +
    &#xf05d;
    +
  • + +
  • + +
    details-3d
    +
    &#xf060;
    +
  • + +
  • + +
    details-rule
    +
    &#xf061;
    +
  • + +
  • + +
    details-building
    +
    &#xf062;
    +
  • + +
  • + +
    details-ips
    +
    &#xf063;
    +
  • + +
  • + +
    mail-fill
    +
    &#xe6dc;
    +
  • + +
  • + +
    mail-line
    +
    &#xe6dd;
    +
  • + +
  • + +
    checkbox-circle-line
    +
    &#xe8ca;
    +
  • + +
  • + +
    checkbox-circle-fill
    +
    &#xe8cb;
    +
  • + +
  • + +
    checkbox-fill
    +
    &#xe8cc;
    +
  • + +
  • + +
    checkbox-indeterminate-fill
    +
    &#xe8cd;
    +
  • + +
  • + +
    checkbox-line
    +
    &#xe8ce;
    +
  • + +
  • + +
    checkbox-multiple-blank-fill
    +
    &#xe8cf;
    +
  • + +
  • + +
    checkbox-indeterminate-line
    +
    &#xe8d0;
    +
  • + +
  • + +
    checkbox-multiple-blank-line
    +
    &#xe8d1;
    +
  • + +
  • + +
    checkbox-multiple-line
    +
    &#xe8d2;
    +
  • + +
  • + +
    close-circle-fill
    +
    &#xe8d3;
    +
  • + +
  • + +
    checkbox-multiple-fill
    +
    &#xe8d4;
    +
  • + +
  • + +
    close-circle-line
    +
    &#xe8d5;
    +
  • + +
  • + +
    train-fill
    +
    &#xef97;
    +
  • + +
  • + +
    train
    +
    &#xef98;
    +
  • + +
  • + +
    reply-fill
    +
    &#xe981;
    +
  • + +
  • + +
    reply-line
    +
    &#xe982;
    +
  • + +
  • + +
    arrow-down-s-fill
    +
    &#xe94d;
    +
  • + +
  • + +
    arrow-down-s-line
    +
    &#xe94e;
    +
  • + +
  • + +
    arrow-left-s-line
    +
    &#xe962;
    +
  • + +
  • + +
    arrow-right-s-line
    +
    &#xe96c;
    +
  • + +
  • + +
    arrow-up-s-fill
    +
    &#xe97a;
    +
  • + +
  • + +
    arrow-up-s-line
    +
    &#xe97c;
    +
  • + +
  • + +
    arrow-go-back-fill
    +
    &#xe955;
    +
  • + +
  • + +
    arrow-go-forward-fill
    +
    &#xe958;
    +
  • + +
  • + +
    checkbox-plus-fill
    +
    &#xeff4;
    +
  • + +
  • + +
    checkbox-plus-line
    +
    &#xf04a;
    +
  • + +
  • + +
    refresh-fill
    +
    &#xe86c;
    +
  • + +
  • + +
    refresh-line
    +
    &#xe86d;
    +
  • + +
  • + +
    documentation upload-fill
    +
    &#xea18;
    +
  • + +
  • + +
    documentation upload-line
    +
    &#xea55;
    +
  • + +
  • + +
    eraser-fill
    +
    &#xea17;
    +
  • + +
  • + +
    text editor eraser-line
    +
    &#xea54;
    +
  • + +
  • + +
    edit-2-fill
    +
    &#xe70b;
    +
  • + +
  • + +
    edit-2-line
    +
    &#xe70c;
    +
  • + +
  • + +
    article-line
    +
    &#xea11;
    +
  • + +
  • + +
    sweep-line
    +
    &#xea52;
    +
  • + +
  • + +
    sweep-fill
    +
    &#xea53;
    +
  • + +
  • + +
    refresh 1-line
    +
    &#xea10;
    +
  • + +
  • + +
    shift-fill
    +
    &#xea50;
    +
  • + +
  • + +
    shift-line
    +
    &#xea51;
    +
  • + +
  • + +
    file security-line
    +
    &#xea16;
    +
  • + +
  • + +
    router 5-line
    +
    &#xea19;
    +
  • + +
  • + +
    router 5-fill
    +
    &#xea4f;
    +
  • + +
  • + +
    file remind-fill
    +
    &#xea0e;
    +
  • + +
  • + +
    file remind-line
    +
    &#xea0f;
    +
  • + +
  • + +
    remind-line
    +
    &#xea14;
    +
  • + +
  • + +
    remind-fill
    +
    &#xea15;
    +
  • + +
  • + +
    hand Heart-fill
    +
    &#xea12;
    +
  • + +
  • + +
    hand Heart-line
    +
    &#xea13;
    +
  • + +
  • + +
    file management-fill
    +
    &#xea0c;
    +
  • + +
  • + +
    file management-line
    +
    &#xea0d;
    +
  • + +
  • + +
    cash-fill
    +
    &#xea04;
    +
  • + +
  • + +
    cash-line
    +
    &#xea0b;
    +
  • + +
  • + +
    file draft text-fill
    +
    &#xe9ea;
    +
  • + +
  • + +
    file draft text-line
    +
    &#xe9f1;
    +
  • + +
  • + +
    file history-fill
    +
    &#xe9f2;
    +
  • + +
  • +  +
    file history-line
    +
    &#xe9ff;
    +
  • + +
  • + +
    file text-line
    +
    &#xea02;
    +
  • + +
  • + +
    file text-fill
    +
    &#xea03;
    +
  • + +
  • + +
    news-fill
    +
    &#xe9fc;
    +
  • + +
  • + +
    news-line
    +
    &#xe9fe;
    +
  • + +
  • + +
    package 1-fill
    +
    &#xea00;
    +
  • + +
  • + +
    package 1-line
    +
    &#xea01;
    +
  • + +
  • + +
    user set-line
    +
    &#xea4d;
    +
  • + +
  • + +
    user set-fill
    +
    &#xea4e;
    +
  • + +
  • + +
    annal upload-line
    +
    &#xe9dc;
    +
  • + +
  • + +
    annal upload-fill
    +
    &#xe9e9;
    +
  • + +
  • + +
    currency-line
    +
    &#xe7af;
    +
  • + +
  • + +
    currency-fill
    +
    &#xe7b1;
    +
  • + +
  • + +
    statistical view pie chart 3-fill
    +
    &#xea48;
    +
  • + +
  • + +
    statistical view pie chart 3-line
    +
    &#xea49;
    +
  • + +
  • + +
    structure 6-fill
    +
    &#xea4a;
    +
  • + +
  • + +
    structure 6-line
    +
    &#xea4c;
    +
  • + +
  • + +
    service-fill
    +
    &#xe7b9;
    +
  • + +
  • + +
    service-line
    +
    &#xe7ba;
    +
  • + +
  • + +
    mobile hard drive-line
    +
    &#xe9f7;
    +
  • + +
  • + +
    mobile hard drive-fill
    +
    &#xe9fa;
    +
  • + +
  • + +
    global-fill
    +
    &#xe6d3;
    +
  • + +
  • + +
    global-line
    +
    &#xe6d4;
    +
  • + +
  • + +
    camera-fill
    +
    &#xe7fe;
    +
  • + +
  • + +
    camera-line
    +
    &#xe7ff;
    +
  • + +
  • + +
    equalizer-fill
    +
    &#xe802;
    +
  • + +
  • + +
    equalizer-line
    +
    &#xe803;
    +
  • + +
  • + +
    notification-4-fill
    +
    &#xe80b;
    +
  • + +
  • + +
    notification-4-line
    +
    &#xe80c;
    +
  • + +
  • + +
    notification-off-line
    +
    &#xe80d;
    +
  • + +
  • + +
    notification-off-fill
    +
    &#xe80e;
    +
  • + +
  • + +
    earth-fill
    +
    &#xe7eb;
    +
  • + +
  • + +
    earth-line
    +
    &#xe7ec;
    +
  • + +
  • + +
    3D
    +
    &#xefd7;
    +
  • + +
  • + +
    eraser-fill
    +
    &#xe70d;
    +
  • + +
  • + +
    eraser-line
    +
    &#xe70e;
    +
  • + +
  • + +
    playcircle-fill
    +
    &#xef99;
    +
  • + +
  • + +
    pausecircle-fill
    +
    &#xef9b;
    +
  • + +
  • + +
    playcircle
    +
    &#xef9d;
    +
  • + +
  • + +
    pausecircle
    +
    &#xef9e;
    +
  • + +
  • + +
    door-closed-fill
    +
    &#xe82b;
    +
  • + +
  • + +
    door-closed-line
    +
    &#xe82c;
    +
  • + +
  • + +
    door-line
    +
    &#xe82d;
    +
  • + +
  • + +
    door-open-fill
    +
    &#xe82e;
    +
  • + +
  • + +
    door-open-line
    +
    &#xe82f;
    +
  • + +
  • + +
    plug-2-fill
    +
    &#xe831;
    +
  • + +
  • + +
    plug-2-line
    +
    &#xe832;
    +
  • + +
  • + +
    plug-fill
    +
    &#xe833;
    +
  • + +
  • + +
    plug-line
    +
    &#xe834;
    +
  • + +
  • + +
    add-line
    +
    &#xe839;
    +
  • + +
  • + +
    add-fill
    +
    &#xe83a;
    +
  • + +
  • + +
    apps-2-line
    +
    &#xe83c;
    +
  • + +
  • + +
    apps-2-fill
    +
    &#xe83d;
    +
  • + +
  • + +
    apps-fill
    +
    &#xe83e;
    +
  • + +
  • + +
    apps-line
    +
    &#xe83f;
    +
  • + +
  • + +
    check-line
    +
    &#xe847;
    +
  • + +
  • + +
    check-fill
    +
    &#xe848;
    +
  • + +
  • + +
    delete-bin-6-line
    +
    &#xe84f;
    +
  • + +
  • + +
    delete-bin-6-fill
    +
    &#xe850;
    +
  • + +
  • + +
    share-forward-fill
    +
    &#xe874;
    +
  • + +
  • + +
    share-forward-line
    +
    &#xe875;
    +
  • + +
  • + +
    toggle-fill
    +
    &#xe87c;
    +
  • + +
  • + +
    toggle-line
    +
    &#xe87d;
    +
  • + +
  • + +
    celsius-line
    +
    &#xe895;
    +
  • + +
  • + +
    notice-fill
    +
    &#xe9fb;
    +
  • + +
  • + +
    notice-line
    +
    &#xe9fd;
    +
  • + +
  • + +
    network-fill
    +
    &#xf018;
    +
  • + +
  • + +
    network
    +
    &#xf019;
    +
  • + +
  • + +
    indeterminate-circle-fill
    +
    &#xe85b;
    +
  • + +
  • + +
    indeterminate-circle-line
    +
    &#xe85c;
    +
  • + +
  • + +
    information-fill
    +
    &#xe85d;
    +
  • + +
  • + +
    information-line
    +
    &#xe85f;
    +
  • + +
  • + +
    error-warning-fill
    +
    &#xea47;
    +
  • + +
  • + +
    error-warning-line
    +
    &#xe853;
    +
  • + +
  • + +
    stop-circle-fill
    +
    &#xe9f8;
    +
  • + +
  • + +
    stop-circle-line
    +
    &#xe9f9;
    +
  • + +
  • + +
    signal
    +
    &#xe621;
    +
  • + +
  • + +
    4G
    +
    &#xe61e;
    +
  • + +
  • + +
    5g
    +
    &#xe61f;
    +
  • + +
  • + +
    2G
    +
    &#xe620;
    +
  • + +
  • + +
    3G
    +
    &#xe622;
    +
  • + +
  • + +
    alert-line
    +
    &#xea09;
    +
  • + +
  • + +
    alert-fill
    +
    &#xea0a;
    +
  • + +
  • + +
    bills other 1-fill
    +
    &#xe9da;
    +
  • + +
  • + +
    bills other 1-line
    +
    &#xe9db;
    +
  • + +
  • + +
    bills 5-fill
    +
    &#xe9d8;
    +
  • + +
  • + +
    bills 4-line
    +
    &#xe9d9;
    +
  • + +
  • + +
    calendar-todo-fill
    +
    &#xe6cb;
    +
  • + +
  • + +
    calendar-todo-line
    +
    &#xe6cc;
    +
  • + +
  • + +
    settings-3-line
    +
    &#xea45;
    +
  • + +
  • + +
    settings-5-fill
    +
    &#xea46;
    +
  • + +
  • + +
    dashboard
    +
    &#xe72b;
    +
  • + +
  • + +
    dashboard-fill
    +
    &#xe72c;
    +
  • + +
  • + +
    message
    +
    &#xe73a;
    +
  • + +
  • + +
    message-fill
    +
    &#xe73b;
    +
  • + +
  • + +
    chat-group-fill
    +
    &#xef7d;
    +
  • + +
  • + +
    chat-group
    +
    &#xef7e;
    +
  • + +
  • + +
    alarm-warning-fill
    +
    &#xe941;
    +
  • + +
  • + +
    alarm-warning-line
    +
    &#xe947;
    +
  • + +
  • + +
    projection screen-line
    +
    &#xea07;
    +
  • + +
  • + +
    projection screen-fill
    +
    &#xea08;
    +
  • + +
  • + +
    admonish-fill
    +
    &#xe9d6;
    +
  • + +
  • + +
    admonish-line
    +
    &#xe9d7;
    +
  • + +
  • + +
    computer proportion-fill
    +
    &#xe9e7;
    +
  • + +
  • + +
    computer proportion-line
    +
    &#xe9e8;
    +
  • + +
  • + +
    star-fill
    +
    &#xea43;
    +
  • + +
  • + +
    star-line
    +
    &#xea44;
    +
  • + +
  • + +
    voice playing-fill
    +
    &#xea3d;
    +
  • + +
  • + +
    voice playing-line
    +
    &#xea3e;
    +
  • + +
  • +  +
    volume close-fill
    +
    &#xea3f;
    +
  • + +
  • + +
    volume-line
    +
    &#xea40;
    +
  • + +
  • + +
    volume-fill
    +
    &#xea41;
    +
  • + +
  • + +
    volume close-line
    +
    &#xea42;
    +
  • + +
  • + +
    server arrange-line
    +
    &#xea1d;
    +
  • + +
  • + +
    server cloud-fill
    +
    &#xea20;
    +
  • + +
  • + +
    server cloud-line
    +
    &#xea21;
    +
  • + +
  • + +
    server arrange-fill
    +
    &#xea22;
    +
  • + +
  • + +
    server connect-fill
    +
    &#xea23;
    +
  • + +
  • + +
    server concatenate-line
    +
    &#xea24;
    +
  • + +
  • + +
    server concatenate-fill
    +
    &#xea25;
    +
  • + +
  • + +
    server crowd-fill
    +
    &#xea26;
    +
  • + +
  • + +
    server dish-fill
    +
    &#xea27;
    +
  • + +
  • + +
    server crowd-line
    +
    &#xea28;
    +
  • + +
  • + +
    server connect-line
    +
    &#xea29;
    +
  • + +
  • + +
    server dish-line
    +
    &#xea2a;
    +
  • + +
  • + +
    server group-line
    +
    &#xea2b;
    +
  • + +
  • + +
    server group-fill
    +
    &#xea2c;
    +
  • + +
  • + +
    server hdd-fill
    +
    &#xea2d;
    +
  • + +
  • + +
    server hdd-line
    +
    &#xea2e;
    +
  • + +
  • + +
    server herd-fill
    +
    &#xea2f;
    +
  • + +
  • + +
    server herd-line
    +
    &#xea30;
    +
  • + +
  • + +
    server host-fill
    +
    &#xea31;
    +
  • + +
  • + +
    server host computer-fill
    +
    &#xea32;
    +
  • + +
  • + +
    server interconnection-line
    +
    &#xea33;
    +
  • + +
  • + +
    server host-line
    +
    &#xea34;
    +
  • + +
  • + +
    server interconnection-fill
    +
    &#xea35;
    +
  • + +
  • + +
    server joint-line
    +
    &#xea36;
    +
  • + +
  • + +
    server link-line
    +
    &#xea37;
    +
  • + +
  • + +
    server joint-fill
    +
    &#xea38;
    +
  • + +
  • + +
    server paralleling-fill
    +
    &#xea39;
    +
  • + +
  • + +
    server link-fill
    +
    &#xea3a;
    +
  • + +
  • + +
    server paralleling-line
    +
    &#xea3b;
    +
  • + +
  • + +
    server host computer-line
    +
    &#xea3c;
    +
  • + +
  • + +
    message 2-fill
    +
    &#xe9f3;
    +
  • + +
  • + +
    message 2-line
    +
    &#xe9f6;
    +
  • + +
  • + +
    guardian-fill
    +
    &#xe9ef;
    +
  • + +
  • + +
    guardian-line
    +
    &#xe9f0;
    +
  • + +
  • + +
    screen list-fill
    +
    &#xea1a;
    +
  • + +
  • + +
    screen list-line
    +
    &#xea1b;
    +
  • + +
  • + +
    search-line
    +
    &#xea1c;
    +
  • + +
  • + +
    hierarchy-fill
    +
    &#xe9ed;
    +
  • + +
  • + +
    hierarchy-line
    +
    &#xe9ee;
    +
  • + +
  • + +
    model-fill
    +
    &#xe9f4;
    +
  • + +
  • + +
    model-line
    +
    &#xe9f5;
    +
  • + +
  • + +
    firm-line
    +
    &#xe9eb;
    +
  • + +
  • + +
    firm-fill
    +
    &#xe9ec;
    +
  • + +
  • + +
    home-5-line
    +
    &#xe6b4;
    +
  • + +
  • + +
    home-5-fill
    +
    &#xe6b5;
    +
  • + +
  • + +
    computer control-line
    +
    &#xe9e3;
    +
  • + +
  • + +
    computer control-fill
    +
    &#xe9e4;
    +
  • + +
  • + +
    computer information-fill
    +
    &#xe9e1;
    +
  • + +
  • + +
    computer information-line
    +
    &#xe9e2;
    +
  • + +
  • + +
    architecture-fill
    +
    &#xe9d4;
    +
  • + +
  • + +
    architecture-line
    +
    &#xe9d5;
    +
  • + +
  • + +
    company 6-line
    +
    &#xe9df;
    +
  • + +
  • + +
    company 6-fill
    +
    &#xe9e0;
    +
  • + +
  • + +
    company 3-line
    +
    &#xe9de;
    +
  • + +
  • + +
    company 3-fill
    +
    &#xe9dd;
    +
  • + +
  • + +
    server flock-fill
    +
    &#xea1e;
    +
  • + +
  • + +
    server flock-line
    +
    &#xea1f;
    +
  • + +
  • + +
    amount 3-line
    +
    &#xea4b;
    +
  • + +
  • + +
    amount 3-fill
    +
    &#xe9d3;
    +
  • + +
+
+

Unicode 引用

+
+ +

Unicode 是字体在网页端最原始的应用方式,特点是:

+
    +
  • 支持按字体的方式去动态调整图标大小,颜色等等。
  • +
  • 默认情况下不支持多色,直接添加多色图标会自动去色。
  • +
+
+

注意:新版 iconfont 支持两种方式引用多色图标:SVG symbol 引用方式和彩色字体图标模式。(使用彩色字体图标需要在「编辑项目」中开启「彩色」选项后并重新生成。)

+
+

Unicode 使用步骤如下:

+

第一步:拷贝项目下面生成的 @font-face

+
@font-face {
+  font-family: 'iconfont';
+  src: url('iconfont.eot?t=1703063316770'); /* IE9 */
+  src: url('iconfont.eot?t=1703063316770#iefix') format('embedded-opentype'), /* IE6-IE8 */
+       url('iconfont.woff2?t=1703063316770') format('woff2'),
+       url('iconfont.woff?t=1703063316770') format('woff'),
+       url('iconfont.ttf?t=1703063316770') format('truetype'),
+       url('iconfont.svg?t=1703063316770#iconfont') format('svg');
+}
+
+

第二步:定义使用 iconfont 的样式

+
.iconfont {
+  font-family: "iconfont" !important;
+  font-size: 16px;
+  font-style: normal;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+
+

第三步:挑选相应图标并获取字体编码,应用于页面

+
+<span class="iconfont">&#x33;</span>
+
+
+

"iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。

+
+
+
+
+
    + +
  • + +
    + file seal-line +
    +
    .el-icon-inspur-a-fileseal-line +
    +
  • + +
  • + +
    + file search-line +
    +
    .el-icon-inspur-a-filesearch-line +
    +
  • + +
  • + +
    + success-fill +
    +
    .el-icon-inspur-success-fill +
    +
  • + +
  • + +
    + v3-line +
    +
    .el-icon-inspur-v3-line +
    +
  • + +
  • + +
    + yingshe-line +
    +
    .el-icon-inspur-yingshe-line +
    +
  • + +
  • + +
    + mirror-line +
    +
    .el-icon-inspur-mirror-line +
    +
  • + +
  • + +
    + terminal-fill +
    +
    .el-icon-inspur-terminal-fill +
    +
  • + +
  • + +
    + terminal-line +
    +
    .el-icon-inspur-terminal-line +
    +
  • + +
  • + +
    + terminal-window-fill +
    +
    .el-icon-inspur-terminal-window-fill +
    +
  • + +
  • + +
    + terminal-window-line +
    +
    .el-icon-inspur-terminal-window-line +
    +
  • + +
  • + +
    + save-fill +
    +
    .el-icon-inspur-save-fill1 +
    +
  • + +
  • + +
    + text editor save-line +
    +
    .el-icon-inspur-a-texteditorsave-line +
    +
  • + +
  • + +
    + user-shared-fill +
    +
    .el-icon-inspur-user-shared-fill +
    +
  • + +
  • + +
    + user-shared-line +
    +
    .el-icon-inspur-user-shared-line +
    +
  • + +
  • + +
    + dynamic-line +
    +
    .el-icon-inspur-dynamic-line +
    +
  • + +
  • + +
    + jbod-line +
    +
    .el-icon-inspur-jbod-line +
    +
  • + +
  • + +
    + statistical view pie chart 2-line +
    +
    .el-icon-inspur-a-statisticalviewpiechart2-line +
    +
  • + +
  • + +
    + slideshow-fill +
    +
    .el-icon-inspur-slideshow-fill +
    +
  • + +
  • + +
    + slideshow-line +
    +
    .el-icon-inspur-slideshow-line +
    +
  • + +
  • + +
    + caogao-line +
    +
    .el-icon-inspur-caogao-line +
    +
  • + +
  • + +
    + caogao-fill +
    +
    .el-icon-inspur-caogao-fill +
    +
  • + +
  • + +
    + date-fill +
    +
    .el-icon-inspur-date-fill +
    +
  • + +
  • + +
    + date-line +
    +
    .el-icon-inspur-date-line +
    +
  • + +
  • + +
    + weixin-line +
    +
    .el-icon-inspur-weixin-line +
    +
  • + +
  • + +
    + weixin-fill +
    +
    .el-icon-inspur-weixin-fill +
    +
  • + +
  • + +
    + bookmark-3-fill +
    +
    .el-icon-inspur-bookmark-3-fill +
    +
  • + +
  • + +
    + bookmark-3-line +
    +
    .el-icon-inspur-bookmark-3-line +
    +
  • + +
  • + +
    + user-6-fill +
    +
    .el-icon-inspur-user-6-fill +
    +
  • + +
  • + +
    + user-fill +
    +
    .el-icon-inspur-user-fill +
    +
  • + +
  • + +
    + user-6-line +
    +
    .el-icon-inspur-user-6-line +
    +
  • + +
  • + +
    + user-line +
    +
    .el-icon-inspur-user-line +
    +
  • + +
  • + +
    + eye-off-line +
    +
    .el-icon-inspur-eye-off-line +
    +
  • + +
  • + +
    + message-2-line +
    +
    .el-icon-inspur-message-2-line +
    +
  • + +
  • + +
    + 钉钉 +
    +
    .el-icon-inspur-dingding +
    +
  • + +
  • + +
    + 电池 +
    +
    .el-icon-inspur-dianchi +
    +
  • + +
  • + +
    + snowy-line +
    +
    .el-icon-inspur-snowy-line +
    +
  • + +
  • + +
    + snowy-fill +
    +
    .el-icon-inspur-snowy-fill +
    +
  • + +
  • + +
    + fire-fill +
    +
    .el-icon-inspur-fire-fill +
    +
  • + +
  • + +
    + fire-line +
    +
    .el-icon-inspur-fire-line +
    +
  • + +
  • + +
    + amount 5-line +
    +
    .el-icon-inspur-a-amount5-line +
    +
  • + +
  • + +
    + vidicon-fill +
    +
    .el-icon-inspur-vidicon-fill +
    +
  • + +
  • + +
    + vidicon-line +
    +
    .el-icon-inspur-vidicon-line +
    +
  • + +
  • + +
    + money-cny-box-line +
    +
    .el-icon-inspur-money-cny-box-line +
    +
  • + +
  • + +
    + money-cny-box-fill +
    +
    .el-icon-inspur-money-cny-box-fill +
    +
  • + +
  • + +
    + celsius-fill +
    +
    .el-icon-inspur-celsius-fill +
    +
  • + +
  • + +
    + temp-hot-line +
    +
    .el-icon-inspur-temp-hot-line +
    +
  • + +
  • + +
    + temp-hot-fill +
    +
    .el-icon-inspur-temp-hot-fill +
    +
  • + +
  • + +
    + structure 2-line +
    +
    .el-icon-inspur-a-structure2-line +
    +
  • + +
  • + +
    + structure 2-fill +
    +
    .el-icon-inspur-a-structure2-fill +
    +
  • + +
  • + +
    + edit 2-line +
    +
    .el-icon-inspur-a-edit2-line +
    +
  • + +
  • + +
    + relation 7-fill +
    +
    .el-icon-inspur-a-relation7-fill +
    +
  • + +
  • + +
    + relation 7-line +
    +
    .el-icon-inspur-a-relation7-line +
    +
  • + +
  • + +
    + hand bin-fill +
    +
    .el-icon-inspur-a-handbin-fill +
    +
  • + +
  • + +
    + hand bin-line +
    +
    .el-icon-inspur-a-handbin-line +
    +
  • + +
  • + +
    + goal analysis-line +
    +
    .el-icon-inspur-a-goalanalysis-line +
    +
  • + +
  • + +
    + web page code-line +
    +
    .el-icon-inspur-a-webpagecode-line +
    +
  • + +
  • + +
    + web page code-fill +
    +
    .el-icon-inspur-a-webpagecode-fill +
    +
  • + +
  • + +
    + cut-fill +
    +
    .el-icon-inspur-cut-fill +
    +
  • + +
  • + +
    + cut-line +
    +
    .el-icon-inspur-cut-line +
    +
  • + +
  • + +
    + api-fill +
    +
    .el-icon-inspur-api-fill +
    +
  • + +
  • + +
    + api-line +
    +
    .el-icon-inspur-api-line +
    +
  • + +
  • + +
    + terminal-box-line +
    +
    .el-icon-inspur-terminal-box-line +
    +
  • + +
  • + +
    + terminal-box-fill +
    +
    .el-icon-inspur-terminal-box-fill +
    +
  • + +
  • + +
    + lightbulb-flash-line +
    +
    .el-icon-inspur-lightbulb-flash-line +
    +
  • + +
  • + +
    + documentation download-fill +
    +
    .el-icon-inspur-a-documentationdownload-fill +
    +
  • + +
  • + +
    + documentation download-line +
    +
    .el-icon-inspur-a-documentationdownload-line +
    +
  • + +
  • + +
    + physical-disk-line +
    +
    .el-icon-inspur-physical-disk-line +
    +
  • + +
  • + +
    + raid-line +
    +
    .el-icon-inspur-raid-line +
    +
  • + +
  • + +
    + logical-disk-line +
    +
    .el-icon-inspur-logical-disk-line +
    +
  • + +
  • + +
    + emt-box-line +
    +
    .el-icon-inspur-emt-box-line +
    +
  • + +
  • + +
    + full-box-line +
    +
    .el-icon-inspur-full-box-line +
    +
  • + +
  • + +
    + half-box-line +
    +
    .el-icon-inspur-half-box-line +
    +
  • + +
  • + +
    + picture-in-picture-fill +
    +
    .el-icon-inspur-picture-in-picture-fill +
    +
  • + +
  • + +
    + picture-in-picture-line +
    +
    .el-icon-inspur-picture-in-picture-line +
    +
  • + +
  • + +
    + structure 1-fill +
    +
    .el-icon-inspur-a-structure1-fill +
    +
  • + +
  • + +
    + structure 1-line +
    +
    .el-icon-inspur-a-structure1-line +
    +
  • + +
  • + +
    + history-line +
    +
    .el-icon-inspur-history-line +
    +
  • + +
  • + +
    + history-fill +
    +
    .el-icon-inspur-history-fill +
    +
  • + +
  • + +
    + guaqi-line +
    +
    .el-icon-inspur-guaqi-line +
    +
  • + +
  • + +
    + daiban-fill +
    +
    .el-icon-inspur-daiban-fill +
    +
  • + +
  • + +
    + yiban-line +
    +
    .el-icon-inspur-yiban-line +
    +
  • + +
  • + +
    + daiban-line +
    +
    .el-icon-inspur-daiban-line +
    +
  • + +
  • + +
    + yiban-fill +
    +
    .el-icon-inspur-yiban-fill +
    +
  • + +
  • + +
    + guaqi-fill +
    +
    .el-icon-inspur-guaqi-fill +
    +
  • + +
  • + +
    + file-add-fill +
    +
    .el-icon-inspur-file-add-fill +
    +
  • + +
  • + +
    + file-add-line +
    +
    .el-icon-inspur-file-add-line +
    +
  • + +
  • + +
    + chuku-line +
    +
    .el-icon-inspur-chuku-line +
    +
  • + +
  • + +
    + zaiku-line +
    +
    .el-icon-inspur-zaiku-line +
    +
  • + +
  • + +
    + inbox-archive-line +
    +
    .el-icon-inspur-inbox-archive-line +
    +
  • + +
  • + +
    + inbox-archive-fill +
    +
    .el-icon-inspur-inbox-archive-fill +
    +
  • + +
  • + +
    + inbox-unarchive-fill +
    +
    .el-icon-inspur-inbox-unarchive-fill +
    +
  • + +
  • + +
    + inbox-unarchive-line +
    +
    .el-icon-inspur-inbox-unarchive-line +
    +
  • + +
  • + +
    + briefcase-2-fill +
    +
    .el-icon-inspur-briefcase-2-fill +
    +
  • + +
  • + +
    + briefcase-2-line +
    +
    .el-icon-inspur-briefcase-2-line +
    +
  • + +
  • + +
    + share-box-line +
    +
    .el-icon-inspur-share-box-line +
    +
  • + +
  • + +
    + share-box-fill +
    +
    .el-icon-inspur-share-box-fill +
    +
  • + +
  • + +
    + file-download-fill +
    +
    .el-icon-inspur-file-download-fill +
    +
  • + +
  • + +
    + file-download-line +
    +
    .el-icon-inspur-file-download-line +
    +
  • + +
  • + +
    + more-2-fill +
    +
    .el-icon-inspur-more-2-fill +
    +
  • + +
  • + +
    + more-2-line +
    +
    .el-icon-inspur-more-2-line +
    +
  • + +
  • + +
    + more-fill +
    +
    .el-icon-inspur-more-fill +
    +
  • + +
  • + +
    + more-line +
    +
    .el-icon-inspur-more-line +
    +
  • + +
  • + +
    + filter-line +
    +
    .el-icon-inspur-filter-line +
    +
  • + +
  • + +
    + filter-fill +
    +
    .el-icon-inspur-filter-fill +
    +
  • + +
  • + +
    + filter-off-fill +
    +
    .el-icon-inspur-filter-off-fill +
    +
  • + +
  • + +
    + filter-off-line +
    +
    .el-icon-inspur-filter-off-line +
    +
  • + +
  • + +
    + left small line-line +
    +
    .el-icon-inspur-a-leftsmallline-line +
    +
  • + +
  • + +
    + right small line-line +
    +
    .el-icon-inspur-a-rightsmallline-line +
    +
  • + +
  • + +
    + up small-line +
    +
    .el-icon-inspur-a-upsmall-line +
    +
  • + +
  • + +
    + under small-line +
    +
    .el-icon-inspur-a-undersmall-line +
    +
  • + +
  • + +
    + mesh 5-line +
    +
    .el-icon-inspur-a-mesh5-line +
    +
  • + +
  • + +
    + list-check +
    +
    .el-icon-inspur-list-check +
    +
  • + +
  • + +
    + list-unordered +
    +
    .el-icon-inspur-list-unordered +
    +
  • + +
  • + +
    + file-copy-fill +
    +
    .el-icon-inspur-file-copy-fill +
    +
  • + +
  • + +
    + file-copy-line +
    +
    .el-icon-inspur-file-copy-line +
    +
  • + +
  • + +
    + share-forward-box-fill +
    +
    .el-icon-inspur-share-forward-box-fill +
    +
  • + +
  • + +
    + share-forward-box-line +
    +
    .el-icon-inspur-share-forward-box-line +
    +
  • + +
  • + +
    + contacts-fill +
    +
    .el-icon-inspur-contacts-fill +
    +
  • + +
  • + +
    + contacts-line +
    +
    .el-icon-inspur-contacts-line +
    +
  • + +
  • + +
    + lock-2-fill +
    +
    .el-icon-inspur-lock-2-fill +
    +
  • + +
  • + +
    + lock-2-line +
    +
    .el-icon-inspur-lock-2-line +
    +
  • + +
  • + +
    + lock-fill +
    +
    .el-icon-inspur-lock-fill +
    +
  • + +
  • + +
    + lock-line +
    +
    .el-icon-inspur-lock-line +
    +
  • + +
  • + +
    + lock-unlock-line +
    +
    .el-icon-inspur-lock-unlock-line +
    +
  • + +
  • + +
    + lock-unlock-fill +
    +
    .el-icon-inspur-lock-unlock-fill +
    +
  • + +
  • + +
    + box-open-fill +
    +
    .el-icon-inspur-box-open-fill +
    +
  • + +
  • + +
    + null case-fill +
    +
    .el-icon-inspur-a-nullcase-fill +
    +
  • + +
  • + +
    + null case-line +
    +
    .el-icon-inspur-a-nullcase-line +
    +
  • + +
  • + +
    + passport-fill +
    +
    .el-icon-inspur-passport-fill +
    +
  • + +
  • + +
    + passport-line +
    +
    .el-icon-inspur-passport-line +
    +
  • + +
  • + +
    + bill-fill +
    +
    .el-icon-inspur-bill-fill +
    +
  • + +
  • + +
    + bill-line +
    +
    .el-icon-inspur-bill-line +
    +
  • + +
  • + +
    + file-lock-fill +
    +
    .el-icon-inspur-file-lock-fill +
    +
  • + +
  • + +
    + file-lock-line +
    +
    .el-icon-inspur-file-lock-line +
    +
  • + +
  • + +
    + lower right page-line +
    +
    .el-icon-inspur-a-lowerrightpage-line +
    +
  • + +
  • + +
    + frame-fill +
    +
    .el-icon-inspur-frame-fill +
    +
  • + +
  • + +
    + frame-line +
    +
    .el-icon-inspur-frame-line +
    +
  • + +
  • + +
    + list choose-line +
    +
    .el-icon-inspur-a-listchoose-line +
    +
  • + +
  • + +
    + list view-fill +
    +
    .el-icon-inspur-a-listview-fill +
    +
  • + +
  • + +
    + list view-line +
    +
    .el-icon-inspur-a-listview-line +
    +
  • + +
  • + +
    + lower right page-fill +
    +
    .el-icon-inspur-a-lowerrightpage-fill +
    +
  • + +
  • + +
    + route 2-fill +
    +
    .el-icon-inspur-a-route2-fill +
    +
  • + +
  • + +
    + route 2-line +
    +
    .el-icon-inspur-a-route2-line +
    +
  • + +
  • + +
    + cube-fill +
    +
    .el-icon-inspur-cube-fill +
    +
  • + +
  • + +
    + cube-line +
    +
    .el-icon-inspur-cube-line +
    +
  • + +
  • + +
    + page level-fill +
    +
    .el-icon-inspur-a-pagelevel-fill +
    +
  • + +
  • + +
    + page level-line +
    +
    .el-icon-inspur-a-pagelevel-line +
    +
  • + +
  • + +
    + computer movement-line +
    +
    .el-icon-inspur-a-computermovement-line +
    +
  • + +
  • + +
    + case-line +
    +
    .el-icon-inspur-case-line +
    +
  • + +
  • + +
    + case-fill +
    +
    .el-icon-inspur-case-fill +
    +
  • + +
  • + +
    + constitute-fill +
    +
    .el-icon-inspur-constitute-fill +
    +
  • + +
  • + +
    + constitute-line +
    +
    .el-icon-inspur-constitute-line +
    +
  • + +
  • + +
    + file-settings-fill +
    +
    .el-icon-inspur-file-settings-fill +
    +
  • + +
  • + +
    + file-settings-line +
    +
    .el-icon-inspur-file-settings-line +
    +
  • + +
  • + +
    + map-pin-range-fill +
    +
    .el-icon-inspur-map-pin-range-fill +
    +
  • + +
  • + +
    + map-pin-range-line +
    +
    .el-icon-inspur-map-pin-range-line +
    +
  • + +
  • + +
    + stack-line +
    +
    .el-icon-inspur-stack-line +
    +
  • + +
  • + +
    + stack-fill +
    +
    .el-icon-inspur-stack-fill +
    +
  • + +
  • + +
    + node-tree +
    +
    .el-icon-inspur-node-tree +
    +
  • + +
  • + +
    + mind-map +
    +
    .el-icon-inspur-mind-map +
    +
  • + +
  • + +
    + list-check-2 +
    +
    .el-icon-inspur-list-check-2 +
    +
  • + +
  • + +
    + box-open-line +
    +
    .el-icon-inspur-box-open-line +
    +
  • + +
  • + +
    + inbox-line +
    +
    .el-icon-inspur-inbox-line +
    +
  • + +
  • + +
    + inbox-fill +
    +
    .el-icon-inspur-inbox-fill +
    +
  • + +
  • + +
    + dots-sm +
    +
    .el-icon-inspur-dots-sm +
    +
  • + +
  • + +
    + applet-line +
    +
    .el-icon-inspur-applet-line +
    +
  • + +
  • + +
    + mail-add-line +
    +
    .el-icon-inspur-mail-add-line +
    +
  • + +
  • + +
    + mail-check-fill +
    +
    .el-icon-inspur-mail-check-fill +
    +
  • + +
  • + +
    + mail-check-line +
    +
    .el-icon-inspur-mail-check-line +
    +
  • + +
  • + +
    + mail-add-fill +
    +
    .el-icon-inspur-mail-add-fill +
    +
  • + +
  • + +
    + mail-close-line +
    +
    .el-icon-inspur-mail-close-line +
    +
  • + +
  • + +
    + mail-download-line +
    +
    .el-icon-inspur-mail-download-line +
    +
  • + +
  • + +
    + mail-close-fill +
    +
    .el-icon-inspur-mail-close-fill +
    +
  • + +
  • + +
    + mail-forbid-fill +
    +
    .el-icon-inspur-mail-forbid-fill +
    +
  • + +
  • + +
    + mail-forbid-line +
    +
    .el-icon-inspur-mail-forbid-line +
    +
  • + +
  • + +
    + mail-lock-fill +
    +
    .el-icon-inspur-mail-lock-fill +
    +
  • + +
  • + +
    + mail-download-fill +
    +
    .el-icon-inspur-mail-download-fill +
    +
  • + +
  • + +
    + mail-lock-line +
    +
    .el-icon-inspur-mail-lock-line +
    +
  • + +
  • + +
    + mail-open-fill +
    +
    .el-icon-inspur-mail-open-fill +
    +
  • + +
  • + +
    + mail-open-line +
    +
    .el-icon-inspur-mail-open-line +
    +
  • + +
  • + +
    + mail-send-line +
    +
    .el-icon-inspur-mail-send-line +
    +
  • + +
  • + +
    + mail-send-fill +
    +
    .el-icon-inspur-mail-send-fill +
    +
  • + +
  • + +
    + mail-settings-line +
    +
    .el-icon-inspur-mail-settings-line +
    +
  • + +
  • + +
    + mail-star-line +
    +
    .el-icon-inspur-mail-star-line +
    +
  • + +
  • + +
    + mail-star-fill +
    +
    .el-icon-inspur-mail-star-fill +
    +
  • + +
  • + +
    + mail-unread-line +
    +
    .el-icon-inspur-mail-unread-line +
    +
  • + +
  • + +
    + mail-unread-fill +
    +
    .el-icon-inspur-mail-unread-fill +
    +
  • + +
  • + +
    + hand-heart-fill +
    +
    .el-icon-inspur-hand-heart-fill +
    +
  • + +
  • + +
    + outlet-2-line +
    +
    .el-icon-inspur-outlet-2-line +
    +
  • + +
  • + +
    + hand-heart-line +
    +
    .el-icon-inspur-hand-heart-line +
    +
  • + +
  • + +
    + outlet-2-fill +
    +
    .el-icon-inspur-outlet-2-fill +
    +
  • + +
  • + +
    + user-3-line +
    +
    .el-icon-inspur-user-3-line +
    +
  • + +
  • + +
    + user-3-fill +
    +
    .el-icon-inspur-user-3-fill +
    +
  • + +
  • + +
    + freight-line +
    +
    .el-icon-inspur-freight-line +
    +
  • + +
  • + +
    + task-line +
    +
    .el-icon-inspur-task-line +
    +
  • + +
  • + +
    + task-fill +
    +
    .el-icon-inspur-task-fill +
    +
  • + +
  • + +
    + send-plane-fill +
    +
    .el-icon-inspur-send-plane-fill +
    +
  • + +
  • + +
    + send-plane-line +
    +
    .el-icon-inspur-send-plane-line +
    +
  • + +
  • + +
    + jisuanqi +
    +
    .el-icon-inspur-jisuanqi +
    +
  • + +
  • + +
    + wangluo1 +
    +
    .el-icon-inspur-wangluo1 +
    +
  • + +
  • + +
    + xunijiKVM +
    +
    .el-icon-inspur-xunijiKVM +
    +
  • + +
  • + +
    + cunchu +
    +
    .el-icon-inspur-cunchu +
    +
  • + +
  • + +
    + bios +
    +
    .el-icon-inspur-bios +
    +
  • + +
  • + +
    + upgrade-pim +
    +
    .el-icon-inspur-upgrade-pim +
    +
  • + +
  • + +
    + box calculator-line +
    +
    .el-icon-inspur-a-boxcalculator-line +
    +
  • + +
  • + +
    + cloud-fill +
    +
    .el-icon-inspur-cloud-fill +
    +
  • + +
  • + +
    + cloud-line +
    +
    .el-icon-inspur-cloud-line +
    +
  • + +
  • + +
    + cloud-off-fill +
    +
    .el-icon-inspur-cloud-off-fill +
    +
  • + +
  • + +
    + cloud-off-line +
    +
    .el-icon-inspur-cloud-off-line +
    +
  • + +
  • + +
    + change +
    +
    .el-icon-inspur-change +
    +
  • + +
  • + +
    + draft-fill +
    +
    .el-icon-inspur-draft-fill +
    +
  • + +
  • + +
    + draft-line +
    +
    .el-icon-inspur-draft-line +
    +
  • + +
  • + +
    + zhishiku +
    +
    .el-icon-inspur-zhishiku +
    +
  • + +
  • + +
    + fuwu +
    +
    .el-icon-inspur-fuwu +
    +
  • + +
  • + +
    + yuzhi +
    +
    .el-icon-inspur-yuzhi +
    +
  • + +
  • + +
    + bujian +
    +
    .el-icon-inspur-bujian +
    +
  • + +
  • + +
    + shengji +
    +
    .el-icon-inspur-shengji +
    +
  • + +
  • + +
    + tree-Load-balancing +
    +
    .el-icon-inspur-tree-Load-balancing +
    +
  • + +
  • + +
    + tree-change +
    +
    .el-icon-inspur-tree-change +
    +
  • + +
  • + +
    + tree-wall +
    +
    .el-icon-inspur-tree-wall +
    +
  • + +
  • + +
    + tree-waf +
    +
    .el-icon-inspur-tree-waf +
    +
  • + +
  • + +
    + tree-DDoS +
    +
    .el-icon-inspur-tree-DDoS +
    +
  • + +
  • + +
    + tree-server +
    +
    .el-icon-inspur-tree-server +
    +
  • + +
  • + +
    + tree-router +
    +
    .el-icon-inspur-tree-router +
    +
  • + +
  • + +
    + tree-store +
    +
    .el-icon-inspur-tree-store +
    +
  • + +
  • + +
    + tree-DDoS +
    +
    .el-icon-inspur-tree-DDoS1 +
    +
  • + +
  • + +
    + survey-add-line +
    +
    .el-icon-inspur-survey-add-line +
    +
  • + +
  • + +
    + file-mark-fill +
    +
    .el-icon-inspur-file-mark-fill +
    +
  • + +
  • + +
    + file-mark-line +
    +
    .el-icon-inspur-file-mark-line +
    +
  • + +
  • + +
    + honour-line +
    +
    .el-icon-inspur-honour-line +
    +
  • + +
  • + +
    + honour-fill +
    +
    .el-icon-inspur-honour-fill +
    +
  • + +
  • + +
    + customer-service-2-line +
    +
    .el-icon-inspur-customer-service-2-line +
    +
  • + +
  • + +
    + customer-service-fill +
    +
    .el-icon-inspur-customer-service-fill +
    +
  • + +
  • + +
    + customer-service-line +
    +
    .el-icon-inspur-customer-service-line +
    +
  • + +
  • + +
    + customer-service-2-fill +
    +
    .el-icon-inspur-customer-service-2-fill +
    +
  • + +
  • + +
    + emotion-happy-fill +
    +
    .el-icon-inspur-emotion-happy-fill +
    +
  • + +
  • + +
    + emotion-line +
    +
    .el-icon-inspur-emotion-line +
    +
  • + +
  • + +
    + emotion-fill +
    +
    .el-icon-inspur-emotion-fill +
    +
  • + +
  • + +
    + emotion-happy-line +
    +
    .el-icon-inspur-emotion-happy-line +
    +
  • + +
  • + +
    + upload-fill +
    +
    .el-icon-inspur-upload-fill1 +
    +
  • + +
  • + +
    + upload-line +
    +
    .el-icon-inspur-upload-line2 +
    +
  • + +
  • + +
    + hail-line +
    +
    .el-icon-inspur-hail-line +
    +
  • + +
  • + +
    + hail-fill +
    +
    .el-icon-inspur-hail-fill +
    +
  • + +
  • + +
    + pages-line +
    +
    .el-icon-inspur-pages-line +
    +
  • + +
  • + +
    + pages-fill +
    +
    .el-icon-inspur-pages-fill +
    +
  • + +
  • + +
    + survey-fill +
    +
    .el-icon-inspur-survey-fill +
    +
  • + +
  • + +
    + survey-line +
    +
    .el-icon-inspur-survey-line +
    +
  • + +
  • + +
    + todo-fill +
    +
    .el-icon-inspur-todo-fill +
    +
  • + +
  • + +
    + todo-line +
    +
    .el-icon-inspur-todo-line +
    +
  • + +
  • + +
    + exchange-funds-fill +
    +
    .el-icon-inspur-exchange-funds-fill +
    +
  • + +
  • + +
    + funds-box-fill +
    +
    .el-icon-inspur-funds-box-fill +
    +
  • + +
  • + +
    + funds-fill +
    +
    .el-icon-inspur-funds-fill +
    +
  • + +
  • + +
    + funds-line +
    +
    .el-icon-inspur-funds-line +
    +
  • + +
  • + +
    + funds-box-line +
    +
    .el-icon-inspur-funds-box-line +
    +
  • + +
  • + +
    + leaf-line +
    +
    .el-icon-inspur-leaf-line +
    +
  • + +
  • + +
    + leaf-fill +
    +
    .el-icon-inspur-leaf-fill +
    +
  • + +
  • + +
    + lightbulb-line +
    +
    .el-icon-inspur-lightbulb-line +
    +
  • + +
  • + +
    + lightbulb-flash-fill +
    +
    .el-icon-inspur-lightbulb-flash-fill +
    +
  • + +
  • + +
    + plant-fill +
    +
    .el-icon-inspur-plant-fill +
    +
  • + +
  • + +
    + plant-line +
    +
    .el-icon-inspur-plant-line +
    +
  • + +
  • + +
    + voice-recognition-fill +
    +
    .el-icon-inspur-voice-recognition-fill +
    +
  • + +
  • + +
    + voice-recognition-line +
    +
    .el-icon-inspur-voice-recognition-line +
    +
  • + +
  • + +
    + function-line +
    +
    .el-icon-inspur-function-line +
    +
  • + +
  • + +
    + team-fill +
    +
    .el-icon-inspur-team-fill +
    +
  • + +
  • + +
    + team-line +
    +
    .el-icon-inspur-team-line +
    +
  • + +
  • + +
    + file-shield-fill +
    +
    .el-icon-inspur-file-shield-fill +
    +
  • + +
  • + +
    + file-shield-2-line +
    +
    .el-icon-inspur-file-shield-2-line +
    +
  • + +
  • + +
    + question +
    +
    .el-icon-inspur-question +
    +
  • + +
  • + +
    + 显卡类型 +
    +
    .el-icon-inspur-xiankaleixing +
    +
  • + +
  • + +
    + send message-line +
    +
    .el-icon-inspur-a-sendmessage-line +
    +
  • + +
  • + +
    + send message-fill +
    +
    .el-icon-inspur-a-sendmessage-fill +
    +
  • + +
  • + +
    + 内存 +
    +
    .el-icon-inspur-neicun +
    +
  • + +
  • + +
    + database-2-line +
    +
    .el-icon-inspur-database-2-line +
    +
  • + +
  • + +
    + database-2-fill +
    +
    .el-icon-inspur-database-2-fill +
    +
  • + +
  • + +
    + 监控管理 +
    +
    .el-icon-inspur-jiankongguanli +
    +
  • + +
  • + +
    + computer end-line +
    +
    .el-icon-inspur-a-computerend-line +
    +
  • + +
  • + +
    + computer more-line +
    +
    .el-icon-inspur-a-computermore-line +
    +
  • + +
  • + +
    + computer public-line +
    +
    .el-icon-inspur-a-computerpublic-line +
    +
  • + +
  • + +
    + computer-fill +
    +
    .el-icon-inspur-computer-fill +
    +
  • + +
  • + +
    + computer movement-fill +
    +
    .el-icon-inspur-a-computermovement-fill +
    +
  • + +
  • + +
    + computer more-fill +
    +
    .el-icon-inspur-a-computermore-fill +
    +
  • + +
  • + +
    + computer warning-line +
    +
    .el-icon-inspur-a-computerwarning-line +
    +
  • + +
  • + +
    + computer trend-fill +
    +
    .el-icon-inspur-a-computertrend-fill +
    +
  • + +
  • + +
    + computer set-fill +
    +
    .el-icon-inspur-a-computerset-fill +
    +
  • + +
  • + +
    + compose-line +
    +
    .el-icon-inspur-compose-line +
    +
  • + +
  • + +
    + compose-fill +
    +
    .el-icon-inspur-compose-fill +
    +
  • + +
  • + +
    + computer end-fill +
    +
    .el-icon-inspur-a-computerend-fill +
    +
  • + +
  • + +
    + computer error-line +
    +
    .el-icon-inspur-a-computererror-line +
    +
  • + +
  • + +
    + computer volatility-fill +
    +
    .el-icon-inspur-a-computervolatility-fill +
    +
  • + +
  • + +
    + computer error-fill +
    +
    .el-icon-inspur-a-computererror-fill +
    +
  • + +
  • + +
    + computer set-line +
    +
    .el-icon-inspur-a-computerset-line +
    +
  • + +
  • + +
    + computer trend-line +
    +
    .el-icon-inspur-a-computertrend-line +
    +
  • + +
  • + +
    + computer volatility-line +
    +
    .el-icon-inspur-a-computervolatility-line +
    +
  • + +
  • + +
    + computer-line +
    +
    .el-icon-inspur-computer-line +
    +
  • + +
  • + +
    + computer public-fill +
    +
    .el-icon-inspur-a-computerpublic-fill +
    +
  • + +
  • + +
    + double right line-line +
    +
    .el-icon-inspur-a-doublerightline-line +
    +
  • + +
  • + +
    + double left line-line +
    +
    .el-icon-inspur-a-doubleleftline-line +
    +
  • + +
  • + +
    + drag-move-line +
    +
    .el-icon-inspur-drag-move-line +
    +
  • + +
  • + +
    + flashlight-fill +
    +
    .el-icon-inspur-flashlight-fill +
    +
  • + +
  • + +
    + flashlight-line +
    +
    .el-icon-inspur-flashlight-line +
    +
  • + +
  • + +
    + adhibition-line +
    +
    .el-icon-inspur-adhibition-line +
    +
  • + +
  • + +
    + net +
    +
    .el-icon-inspur-net +
    +
  • + +
  • + +
    + timer shaft-fill +
    +
    .el-icon-inspur-a-timershaft-fill +
    +
  • + +
  • + +
    + timer shaft-line +
    +
    .el-icon-inspur-a-timershaft-line +
    +
  • + +
  • + +
    + subtract-fill +
    +
    .el-icon-inspur-subtract-fill +
    +
  • + +
  • + +
    + subtract-line +
    +
    .el-icon-inspur-subtract-line +
    +
  • + +
  • + +
    + menu-line +
    +
    .el-icon-inspur-menu-line +
    +
  • + +
  • + +
    + download-line +
    +
    .el-icon-inspur-download1-line +
    +
  • + +
  • + +
    + upload-line +
    +
    .el-icon-inspur-upload1-line +
    +
  • + +
  • + +
    + close-line +
    +
    .el-icon-inspur-close-line +
    +
  • + +
  • + +
    + close-fill +
    +
    .el-icon-inspur-close-fill +
    +
  • + +
  • + +
    + -out +
    +
    .el-icon-inspur--out +
    +
  • + +
  • + +
    + grid-fill +
    +
    .el-icon-inspur-grid-fill +
    +
  • + +
  • + +
    + unhealth-fill +
    +
    .el-icon-inspur-unhealth-fill +
    +
  • + +
  • + +
    + health +
    +
    .el-icon-inspur-health +
    +
  • + +
  • + +
    + unhealth +
    +
    .el-icon-inspur-unhealth +
    +
  • + +
  • + +
    + health-fill +
    +
    .el-icon-inspur-health-fill +
    +
  • + +
  • + +
    + article-fill +
    +
    .el-icon-inspur-article-fill +
    +
  • + +
  • + +
    + hotel-line +
    +
    .el-icon-inspur-hotel-line +
    +
  • + +
  • + +
    + hotel-fill +
    +
    .el-icon-inspur-hotel-fill +
    +
  • + +
  • + +
    + building-fill +
    +
    .el-icon-inspur-building-fill1 +
    +
  • + +
  • + +
    + building-line +
    +
    .el-icon-inspur-building-line +
    +
  • + +
  • + +
    + danban +
    +
    .el-icon-inspur-danban +
    +
  • + +
  • + +
    + server-circle +
    +
    .el-icon-inspur-server-circle1 +
    +
  • + +
  • + +
    + port +
    +
    .el-icon-inspur-port +
    +
  • + +
  • + +
    + waf +
    +
    .el-icon-inspur-waf +
    +
  • + +
  • + +
    + ddos +
    +
    .el-icon-inspur-ddos +
    +
  • + +
  • + +
    + control-circle +
    +
    .el-icon-inspur-control-circle1 +
    +
  • + +
  • + +
    + 23d +
    +
    .el-icon-inspur-d +
    +
  • + +
  • + +
    + brush-3-fill +
    +
    .el-icon-inspur-brush-3-fill +
    +
  • + +
  • + +
    + brush-3-line +
    +
    .el-icon-inspur-brush-3-line +
    +
  • + +
  • + +
    + water-flash-fill +
    +
    .el-icon-inspur-water-flash-fill +
    +
  • + +
  • + +
    + water-flash-line +
    +
    .el-icon-inspur-water-flash-line +
    +
  • + +
  • + +
    + coupon-4-circle +
    +
    .el-icon-inspur-coupon-4-circle +
    +
  • + +
  • + +
    + lun-circle +
    +
    .el-icon-inspur-lun-circle +
    +
  • + +
  • + +
    + book-2-circle +
    +
    .el-icon-inspur-book-2-circle +
    +
  • + +
  • + +
    + iscsi-circle +
    +
    .el-icon-inspur-iscsi-circle +
    +
  • + +
  • + +
    + fan-circle +
    +
    .el-icon-inspur-fan-circle +
    +
  • + +
  • + +
    + store-circle +
    +
    .el-icon-inspur-store-circle1 +
    +
  • + +
  • + +
    + book-2-fill +
    +
    .el-icon-inspur-book-2-fill +
    +
  • + +
  • + +
    + book-2-line +
    +
    .el-icon-inspur-book-2-line +
    +
  • + +
  • + +
    + archive-drawer-fill +
    +
    .el-icon-inspur-archive-drawer-fill +
    +
  • + +
  • + +
    + archive-drawer-line +
    +
    .el-icon-inspur-archive-drawer-line +
    +
  • + +
  • + +
    + control +
    +
    .el-icon-inspur-control +
    +
  • + +
  • + +
    + iscsi +
    +
    .el-icon-inspur-iscsi +
    +
  • + +
  • + +
    + lun +
    +
    .el-icon-inspur-lun +
    +
  • + +
  • + +
    + store-fill +
    +
    .el-icon-inspur-store-fill +
    +
  • + +
  • + +
    + store +
    +
    .el-icon-inspur-store +
    +
  • + +
  • + +
    + shield-check-fill +
    +
    .el-icon-inspur-shield-check-fill +
    +
  • + +
  • + +
    + shield-check-line +
    +
    .el-icon-inspur-shield-check-line +
    +
  • + +
  • + +
    + shield-cross-fill +
    +
    .el-icon-inspur-shield-cross-fill +
    +
  • + +
  • + +
    + shield-cross-line +
    +
    .el-icon-inspur-shield-cross-line +
    +
  • + +
  • + +
    + file-list-2-fill +
    +
    .el-icon-inspur-file-list-2-fill +
    +
  • + +
  • + +
    + file-list-3-fill +
    +
    .el-icon-inspur-file-list-3-fill +
    +
  • + +
  • + +
    + file-list-3-line +
    +
    .el-icon-inspur-file-list-3-line +
    +
  • + +
  • + +
    + file-list-2-line +
    +
    .el-icon-inspur-file-list-2-line +
    +
  • + +
  • + +
    + node-fill +
    +
    .el-icon-inspur-node-fill +
    +
  • + +
  • + +
    + node +
    +
    .el-icon-inspur-node +
    +
  • + +
  • + +
    + file-text-fill +
    +
    .el-icon-inspur-file-text-fill +
    +
  • + +
  • + +
    + file-text-line +
    +
    .el-icon-inspur-file-text-line +
    +
  • + +
  • + +
    + anticlockwise-2-line +
    +
    .el-icon-inspur-anticlockwise-2-line +
    +
  • + +
  • + +
    + anticlockwise-fill +
    +
    .el-icon-inspur-anticlockwise-fill +
    +
  • + +
  • + +
    + anticlockwise-2-fill +
    +
    .el-icon-inspur-anticlockwise-2-fill +
    +
  • + +
  • + +
    + anticlockwise-line +
    +
    .el-icon-inspur-anticlockwise-line +
    +
  • + +
  • + +
    + artboard-2-line +
    +
    .el-icon-inspur-artboard-2-line +
    +
  • + +
  • + +
    + artboard-2-fill +
    +
    .el-icon-inspur-artboard-2-fill +
    +
  • + +
  • + +
    + clockwise-2-fill +
    +
    .el-icon-inspur-clockwise-2-fill +
    +
  • + +
  • + +
    + clockwise-line +
    +
    .el-icon-inspur-clockwise-line +
    +
  • + +
  • + +
    + contacts-book-2-fill +
    +
    .el-icon-inspur-contacts-book-2-fill +
    +
  • + +
  • + +
    + contacts-book-2-line +
    +
    .el-icon-inspur-contacts-book-2-line +
    +
  • + +
  • + +
    + contacts-book-fill +
    +
    .el-icon-inspur-contacts-book-fill +
    +
  • + +
  • + +
    + contacts-book-line +
    +
    .el-icon-inspur-contacts-book-line +
    +
  • + +
  • + +
    + mini-program-line +
    +
    .el-icon-inspur-mini-program-line +
    +
  • + +
  • + +
    + mini-program-fill +
    +
    .el-icon-inspur-mini-program-fill +
    +
  • + +
  • + +
    + map-pin-line +
    +
    .el-icon-inspur-map-pin-line +
    +
  • + +
  • + +
    + map-pin-fill +
    +
    .el-icon-inspur-map-pin-fill +
    +
  • + +
  • + +
    + book-mark-line +
    +
    .el-icon-inspur-book-mark-line +
    +
  • + +
  • + +
    + file-chart-2-line +
    +
    .el-icon-inspur-file-chart-2-line +
    +
  • + +
  • + +
    + file-chart-2-fill +
    +
    .el-icon-inspur-file-chart-2-fill +
    +
  • + +
  • + +
    + laptop-set-fill +
    +
    .el-icon-inspur-laptop-set-fill +
    +
  • + +
  • + +
    + links-fill +
    +
    .el-icon-inspur-links-fill +
    +
  • + +
  • + +
    + links-line +
    +
    .el-icon-inspur-links-line +
    +
  • + +
  • + +
    + link-m +
    +
    .el-icon-inspur-link-m +
    +
  • + +
  • + +
    + link-unlink-m +
    +
    .el-icon-inspur-link-unlink-m +
    +
  • + +
  • + +
    + link-unlink +
    +
    .el-icon-inspur-link-unlink +
    +
  • + +
  • + +
    + link +
    +
    .el-icon-inspur-link +
    +
  • + +
  • + +
    + star-smile-fill +
    +
    .el-icon-inspur-star-smile-fill +
    +
  • + +
  • + +
    + star-smile-line +
    +
    .el-icon-inspur-star-smile-line +
    +
  • + +
  • + +
    + download-line +
    +
    .el-icon-inspur-download-line +
    +
  • + +
  • + +
    + download-fill +
    +
    .el-icon-inspur-download-fill +
    +
  • + +
  • + +
    + upload-line +
    +
    .el-icon-inspur-upload-line +
    +
  • + +
  • + +
    + upload-fill +
    +
    .el-icon-inspur-upload-fill +
    +
  • + +
  • + +
    + top-cn +
    +
    .el-icon-inspur-top-cn +
    +
  • + +
  • + +
    + top-en +
    +
    .el-icon-inspur-top-en +
    +
  • + +
  • + +
    + cpu-line-bg +
    +
    .el-icon-inspur-cpu-line-bg +
    +
  • + +
  • + +
    + plug-line-bg +
    +
    .el-icon-inspur-plug-line-bg +
    +
  • + +
  • + +
    + fan-line-bg +
    +
    .el-icon-inspur-fan-line-bg +
    +
  • + +
  • + +
    + save-line-bg +
    +
    .el-icon-inspur-save-line-bg +
    +
  • + +
  • + +
    + save-fill +
    +
    .el-icon-inspur-save-fill +
    +
  • + +
  • + +
    + save-line +
    +
    .el-icon-inspur-save-line +
    +
  • + +
  • + +
    + fan +
    +
    .el-icon-inspur-fan +
    +
  • + +
  • + +
    + cpu-fill +
    +
    .el-icon-inspur-cpu-fill +
    +
  • + +
  • + +
    + cpu-line +
    +
    .el-icon-inspur-cpu-line +
    +
  • + +
  • + +
    + details-rack +
    +
    .el-icon-inspur-details-rack +
    +
  • + +
  • + +
    + details-server +
    +
    .el-icon-inspur-details-server +
    +
  • + +
  • + +
    + details-firewall +
    +
    .el-icon-inspur-details-firewall +
    +
  • + +
  • + +
    + details-cutte +
    +
    .el-icon-inspur-details-cutte +
    +
  • + +
  • + +
    + details-store-fill +
    +
    .el-icon-inspur-details-store-fill +
    +
  • + +
  • + +
    + details-fram +
    +
    .el-icon-inspur-details-fram +
    +
  • + +
  • + +
    + details-safe +
    +
    .el-icon-inspur-details-safe +
    +
  • + +
  • + +
    + picture-in-picture-exit-fill +
    +
    .el-icon-inspur-picture-in-picture-exit-fill +
    +
  • + +
  • + +
    + picture-in-picture-exit-line +
    +
    .el-icon-inspur-picture-in-picture-exit-line +
    +
  • + +
  • + +
    + vidicon-2-fill +
    +
    .el-icon-inspur-vidicon-2-fill +
    +
  • + +
  • + +
    + vidicon-2-line +
    +
    .el-icon-inspur-vidicon-2-line +
    +
  • + +
  • + +
    + restart +
    +
    .el-icon-inspur-restart +
    +
  • + +
  • + +
    + switch off-line +
    +
    .el-icon-inspur-a-switchoff-line +
    +
  • + +
  • + +
    + switch on-line +
    +
    .el-icon-inspur-a-switchon-line +
    +
  • + +
  • + +
    + server-line +
    +
    .el-icon-inspur-server-line +
    +
  • + +
  • + +
    + server-fill +
    +
    .el-icon-inspur-server-fill1 +
    +
  • + +
  • + +
    + router-line +
    +
    .el-icon-inspur-router-line +
    +
  • + +
  • + +
    + router-fill +
    +
    .el-icon-inspur-router-fill +
    +
  • + +
  • + +
    + flow-chart +
    +
    .el-icon-inspur-flow-chart +
    +
  • + +
  • + +
    + organization-chart +
    +
    .el-icon-inspur-organization-chart +
    +
  • + +
  • + +
    + account-circle-fill +
    +
    .el-icon-inspur-account-circle-fill +
    +
  • + +
  • + +
    + account-circle-line +
    +
    .el-icon-inspur-account-circle-line +
    +
  • + +
  • + +
    + arrow-left-circle-fill +
    +
    .el-icon-inspur-arrow-left-circle-fill +
    +
  • + +
  • + +
    + arrow-left-circle-line +
    +
    .el-icon-inspur-arrow-left-circle-line +
    +
  • + +
  • + +
    + arrow-right-circle-fill +
    +
    .el-icon-inspur-arrow-right-circle-fill +
    +
  • + +
  • + +
    + arrow-right-circle-line +
    +
    .el-icon-inspur-arrow-right-circle-line +
    +
  • + +
  • + +
    + file-edit-line +
    +
    .el-icon-inspur-file-edit-line +
    +
  • + +
  • + +
    + file-edit-fill +
    +
    .el-icon-inspur-file-edit-fill +
    +
  • + +
  • + +
    + pie-chart-fill +
    +
    .el-icon-inspur-pie-chart-fill +
    +
  • + +
  • + +
    + pie-chart-line +
    +
    .el-icon-inspur-pie-chart-line +
    +
  • + +
  • + +
    + up-mirror-image +
    +
    .el-icon-inspur-up-mirror-image +
    +
  • + +
  • + +
    + up-borderverticle-fill +
    +
    .el-icon-inspur-up-borderverticle-fill +
    +
  • + +
  • + +
    + search-add +
    +
    .el-icon-inspur-search-add +
    +
  • + +
  • + +
    + search-min +
    +
    .el-icon-inspur-search-min +
    +
  • + +
  • + +
    + rocket-line +
    +
    .el-icon-inspur-rocket-line +
    +
  • + +
  • + +
    + rocket-fill +
    +
    .el-icon-inspur-rocket-fill +
    +
  • + +
  • + +
    + dashboard-3-fill +
    +
    .el-icon-inspur-dashboard-3-fill +
    +
  • + +
  • + +
    + dashboard-3-line +
    +
    .el-icon-inspur-dashboard-3-line +
    +
  • + +
  • + +
    + exchange-funds-line +
    +
    .el-icon-inspur-exchange-funds-line +
    +
  • + +
  • + +
    + time-fill +
    +
    .el-icon-inspur-time-fill +
    +
  • + +
  • + +
    + time-line +
    +
    .el-icon-inspur-time-line +
    +
  • + +
  • + +
    + timer-fill +
    +
    .el-icon-inspur-timer-fill +
    +
  • + +
  • + +
    + timer-line +
    +
    .el-icon-inspur-timer-line +
    +
  • + +
  • + +
    + edit-box-fill +
    +
    .el-icon-inspur-edit-box-fill +
    +
  • + +
  • + +
    + edit-box-line +
    +
    .el-icon-inspur-edit-box-line +
    +
  • + +
  • + +
    + eye-close-line +
    +
    .el-icon-inspur-eye-close-line +
    +
  • + +
  • + +
    + eye-close-fill +
    +
    .el-icon-inspur-eye-close-fill +
    +
  • + +
  • + +
    + eye-off-fill +
    +
    .el-icon-inspur-eye-off-fill +
    +
  • + +
  • + +
    + arrow-drop-down-line +
    +
    .el-icon-inspur-arrow-drop-down-line +
    +
  • + +
  • + +
    + arrow-drop-down-fill +
    +
    .el-icon-inspur-arrow-drop-down-fill +
    +
  • + +
  • + +
    + arrow-drop-left-line +
    +
    .el-icon-inspur-arrow-drop-left-line +
    +
  • + +
  • + +
    + arrow-drop-left-fill +
    +
    .el-icon-inspur-arrow-drop-left-fill +
    +
  • + +
  • + +
    + arrow-drop-right-line +
    +
    .el-icon-inspur-arrow-drop-right-line +
    +
  • + +
  • + +
    + arrow-drop-right-fill +
    +
    .el-icon-inspur-arrow-drop-right-fill +
    +
  • + +
  • + +
    + arrow-drop-up-fill +
    +
    .el-icon-inspur-arrow-drop-up-fill +
    +
  • + +
  • + +
    + arrow-drop-up-line +
    +
    .el-icon-inspur-arrow-drop-up-line +
    +
  • + +
  • + +
    + arrow-left-s-fill +
    +
    .el-icon-inspur-arrow-left-s-fill +
    +
  • + +
  • + +
    + arrow-right-s-fill +
    +
    .el-icon-inspur-arrow-right-s-fill +
    +
  • + +
  • + +
    + eye-fill +
    +
    .el-icon-inspur-eye-fill +
    +
  • + +
  • + +
    + eye-line +
    +
    .el-icon-inspur-eye-line +
    +
  • + +
  • + +
    + drag-move-2-line +
    +
    .el-icon-inspur-drag-move-2-line +
    +
  • + +
  • + +
    + drag-move-fill +
    +
    .el-icon-inspur-drag-move-fill +
    +
  • + +
  • + +
    + -alignleft-fill +
    +
    .el-icon-inspur-alignleft-fill +
    +
  • + +
  • + +
    + -borderbottom-fill +
    +
    .el-icon-inspur-borderbottom-fill +
    +
  • + +
  • + +
    + -alignright-fill +
    +
    .el-icon-inspur--alignright-fill +
    +
  • + +
  • + +
    + -bordertop-fill +
    +
    .el-icon-inspur-bordertop-fill +
    +
  • + +
  • + +
    + -picside-fill +
    +
    .el-icon-inspur-picside-fill +
    +
  • + +
  • + +
    + -borderverticle-fill +
    +
    .el-icon-inspur-borderverticle-fill +
    +
  • + +
  • + +
    + -piccenter-fill +
    +
    .el-icon-inspur-piccenter-fill +
    +
  • + +
  • + +
    + mirror-image +
    +
    .el-icon-inspur-mirror-image +
    +
  • + +
  • + +
    + drag-drop-fill +
    +
    .el-icon-inspur-drag-drop-fill +
    +
  • + +
  • + +
    + machine-room +
    +
    .el-icon-inspur-machine-room +
    +
  • + +
  • + +
    + wall +
    +
    .el-icon-inspur-wall +
    +
  • + +
  • + +
    + arrow-down-line +
    +
    .el-icon-inspur-arrow-down-line +
    +
  • + +
  • + +
    + arrow-left-line +
    +
    .el-icon-inspur-arrow-left-line +
    +
  • + +
  • + +
    + arrow-right-line +
    +
    .el-icon-inspur-arrow-right-line +
    +
  • + +
  • + +
    + arrow-up-line +
    +
    .el-icon-inspur-arrow-up-line +
    +
  • + +
  • + +
    + account-pin-circle-line +
    +
    .el-icon-inspur-account-pin-circle-line +
    +
  • + +
  • + +
    + account-pin-circle-fill +
    +
    .el-icon-inspur-account-pin-circle-fill +
    +
  • + +
  • + +
    + search-line +
    +
    .el-icon-inspur-search-line1 +
    +
  • + +
  • + +
    + heart-2-fill +
    +
    .el-icon-inspur-heart-2-fill +
    +
  • + +
  • + +
    + heart-2-line +
    +
    .el-icon-inspur-heart-2-line +
    +
  • + +
  • + +
    + shield-keyhole-fill +
    +
    .el-icon-inspur-shield-keyhole-fill +
    +
  • + +
  • + +
    + shield-keyhole-line +
    +
    .el-icon-inspur-shield-keyhole-line +
    +
  • + +
  • + +
    + edit-lock-fill +
    +
    .el-icon-inspur-edit-lock-fill +
    +
  • + +
  • + +
    + signal-wifi-1-fill +
    +
    .el-icon-inspur-signal-wifi-1-fill +
    +
  • + +
  • + +
    + signal-wifi-2-fill +
    +
    .el-icon-inspur-signal-wifi-2-fill +
    +
  • + +
  • + +
    + signal-wifi-1-line +
    +
    .el-icon-inspur-signal-wifi-1-line +
    +
  • + +
  • + +
    + signal-wifi-3-line +
    +
    .el-icon-inspur-signal-wifi-3-line +
    +
  • + +
  • + +
    + signal-wifi-3-fill +
    +
    .el-icon-inspur-signal-wifi-3-fill +
    +
  • + +
  • + +
    + signal-wifi-2-line +
    +
    .el-icon-inspur-signal-wifi-2-line +
    +
  • + +
  • + +
    + signal-wifi-error-line +
    +
    .el-icon-inspur-signal-wifi-error-line +
    +
  • + +
  • + +
    + wifi-line +
    +
    .el-icon-inspur-wifi-line +
    +
  • + +
  • + +
    + wifi-off-line +
    +
    .el-icon-inspur-wifi-off-line +
    +
  • + +
  • + +
    + wifi-off-fill +
    +
    .el-icon-inspur-wifi-off-fill +
    +
  • + +
  • + +
    + wifi-fill +
    +
    .el-icon-inspur-wifi-fill +
    +
  • + +
  • + +
    + upload-2-fill +
    +
    .el-icon-inspur-upload-2-fill +
    +
  • + +
  • + +
    + upload-2-line +
    +
    .el-icon-inspur-upload-2-line +
    +
  • + +
  • + +
    + bar-chart-2-line +
    +
    .el-icon-inspur-bar-chart-2-line +
    +
  • + +
  • + +
    + bar-chart-fill +
    +
    .el-icon-inspur-bar-chart-fill +
    +
  • + +
  • + +
    + file-copy-2-fill +
    +
    .el-icon-inspur-file-copy-2-fill +
    +
  • + +
  • + +
    + file-copy-2-line +
    +
    .el-icon-inspur-file-copy-2-line +
    +
  • + +
  • + +
    + waiting-fill +
    +
    .el-icon-inspur-waiting-fill +
    +
  • + +
  • + +
    + waiting +
    +
    .el-icon-inspur-waiting +
    +
  • + +
  • + +
    + up-f +
    +
    .el-icon-inspur-up-f +
    +
  • + +
  • + +
    + down-f +
    +
    .el-icon-inspur-down-f +
    +
  • + +
  • + +
    + left-f +
    +
    .el-icon-inspur-left-f +
    +
  • + +
  • + +
    + right-f +
    +
    .el-icon-inspur-right-f +
    +
  • + +
  • + +
    + chart-area +
    +
    .el-icon-inspur-chart-area +
    +
  • + +
  • + +
    + chart-line +
    +
    .el-icon-inspur-chart-line +
    +
  • + +
  • + +
    + chart-bar +
    +
    .el-icon-inspur-chart-bar +
    +
  • + +
  • + +
    + chart-pointmap +
    +
    .el-icon-inspur-chart-pointmap +
    +
  • + +
  • + +
    + certificate-fill +
    +
    .el-icon-inspur-certificate-fill +
    +
  • + +
  • + +
    + monitor-circle +
    +
    .el-icon-inspur-monitor-circle +
    +
  • + +
  • + +
    + store-circle +
    +
    .el-icon-inspur-store-circle +
    +
  • + +
  • + +
    + server-circle +
    +
    .el-icon-inspur-server-circle +
    +
  • + +
  • + +
    + firewall-circle +
    +
    .el-icon-inspur-firewall-circle +
    +
  • + +
  • + +
    + change-circle +
    +
    .el-icon-inspur-change-circle +
    +
  • + +
  • + +
    + nic-circle +
    +
    .el-icon-inspur-nic-circle +
    +
  • + +
  • + +
    + mail-volume-line +
    +
    .el-icon-inspur-mail-volume-line +
    +
  • + +
  • + +
    + mail-volume-fill +
    +
    .el-icon-inspur-mail-volume-fill +
    +
  • + +
  • + +
    + search-eye-fill +
    +
    .el-icon-inspur-search-eye-fill +
    +
  • + +
  • + +
    + search-eye-line +
    +
    .el-icon-inspur-search-eye-line +
    +
  • + +
  • + +
    + restart-line +
    +
    .el-icon-inspur-restart-line +
    +
  • + +
  • + +
    + restart-fill +
    +
    .el-icon-inspur-restart-fill +
    +
  • + +
  • + +
    + ongoing +
    +
    .el-icon-inspur-ongoing +
    +
  • + +
  • + +
    + pause-circle-fill +
    +
    .el-icon-inspur-pause-circle-fill +
    +
  • + +
  • + +
    + pause-circle-line +
    +
    .el-icon-inspur-pause-circle-line +
    +
  • + +
  • + +
    + play-circle-fill +
    +
    .el-icon-inspur-play-circle-fill +
    +
  • + +
  • + +
    + play-circle-line +
    +
    .el-icon-inspur-play-circle-line +
    +
  • + +
  • + +
    + timer-2-fill +
    +
    .el-icon-inspur-timer-2-fill +
    +
  • + +
  • + +
    + timer-2-line +
    +
    .el-icon-inspur-timer-2-line +
    +
  • + +
  • + +
    + file-chart-line +
    +
    .el-icon-inspur-file-chart-line +
    +
  • + +
  • + +
    + file-chart-fill +
    +
    .el-icon-inspur-file-chart-fill +
    +
  • + +
  • + +
    + file-transfer-fill +
    +
    .el-icon-inspur-file-transfer-fill +
    +
  • + +
  • + +
    + file-transfer-line +
    +
    .el-icon-inspur-file-transfer-line +
    +
  • + +
  • + +
    + file-search-fill +
    +
    .el-icon-inspur-file-search-fill +
    +
  • + +
  • + +
    + file-search-line +
    +
    .el-icon-inspur-file-search-line +
    +
  • + +
  • + +
    + exchange-box-fill +
    +
    .el-icon-inspur-exchange-box-fill +
    +
  • + +
  • + +
    + exchange-box-line +
    +
    .el-icon-inspur-exchange-box-line +
    +
  • + +
  • + +
    + volume-vibrate-line +
    +
    .el-icon-inspur-volume-vibrate-line +
    +
  • + +
  • + +
    + volume-vibrate-fill +
    +
    .el-icon-inspur-volume-vibrate-fill +
    +
  • + +
  • + +
    + alarm-fill +
    +
    .el-icon-inspur-alarm-fill +
    +
  • + +
  • + +
    + alarm-line +
    +
    .el-icon-inspur-alarm-line +
    +
  • + +
  • + +
    + laptop-check +
    +
    .el-icon-inspur-laptop-check +
    +
  • + +
  • + +
    + laptop-error +
    +
    .el-icon-inspur-laptop-error +
    +
  • + +
  • + +
    + laptop-check-fill +
    +
    .el-icon-inspur-laptop-check-fill +
    +
  • + +
  • + +
    + laptop-error-fill +
    +
    .el-icon-inspur-laptop-error-fill +
    +
  • + +
  • + +
    + statistical view pie chart -line +
    +
    .el-icon-inspur-a-statisticalviewpiechart-line +
    +
  • + +
  • + +
    + statistical view pie chart 2-fill +
    +
    .el-icon-inspur-a-statisticalviewpiechart2-fill +
    +
  • + +
  • + +
    + hard-drive-2-fill +
    +
    .el-icon-inspur-hard-drive-2-fill +
    +
  • + +
  • + +
    + hard-drive-2-line +
    +
    .el-icon-inspur-hard-drive-2-line +
    +
  • + +
  • + +
    + spot +
    +
    .el-icon-inspur-spot +
    +
  • + +
  • + +
    + question-fill +
    +
    .el-icon-inspur-question-fill1 +
    +
  • + +
  • + +
    + question-line +
    +
    .el-icon-inspur-question-line1 +
    +
  • + +
  • + +
    + table-fire +
    +
    .el-icon-inspur-table-fire +
    +
  • + +
  • + +
    + table-fire-fill +
    +
    .el-icon-inspur-table-fire-fill +
    +
  • + +
  • + +
    + table-imperative-fill +
    +
    .el-icon-inspur-table-imperative-fill +
    +
  • + +
  • + +
    + table-lightning +
    +
    .el-icon-inspur-table-lightning +
    +
  • + +
  • + +
    + table-water +
    +
    .el-icon-inspur-table-water +
    +
  • + +
  • + +
    + table-imperative +
    +
    .el-icon-inspur-table-imperative +
    +
  • + +
  • + +
    + table-lightning-fill +
    +
    .el-icon-inspur-table-lightning-fill +
    +
  • + +
  • + +
    + table-water-fill +
    +
    .el-icon-inspur-table-water-fill +
    +
  • + +
  • + +
    + exclamation-circle +
    +
    .el-icon-inspur-exclamation-circle +
    +
  • + +
  • + +
    + info-circle-fill +
    +
    .el-icon-inspur-info-circle-fill +
    +
  • + +
  • + +
    + info-circle +
    +
    .el-icon-inspur-info-circle +
    +
  • + +
  • + +
    + exclamationcircle-f +
    +
    .el-icon-inspur-exclamationcircle-f +
    +
  • + +
  • + +
    + table-condition-fill +
    +
    .el-icon-inspur-table-condition-fill +
    +
  • + +
  • + +
    + table-condition +
    +
    .el-icon-inspur-table-condition +
    +
  • + +
  • + +
    + details-distributed +
    +
    .el-icon-inspur-details-distributed +
    +
  • + +
  • + +
    + details-change +
    +
    .el-icon-inspur-details-change +
    +
  • + +
  • + +
    + database-save-fill +
    +
    .el-icon-inspur-database-save-fill +
    +
  • + +
  • + +
    + details-router +
    +
    .el-icon-inspur-details-router +
    +
  • + +
  • + +
    + details-nic +
    +
    .el-icon-inspur-details-nic +
    +
  • + +
  • + +
    + details-sdn +
    +
    .el-icon-inspur-details-sdn +
    +
  • + +
  • + +
    + details-monitor +
    +
    .el-icon-inspur-details-monitor +
    +
  • + +
  • + +
    + save-set-fill +
    +
    .el-icon-inspur-save-set-fill +
    +
  • + +
  • + +
    + details-store +
    +
    .el-icon-inspur-details-store +
    +
  • + +
  • + +
    + details-3d +
    +
    .el-icon-inspur-details-3d +
    +
  • + +
  • + +
    + details-rule +
    +
    .el-icon-inspur-details-rule +
    +
  • + +
  • + +
    + details-building +
    +
    .el-icon-inspur-details-building +
    +
  • + +
  • + +
    + details-ips +
    +
    .el-icon-inspur-details-ips +
    +
  • + +
  • + +
    + mail-fill +
    +
    .el-icon-inspur-mail-fill +
    +
  • + +
  • + +
    + mail-line +
    +
    .el-icon-inspur-mail-line +
    +
  • + +
  • + +
    + checkbox-circle-line +
    +
    .el-icon-inspur-checkbox-circle-line +
    +
  • + +
  • + +
    + checkbox-circle-fill +
    +
    .el-icon-inspur-checkbox-circle-fill +
    +
  • + +
  • + +
    + checkbox-fill +
    +
    .el-icon-inspur-checkbox-fill +
    +
  • + +
  • + +
    + checkbox-indeterminate-fill +
    +
    .el-icon-inspur-checkbox-indeterminate-fill +
    +
  • + +
  • + +
    + checkbox-line +
    +
    .el-icon-inspur-checkbox-line +
    +
  • + +
  • + +
    + checkbox-multiple-blank-fill +
    +
    .el-icon-inspur-checkbox-multiple-blank-fill +
    +
  • + +
  • + +
    + checkbox-indeterminate-line +
    +
    .el-icon-inspur-checkbox-indeterminate-line +
    +
  • + +
  • + +
    + checkbox-multiple-blank-line +
    +
    .el-icon-inspur-checkbox-multiple-blank-line +
    +
  • + +
  • + +
    + checkbox-multiple-line +
    +
    .el-icon-inspur-checkbox-multiple-line +
    +
  • + +
  • + +
    + close-circle-fill +
    +
    .el-icon-inspur-close-circle-fill +
    +
  • + +
  • + +
    + checkbox-multiple-fill +
    +
    .el-icon-inspur-checkbox-multiple-fill +
    +
  • + +
  • + +
    + close-circle-line +
    +
    .el-icon-inspur-close-circle-line +
    +
  • + +
  • + +
    + train-fill +
    +
    .el-icon-inspur-train-fill +
    +
  • + +
  • + +
    + train +
    +
    .el-icon-inspur-train +
    +
  • + +
  • + +
    + reply-fill +
    +
    .el-icon-inspur-reply-fill +
    +
  • + +
  • + +
    + reply-line +
    +
    .el-icon-inspur-reply-line +
    +
  • + +
  • + +
    + arrow-down-s-fill +
    +
    .el-icon-inspur-arrow-down-s-fill +
    +
  • + +
  • + +
    + arrow-down-s-line +
    +
    .el-icon-inspur-arrow-down-s-line +
    +
  • + +
  • + +
    + arrow-left-s-line +
    +
    .el-icon-inspur-arrow-left-s-line +
    +
  • + +
  • + +
    + arrow-right-s-line +
    +
    .el-icon-inspur-arrow-right-s-line +
    +
  • + +
  • + +
    + arrow-up-s-fill +
    +
    .el-icon-inspur-arrow-up-s-fill +
    +
  • + +
  • + +
    + arrow-up-s-line +
    +
    .el-icon-inspur-arrow-up-s-line +
    +
  • + +
  • + +
    + arrow-go-back-fill +
    +
    .el-icon-inspur-arrow-go-back-fill +
    +
  • + +
  • + +
    + arrow-go-forward-fill +
    +
    .el-icon-inspur-arrow-go-forward-fill +
    +
  • + +
  • + +
    + checkbox-plus-fill +
    +
    .el-icon-inspur-checkbox-plus-fill +
    +
  • + +
  • + +
    + checkbox-plus-line +
    +
    .el-icon-inspur-checkbox-plus-line +
    +
  • + +
  • + +
    + refresh-fill +
    +
    .el-icon-inspur-refresh-fill +
    +
  • + +
  • + +
    + refresh-line +
    +
    .el-icon-inspur-refresh-line +
    +
  • + +
  • + +
    + documentation upload-fill +
    +
    .el-icon-inspur-a-documentationupload-fill +
    +
  • + +
  • + +
    + documentation upload-line +
    +
    .el-icon-inspur-a-documentationupload-line +
    +
  • + +
  • + +
    + eraser-fill +
    +
    .el-icon-inspur-eraser-fill1 +
    +
  • + +
  • + +
    + text editor eraser-line +
    +
    .el-icon-inspur-a-texteditoreraser-line +
    +
  • + +
  • + +
    + edit-2-fill +
    +
    .el-icon-inspur-edit-2-fill +
    +
  • + +
  • + +
    + edit-2-line +
    +
    .el-icon-inspur-edit-2-line +
    +
  • + +
  • + +
    + article-line +
    +
    .el-icon-inspur-article-line +
    +
  • + +
  • + +
    + sweep-line +
    +
    .el-icon-inspur-sweep-line +
    +
  • + +
  • + +
    + sweep-fill +
    +
    .el-icon-inspur-sweep-fill +
    +
  • + +
  • + +
    + refresh 1-line +
    +
    .el-icon-inspur-a-refresh1-line +
    +
  • + +
  • + +
    + shift-fill +
    +
    .el-icon-inspur-shift-fill +
    +
  • + +
  • + +
    + shift-line +
    +
    .el-icon-inspur-shift-line +
    +
  • + +
  • + +
    + file security-line +
    +
    .el-icon-inspur-a-filesecurity-line +
    +
  • + +
  • + +
    + router 5-line +
    +
    .el-icon-inspur-a-router5-line +
    +
  • + +
  • + +
    + router 5-fill +
    +
    .el-icon-inspur-a-router5-fill +
    +
  • + +
  • + +
    + file remind-fill +
    +
    .el-icon-inspur-a-fileremind-fill +
    +
  • + +
  • + +
    + file remind-line +
    +
    .el-icon-inspur-a-fileremind-line +
    +
  • + +
  • + +
    + remind-line +
    +
    .el-icon-inspur-remind-line +
    +
  • + +
  • + +
    + remind-fill +
    +
    .el-icon-inspur-remind-fill +
    +
  • + +
  • + +
    + hand Heart-fill +
    +
    .el-icon-inspur-a-handHeart-fill +
    +
  • + +
  • + +
    + hand Heart-line +
    +
    .el-icon-inspur-a-handHeart-line +
    +
  • + +
  • + +
    + file management-fill +
    +
    .el-icon-inspur-a-filemanagement-fill +
    +
  • + +
  • + +
    + file management-line +
    +
    .el-icon-inspur-a-filemanagement-line +
    +
  • + +
  • + +
    + cash-fill +
    +
    .el-icon-inspur-cash-fill +
    +
  • + +
  • + +
    + cash-line +
    +
    .el-icon-inspur-cash-line +
    +
  • + +
  • + +
    + file draft text-fill +
    +
    .el-icon-inspur-a-filedrafttext-fill +
    +
  • + +
  • + +
    + file draft text-line +
    +
    .el-icon-inspur-a-filedrafttext-line +
    +
  • + +
  • + +
    + file history-fill +
    +
    .el-icon-inspur-a-filehistory-fill +
    +
  • + +
  • + +
    + file history-line +
    +
    .el-icon-inspur-a-filehistory-line +
    +
  • + +
  • + +
    + file text-line +
    +
    .el-icon-inspur-a-filetext-line +
    +
  • + +
  • + +
    + file text-fill +
    +
    .el-icon-inspur-a-filetext-fill +
    +
  • + +
  • + +
    + news-fill +
    +
    .el-icon-inspur-news-fill +
    +
  • + +
  • + +
    + news-line +
    +
    .el-icon-inspur-news-line +
    +
  • + +
  • + +
    + package 1-fill +
    +
    .el-icon-inspur-a-package1-fill +
    +
  • + +
  • + +
    + package 1-line +
    +
    .el-icon-inspur-a-package1-line +
    +
  • + +
  • + +
    + user set-line +
    +
    .el-icon-inspur-a-userset-line +
    +
  • + +
  • + +
    + user set-fill +
    +
    .el-icon-inspur-a-userset-fill +
    +
  • + +
  • + +
    + annal upload-line +
    +
    .el-icon-inspur-a-annalupload-line +
    +
  • + +
  • + +
    + annal upload-fill +
    +
    .el-icon-inspur-a-annalupload-fill +
    +
  • + +
  • + +
    + currency-line +
    +
    .el-icon-inspur-currency-line +
    +
  • + +
  • + +
    + currency-fill +
    +
    .el-icon-inspur-currency-fill +
    +
  • + +
  • + +
    + statistical view pie chart 3-fill +
    +
    .el-icon-inspur-a-statisticalviewpiechart3-fill +
    +
  • + +
  • + +
    + statistical view pie chart 3-line +
    +
    .el-icon-inspur-a-statisticalviewpiechart3-line +
    +
  • + +
  • + +
    + structure 6-fill +
    +
    .el-icon-inspur-a-structure6-fill +
    +
  • + +
  • + +
    + structure 6-line +
    +
    .el-icon-inspur-a-structure6-line +
    +
  • + +
  • + +
    + service-fill +
    +
    .el-icon-inspur-service-fill +
    +
  • + +
  • + +
    + service-line +
    +
    .el-icon-inspur-service-line +
    +
  • + +
  • + +
    + mobile hard drive-line +
    +
    .el-icon-inspur-mobileharddrive-line +
    +
  • + +
  • + +
    + mobile hard drive-fill +
    +
    .el-icon-inspur-mobileharddrive-fill +
    +
  • + +
  • + +
    + global-fill +
    +
    .el-icon-inspur-global-fill +
    +
  • + +
  • + +
    + global-line +
    +
    .el-icon-inspur-global-line +
    +
  • + +
  • + +
    + camera-fill +
    +
    .el-icon-inspur-camera-fill +
    +
  • + +
  • + +
    + camera-line +
    +
    .el-icon-inspur-camera-line +
    +
  • + +
  • + +
    + equalizer-fill +
    +
    .el-icon-inspur-equalizer-fill +
    +
  • + +
  • + +
    + equalizer-line +
    +
    .el-icon-inspur-equalizer-line +
    +
  • + +
  • + +
    + notification-4-fill +
    +
    .el-icon-inspur-notification-4-fill +
    +
  • + +
  • + +
    + notification-4-line +
    +
    .el-icon-inspur-notification-4-line +
    +
  • + +
  • + +
    + notification-off-line +
    +
    .el-icon-inspur-notification-off-line +
    +
  • + +
  • + +
    + notification-off-fill +
    +
    .el-icon-inspur-notification-off-fill +
    +
  • + +
  • + +
    + earth-fill +
    +
    .el-icon-inspur-earth-fill +
    +
  • + +
  • + +
    + earth-line +
    +
    .el-icon-inspur-earth-line +
    +
  • + +
  • + +
    + 3D +
    +
    .el-icon-inspur-a3D +
    +
  • + +
  • + +
    + eraser-fill +
    +
    .el-icon-inspur-eraser-fill +
    +
  • + +
  • + +
    + eraser-line +
    +
    .el-icon-inspur-eraser-line +
    +
  • + +
  • + +
    + playcircle-fill +
    +
    .el-icon-inspur-playcircle-fill +
    +
  • + +
  • + +
    + pausecircle-fill +
    +
    .el-icon-inspur-pausecircle-fill +
    +
  • + +
  • + +
    + playcircle +
    +
    .el-icon-inspur-playcircle +
    +
  • + +
  • + +
    + pausecircle +
    +
    .el-icon-inspur-pausecircle +
    +
  • + +
  • + +
    + door-closed-fill +
    +
    .el-icon-inspur-door-closed-fill +
    +
  • + +
  • + +
    + door-closed-line +
    +
    .el-icon-inspur-door-closed-line +
    +
  • + +
  • + +
    + door-line +
    +
    .el-icon-inspur-door-line +
    +
  • + +
  • + +
    + door-open-fill +
    +
    .el-icon-inspur-door-open-fill +
    +
  • + +
  • + +
    + door-open-line +
    +
    .el-icon-inspur-door-open-line +
    +
  • + +
  • + +
    + plug-2-fill +
    +
    .el-icon-inspur-plug-2-fill +
    +
  • + +
  • + +
    + plug-2-line +
    +
    .el-icon-inspur-plug-2-line +
    +
  • + +
  • + +
    + plug-fill +
    +
    .el-icon-inspur-plug-fill +
    +
  • + +
  • + +
    + plug-line +
    +
    .el-icon-inspur-plug-line +
    +
  • + +
  • + +
    + add-line +
    +
    .el-icon-inspur-add-line +
    +
  • + +
  • + +
    + add-fill +
    +
    .el-icon-inspur-add-fill +
    +
  • + +
  • + +
    + apps-2-line +
    +
    .el-icon-inspur-apps-2-line +
    +
  • + +
  • + +
    + apps-2-fill +
    +
    .el-icon-inspur-apps-2-fill +
    +
  • + +
  • + +
    + apps-fill +
    +
    .el-icon-inspur-apps-fill +
    +
  • + +
  • + +
    + apps-line +
    +
    .el-icon-inspur-apps-line +
    +
  • + +
  • + +
    + check-line +
    +
    .el-icon-inspur-check-line +
    +
  • + +
  • + +
    + check-fill +
    +
    .el-icon-inspur-check-fill +
    +
  • + +
  • + +
    + delete-bin-6-line +
    +
    .el-icon-inspur-delete-bin-6-line +
    +
  • + +
  • + +
    + delete-bin-6-fill +
    +
    .el-icon-inspur-delete-bin-6-fill +
    +
  • + +
  • + +
    + share-forward-fill +
    +
    .el-icon-inspur-share-forward-fill +
    +
  • + +
  • + +
    + share-forward-line +
    +
    .el-icon-inspur-share-forward-line +
    +
  • + +
  • + +
    + toggle-fill +
    +
    .el-icon-inspur-toggle-fill +
    +
  • + +
  • + +
    + toggle-line +
    +
    .el-icon-inspur-toggle-line +
    +
  • + +
  • + +
    + celsius-line +
    +
    .el-icon-inspur-celsius-line +
    +
  • + +
  • + +
    + notice-fill +
    +
    .el-icon-inspur-notice-fill +
    +
  • + +
  • + +
    + notice-line +
    +
    .el-icon-inspur-notice-line +
    +
  • + +
  • + +
    + network-fill +
    +
    .el-icon-inspur-network-fill +
    +
  • + +
  • + +
    + network +
    +
    .el-icon-inspur-network +
    +
  • + +
  • + +
    + indeterminate-circle-fill +
    +
    .el-icon-inspur-indeterminate-circle-fill +
    +
  • + +
  • + +
    + indeterminate-circle-line +
    +
    .el-icon-inspur-indeterminate-circle-line +
    +
  • + +
  • + +
    + information-fill +
    +
    .el-icon-inspur-information-fill +
    +
  • + +
  • + +
    + information-line +
    +
    .el-icon-inspur-information-line +
    +
  • + +
  • + +
    + error-warning-fill +
    +
    .el-icon-inspur-error-warning-fill +
    +
  • + +
  • + +
    + error-warning-line +
    +
    .el-icon-inspur-error-warning-line +
    +
  • + +
  • + +
    + stop-circle-fill +
    +
    .el-icon-inspur-stop-circle-fill +
    +
  • + +
  • + +
    + stop-circle-line +
    +
    .el-icon-inspur-stop-circle-line +
    +
  • + +
  • + +
    + signal +
    +
    .el-icon-inspur-signal +
    +
  • + +
  • + +
    + 4G +
    +
    .el-icon-inspur-a-4G +
    +
  • + +
  • + +
    + 5g +
    +
    .el-icon-inspur-a-5g +
    +
  • + +
  • + +
    + 2G +
    +
    .el-icon-inspur-a-2G +
    +
  • + +
  • + +
    + 3G +
    +
    .el-icon-inspur-a-3G +
    +
  • + +
  • + +
    + alert-line +
    +
    .el-icon-inspur-alert-line +
    +
  • + +
  • + +
    + alert-fill +
    +
    .el-icon-inspur-alert-fill +
    +
  • + +
  • + +
    + bills other 1-fill +
    +
    .el-icon-inspur-a-billsother1-fill +
    +
  • + +
  • + +
    + bills other 1-line +
    +
    .el-icon-inspur-a-billsother1-line +
    +
  • + +
  • + +
    + bills 5-fill +
    +
    .el-icon-inspur-a-bills5-fill +
    +
  • + +
  • + +
    + bills 4-line +
    +
    .el-icon-inspur-a-bills4-line +
    +
  • + +
  • + +
    + calendar-todo-fill +
    +
    .el-icon-inspur-calendar-todo-fill +
    +
  • + +
  • + +
    + calendar-todo-line +
    +
    .el-icon-inspur-calendar-todo-line +
    +
  • + +
  • + +
    + settings-3-line +
    +
    .el-icon-inspur-settings-3-line +
    +
  • + +
  • + +
    + settings-5-fill +
    +
    .el-icon-inspur-settings-5-fill +
    +
  • + +
  • + +
    + dashboard +
    +
    .el-icon-inspur-dashboard +
    +
  • + +
  • + +
    + dashboard-fill +
    +
    .el-icon-inspur-dashboard-fill +
    +
  • + +
  • + +
    + message +
    +
    .el-icon-inspur-message +
    +
  • + +
  • + +
    + message-fill +
    +
    .el-icon-inspur-message-fill +
    +
  • + +
  • + +
    + chat-group-fill +
    +
    .el-icon-inspur-chat-group-fill +
    +
  • + +
  • + +
    + chat-group +
    +
    .el-icon-inspur-chat-group +
    +
  • + +
  • + +
    + alarm-warning-fill +
    +
    .el-icon-inspur-alarm-warning-fill +
    +
  • + +
  • + +
    + alarm-warning-line +
    +
    .el-icon-inspur-alarm-warning-line +
    +
  • + +
  • + +
    + projection screen-line +
    +
    .el-icon-inspur-a-projectionscreen-line +
    +
  • + +
  • + +
    + projection screen-fill +
    +
    .el-icon-inspur-a-projectionscreen-fill +
    +
  • + +
  • + +
    + admonish-fill +
    +
    .el-icon-inspur-admonish-fill +
    +
  • + +
  • + +
    + admonish-line +
    +
    .el-icon-inspur-admonish-line +
    +
  • + +
  • + +
    + computer proportion-fill +
    +
    .el-icon-inspur-a-computerproportion-fill +
    +
  • + +
  • + +
    + computer proportion-line +
    +
    .el-icon-inspur-a-computerproportion-line +
    +
  • + +
  • + +
    + star-fill +
    +
    .el-icon-inspur-star-fill +
    +
  • + +
  • + +
    + star-line +
    +
    .el-icon-inspur-star-line +
    +
  • + +
  • + +
    + voice playing-fill +
    +
    .el-icon-inspur-a-voiceplaying-fill +
    +
  • + +
  • + +
    + voice playing-line +
    +
    .el-icon-inspur-a-voiceplaying-line +
    +
  • + +
  • + +
    + volume close-fill +
    +
    .el-icon-inspur-a-volumeclose-fill +
    +
  • + +
  • + +
    + volume-line +
    +
    .el-icon-inspur-volume-line +
    +
  • + +
  • + +
    + volume-fill +
    +
    .el-icon-inspur-volume-fill +
    +
  • + +
  • + +
    + volume close-line +
    +
    .el-icon-inspur-a-volumeclose-line +
    +
  • + +
  • + +
    + server arrange-line +
    +
    .el-icon-inspur-a-serverarrange-line +
    +
  • + +
  • + +
    + server cloud-fill +
    +
    .el-icon-inspur-a-servercloud-fill +
    +
  • + +
  • + +
    + server cloud-line +
    +
    .el-icon-inspur-a-servercloud-line +
    +
  • + +
  • + +
    + server arrange-fill +
    +
    .el-icon-inspur-a-serverarrange-fill +
    +
  • + +
  • + +
    + server connect-fill +
    +
    .el-icon-inspur-a-serverconnect-fill +
    +
  • + +
  • + +
    + server concatenate-line +
    +
    .el-icon-inspur-a-serverconcatenate-line +
    +
  • + +
  • + +
    + server concatenate-fill +
    +
    .el-icon-inspur-a-serverconcatenate-fill +
    +
  • + +
  • + +
    + server crowd-fill +
    +
    .el-icon-inspur-a-servercrowd-fill +
    +
  • + +
  • + +
    + server dish-fill +
    +
    .el-icon-inspur-a-serverdish-fill +
    +
  • + +
  • + +
    + server crowd-line +
    +
    .el-icon-inspur-a-servercrowd-line +
    +
  • + +
  • + +
    + server connect-line +
    +
    .el-icon-inspur-a-serverconnect-line +
    +
  • + +
  • + +
    + server dish-line +
    +
    .el-icon-inspur-a-serverdish-line +
    +
  • + +
  • + +
    + server group-line +
    +
    .el-icon-inspur-a-servergroup-line +
    +
  • + +
  • + +
    + server group-fill +
    +
    .el-icon-inspur-a-servergroup-fill +
    +
  • + +
  • + +
    + server hdd-fill +
    +
    .el-icon-inspur-a-serverhdd-fill +
    +
  • + +
  • + +
    + server hdd-line +
    +
    .el-icon-inspur-a-serverhdd-line +
    +
  • + +
  • + +
    + server herd-fill +
    +
    .el-icon-inspur-a-serverherd-fill +
    +
  • + +
  • + +
    + server herd-line +
    +
    .el-icon-inspur-a-serverherd-line +
    +
  • + +
  • + +
    + server host-fill +
    +
    .el-icon-inspur-a-serverhost-fill +
    +
  • + +
  • + +
    + server host computer-fill +
    +
    .el-icon-inspur-a-serverhostcomputer-fill +
    +
  • + +
  • + +
    + server interconnection-line +
    +
    .el-icon-inspur-a-serverinterconnection-line +
    +
  • + +
  • + +
    + server host-line +
    +
    .el-icon-inspur-a-serverhost-line +
    +
  • + +
  • + +
    + server interconnection-fill +
    +
    .el-icon-inspur-a-serverinterconnection-fill +
    +
  • + +
  • + +
    + server joint-line +
    +
    .el-icon-inspur-a-serverjoint-line +
    +
  • + +
  • + +
    + server link-line +
    +
    .el-icon-inspur-a-serverlink-line +
    +
  • + +
  • + +
    + server joint-fill +
    +
    .el-icon-inspur-a-serverjoint-fill +
    +
  • + +
  • + +
    + server paralleling-fill +
    +
    .el-icon-inspur-a-serverparalleling-fill +
    +
  • + +
  • + +
    + server link-fill +
    +
    .el-icon-inspur-a-serverlink-fill +
    +
  • + +
  • + +
    + server paralleling-line +
    +
    .el-icon-inspur-a-serverparalleling-line +
    +
  • + +
  • + +
    + server host computer-line +
    +
    .el-icon-inspur-a-serverhostcomputer-line +
    +
  • + +
  • + +
    + message 2-fill +
    +
    .el-icon-inspur-a-message2-fill +
    +
  • + +
  • + +
    + message 2-line +
    +
    .el-icon-inspur-a-message2-line +
    +
  • + +
  • + +
    + guardian-fill +
    +
    .el-icon-inspur-guardian-fill +
    +
  • + +
  • + +
    + guardian-line +
    +
    .el-icon-inspur-guardian-line +
    +
  • + +
  • + +
    + screen list-fill +
    +
    .el-icon-inspur-a-screenlist-fill +
    +
  • + +
  • + +
    + screen list-line +
    +
    .el-icon-inspur-a-screenlist-line +
    +
  • + +
  • + +
    + search-line +
    +
    .el-icon-inspur-search-line +
    +
  • + +
  • + +
    + hierarchy-fill +
    +
    .el-icon-inspur-hierarchy-fill +
    +
  • + +
  • + +
    + hierarchy-line +
    +
    .el-icon-inspur-hierarchy-line +
    +
  • + +
  • + +
    + model-fill +
    +
    .el-icon-inspur-model-fill +
    +
  • + +
  • + +
    + model-line +
    +
    .el-icon-inspur-model-line +
    +
  • + +
  • + +
    + firm-line +
    +
    .el-icon-inspur-firm-line +
    +
  • + +
  • + +
    + firm-fill +
    +
    .el-icon-inspur-firm-fill +
    +
  • + +
  • + +
    + home-5-line +
    +
    .el-icon-inspur-home-5-line +
    +
  • + +
  • + +
    + home-5-fill +
    +
    .el-icon-inspur-home-5-fill +
    +
  • + +
  • + +
    + computer control-line +
    +
    .el-icon-inspur-a-computercontrol-line +
    +
  • + +
  • + +
    + computer control-fill +
    +
    .el-icon-inspur-a-computercontrol-fill +
    +
  • + +
  • + +
    + computer information-fill +
    +
    .el-icon-inspur-a-computerinformation-fill +
    +
  • + +
  • + +
    + computer information-line +
    +
    .el-icon-inspur-a-computerinformation-line +
    +
  • + +
  • + +
    + architecture-fill +
    +
    .el-icon-inspur-architecture-fill +
    +
  • + +
  • + +
    + architecture-line +
    +
    .el-icon-inspur-architecture-line +
    +
  • + +
  • + +
    + company 6-line +
    +
    .el-icon-inspur-a-company6-line +
    +
  • + +
  • + +
    + company 6-fill +
    +
    .el-icon-inspur-a-company6-fill +
    +
  • + +
  • + +
    + company 3-line +
    +
    .el-icon-inspur-a-company3-line +
    +
  • + +
  • + +
    + company 3-fill +
    +
    .el-icon-inspur-a-company3-fill +
    +
  • + +
  • + +
    + server flock-fill +
    +
    .el-icon-inspur-a-serverflock-fill +
    +
  • + +
  • + +
    + server flock-line +
    +
    .el-icon-inspur-a-serverflock-line +
    +
  • + +
  • + +
    + amount 3-line +
    +
    .el-icon-inspur-a-amount3-line +
    +
  • + +
  • + +
    + amount 3-fill +
    +
    .el-icon-inspur-a-amount3-fill +
    +
  • + +
+
+

font-class 引用

+
+ +

font-class 是 Unicode 使用方式的一种变种,主要是解决 Unicode 书写不直观,语意不明确的问题。

+

与 Unicode 使用方式相比,具有如下特点:

+
    +
  • 相比于 Unicode 语意明确,书写更直观。可以很容易分辨这个 icon 是什么。
  • +
  • 因为使用 class 来定义图标,所以当要替换图标时,只需要修改 class 里面的 Unicode 引用。
  • +
+

使用步骤如下:

+

第一步:引入项目下面生成的 fontclass 代码:

+
<link rel="stylesheet" href="./iconfont.css">
+
+

第二步:挑选相应图标并获取类名,应用于页面:

+
<span class="iconfont el-icon-inspur-xxx"></span>
+
+
+

" + iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。

+
+
+
+
+
    + +
  • + +
    file seal-line
    +
    #el-icon-inspur-a-fileseal-line
    +
  • + +
  • + +
    file search-line
    +
    #el-icon-inspur-a-filesearch-line
    +
  • + +
  • + +
    success-fill
    +
    #el-icon-inspur-success-fill
    +
  • + +
  • + +
    v3-line
    +
    #el-icon-inspur-v3-line
    +
  • + +
  • + +
    yingshe-line
    +
    #el-icon-inspur-yingshe-line
    +
  • + +
  • + +
    mirror-line
    +
    #el-icon-inspur-mirror-line
    +
  • + +
  • + +
    terminal-fill
    +
    #el-icon-inspur-terminal-fill
    +
  • + +
  • + +
    terminal-line
    +
    #el-icon-inspur-terminal-line
    +
  • + +
  • + +
    terminal-window-fill
    +
    #el-icon-inspur-terminal-window-fill
    +
  • + +
  • + +
    terminal-window-line
    +
    #el-icon-inspur-terminal-window-line
    +
  • + +
  • + +
    save-fill
    +
    #el-icon-inspur-save-fill1
    +
  • + +
  • + +
    text editor save-line
    +
    #el-icon-inspur-a-texteditorsave-line
    +
  • + +
  • + +
    user-shared-fill
    +
    #el-icon-inspur-user-shared-fill
    +
  • + +
  • + +
    user-shared-line
    +
    #el-icon-inspur-user-shared-line
    +
  • + +
  • + +
    dynamic-line
    +
    #el-icon-inspur-dynamic-line
    +
  • + +
  • + +
    jbod-line
    +
    #el-icon-inspur-jbod-line
    +
  • + +
  • + +
    statistical view pie chart 2-line
    +
    #el-icon-inspur-a-statisticalviewpiechart2-line
    +
  • + +
  • + +
    slideshow-fill
    +
    #el-icon-inspur-slideshow-fill
    +
  • + +
  • + +
    slideshow-line
    +
    #el-icon-inspur-slideshow-line
    +
  • + +
  • + +
    caogao-line
    +
    #el-icon-inspur-caogao-line
    +
  • + +
  • + +
    caogao-fill
    +
    #el-icon-inspur-caogao-fill
    +
  • + +
  • + +
    date-fill
    +
    #el-icon-inspur-date-fill
    +
  • + +
  • + +
    date-line
    +
    #el-icon-inspur-date-line
    +
  • + +
  • + +
    weixin-line
    +
    #el-icon-inspur-weixin-line
    +
  • + +
  • + +
    weixin-fill
    +
    #el-icon-inspur-weixin-fill
    +
  • + +
  • + +
    bookmark-3-fill
    +
    #el-icon-inspur-bookmark-3-fill
    +
  • + +
  • + +
    bookmark-3-line
    +
    #el-icon-inspur-bookmark-3-line
    +
  • + +
  • + +
    user-6-fill
    +
    #el-icon-inspur-user-6-fill
    +
  • + +
  • + +
    user-fill
    +
    #el-icon-inspur-user-fill
    +
  • + +
  • + +
    user-6-line
    +
    #el-icon-inspur-user-6-line
    +
  • + +
  • + +
    user-line
    +
    #el-icon-inspur-user-line
    +
  • + +
  • + +
    eye-off-line
    +
    #el-icon-inspur-eye-off-line
    +
  • + +
  • + +
    message-2-line
    +
    #el-icon-inspur-message-2-line
    +
  • + +
  • + +
    钉钉
    +
    #el-icon-inspur-dingding
    +
  • + +
  • + +
    电池
    +
    #el-icon-inspur-dianchi
    +
  • + +
  • + +
    snowy-line
    +
    #el-icon-inspur-snowy-line
    +
  • + +
  • + +
    snowy-fill
    +
    #el-icon-inspur-snowy-fill
    +
  • + +
  • + +
    fire-fill
    +
    #el-icon-inspur-fire-fill
    +
  • + +
  • + +
    fire-line
    +
    #el-icon-inspur-fire-line
    +
  • + +
  • + +
    amount 5-line
    +
    #el-icon-inspur-a-amount5-line
    +
  • + +
  • + +
    vidicon-fill
    +
    #el-icon-inspur-vidicon-fill
    +
  • + +
  • + +
    vidicon-line
    +
    #el-icon-inspur-vidicon-line
    +
  • + +
  • + +
    money-cny-box-line
    +
    #el-icon-inspur-money-cny-box-line
    +
  • + +
  • + +
    money-cny-box-fill
    +
    #el-icon-inspur-money-cny-box-fill
    +
  • + +
  • + +
    celsius-fill
    +
    #el-icon-inspur-celsius-fill
    +
  • + +
  • + +
    temp-hot-line
    +
    #el-icon-inspur-temp-hot-line
    +
  • + +
  • + +
    temp-hot-fill
    +
    #el-icon-inspur-temp-hot-fill
    +
  • + +
  • + +
    structure 2-line
    +
    #el-icon-inspur-a-structure2-line
    +
  • + +
  • + +
    structure 2-fill
    +
    #el-icon-inspur-a-structure2-fill
    +
  • + +
  • + +
    edit 2-line
    +
    #el-icon-inspur-a-edit2-line
    +
  • + +
  • + +
    relation 7-fill
    +
    #el-icon-inspur-a-relation7-fill
    +
  • + +
  • + +
    relation 7-line
    +
    #el-icon-inspur-a-relation7-line
    +
  • + +
  • + +
    hand bin-fill
    +
    #el-icon-inspur-a-handbin-fill
    +
  • + +
  • + +
    hand bin-line
    +
    #el-icon-inspur-a-handbin-line
    +
  • + +
  • + +
    goal analysis-line
    +
    #el-icon-inspur-a-goalanalysis-line
    +
  • + +
  • + +
    web page code-line
    +
    #el-icon-inspur-a-webpagecode-line
    +
  • + +
  • + +
    web page code-fill
    +
    #el-icon-inspur-a-webpagecode-fill
    +
  • + +
  • + +
    cut-fill
    +
    #el-icon-inspur-cut-fill
    +
  • + +
  • + +
    cut-line
    +
    #el-icon-inspur-cut-line
    +
  • + +
  • + +
    api-fill
    +
    #el-icon-inspur-api-fill
    +
  • + +
  • + +
    api-line
    +
    #el-icon-inspur-api-line
    +
  • + +
  • + +
    terminal-box-line
    +
    #el-icon-inspur-terminal-box-line
    +
  • + +
  • + +
    terminal-box-fill
    +
    #el-icon-inspur-terminal-box-fill
    +
  • + +
  • + +
    lightbulb-flash-line
    +
    #el-icon-inspur-lightbulb-flash-line
    +
  • + +
  • + +
    documentation download-fill
    +
    #el-icon-inspur-a-documentationdownload-fill
    +
  • + +
  • + +
    documentation download-line
    +
    #el-icon-inspur-a-documentationdownload-line
    +
  • + +
  • + +
    physical-disk-line
    +
    #el-icon-inspur-physical-disk-line
    +
  • + +
  • + +
    raid-line
    +
    #el-icon-inspur-raid-line
    +
  • + +
  • + +
    logical-disk-line
    +
    #el-icon-inspur-logical-disk-line
    +
  • + +
  • + +
    emt-box-line
    +
    #el-icon-inspur-emt-box-line
    +
  • + +
  • + +
    full-box-line
    +
    #el-icon-inspur-full-box-line
    +
  • + +
  • + +
    half-box-line
    +
    #el-icon-inspur-half-box-line
    +
  • + +
  • + +
    picture-in-picture-fill
    +
    #el-icon-inspur-picture-in-picture-fill
    +
  • + +
  • + +
    picture-in-picture-line
    +
    #el-icon-inspur-picture-in-picture-line
    +
  • + +
  • + +
    structure 1-fill
    +
    #el-icon-inspur-a-structure1-fill
    +
  • + +
  • + +
    structure 1-line
    +
    #el-icon-inspur-a-structure1-line
    +
  • + +
  • + +
    history-line
    +
    #el-icon-inspur-history-line
    +
  • + +
  • + +
    history-fill
    +
    #el-icon-inspur-history-fill
    +
  • + +
  • + +
    guaqi-line
    +
    #el-icon-inspur-guaqi-line
    +
  • + +
  • + +
    daiban-fill
    +
    #el-icon-inspur-daiban-fill
    +
  • + +
  • + +
    yiban-line
    +
    #el-icon-inspur-yiban-line
    +
  • + +
  • + +
    daiban-line
    +
    #el-icon-inspur-daiban-line
    +
  • + +
  • + +
    yiban-fill
    +
    #el-icon-inspur-yiban-fill
    +
  • + +
  • + +
    guaqi-fill
    +
    #el-icon-inspur-guaqi-fill
    +
  • + +
  • + +
    file-add-fill
    +
    #el-icon-inspur-file-add-fill
    +
  • + +
  • + +
    file-add-line
    +
    #el-icon-inspur-file-add-line
    +
  • + +
  • + +
    chuku-line
    +
    #el-icon-inspur-chuku-line
    +
  • + +
  • + +
    zaiku-line
    +
    #el-icon-inspur-zaiku-line
    +
  • + +
  • + +
    inbox-archive-line
    +
    #el-icon-inspur-inbox-archive-line
    +
  • + +
  • + +
    inbox-archive-fill
    +
    #el-icon-inspur-inbox-archive-fill
    +
  • + +
  • + +
    inbox-unarchive-fill
    +
    #el-icon-inspur-inbox-unarchive-fill
    +
  • + +
  • + +
    inbox-unarchive-line
    +
    #el-icon-inspur-inbox-unarchive-line
    +
  • + +
  • + +
    briefcase-2-fill
    +
    #el-icon-inspur-briefcase-2-fill
    +
  • + +
  • + +
    briefcase-2-line
    +
    #el-icon-inspur-briefcase-2-line
    +
  • + +
  • + +
    share-box-line
    +
    #el-icon-inspur-share-box-line
    +
  • + +
  • + +
    share-box-fill
    +
    #el-icon-inspur-share-box-fill
    +
  • + +
  • + +
    file-download-fill
    +
    #el-icon-inspur-file-download-fill
    +
  • + +
  • + +
    file-download-line
    +
    #el-icon-inspur-file-download-line
    +
  • + +
  • + +
    more-2-fill
    +
    #el-icon-inspur-more-2-fill
    +
  • + +
  • + +
    more-2-line
    +
    #el-icon-inspur-more-2-line
    +
  • + +
  • + +
    more-fill
    +
    #el-icon-inspur-more-fill
    +
  • + +
  • + +
    more-line
    +
    #el-icon-inspur-more-line
    +
  • + +
  • + +
    filter-line
    +
    #el-icon-inspur-filter-line
    +
  • + +
  • + +
    filter-fill
    +
    #el-icon-inspur-filter-fill
    +
  • + +
  • + +
    filter-off-fill
    +
    #el-icon-inspur-filter-off-fill
    +
  • + +
  • + +
    filter-off-line
    +
    #el-icon-inspur-filter-off-line
    +
  • + +
  • + +
    left small line-line
    +
    #el-icon-inspur-a-leftsmallline-line
    +
  • + +
  • + +
    right small line-line
    +
    #el-icon-inspur-a-rightsmallline-line
    +
  • + +
  • + +
    up small-line
    +
    #el-icon-inspur-a-upsmall-line
    +
  • + +
  • + +
    under small-line
    +
    #el-icon-inspur-a-undersmall-line
    +
  • + +
  • + +
    mesh 5-line
    +
    #el-icon-inspur-a-mesh5-line
    +
  • + +
  • + +
    list-check
    +
    #el-icon-inspur-list-check
    +
  • + +
  • + +
    list-unordered
    +
    #el-icon-inspur-list-unordered
    +
  • + +
  • + +
    file-copy-fill
    +
    #el-icon-inspur-file-copy-fill
    +
  • + +
  • + +
    file-copy-line
    +
    #el-icon-inspur-file-copy-line
    +
  • + +
  • + +
    share-forward-box-fill
    +
    #el-icon-inspur-share-forward-box-fill
    +
  • + +
  • + +
    share-forward-box-line
    +
    #el-icon-inspur-share-forward-box-line
    +
  • + +
  • + +
    contacts-fill
    +
    #el-icon-inspur-contacts-fill
    +
  • + +
  • + +
    contacts-line
    +
    #el-icon-inspur-contacts-line
    +
  • + +
  • + +
    lock-2-fill
    +
    #el-icon-inspur-lock-2-fill
    +
  • + +
  • + +
    lock-2-line
    +
    #el-icon-inspur-lock-2-line
    +
  • + +
  • + +
    lock-fill
    +
    #el-icon-inspur-lock-fill
    +
  • + +
  • + +
    lock-line
    +
    #el-icon-inspur-lock-line
    +
  • + +
  • + +
    lock-unlock-line
    +
    #el-icon-inspur-lock-unlock-line
    +
  • + +
  • + +
    lock-unlock-fill
    +
    #el-icon-inspur-lock-unlock-fill
    +
  • + +
  • + +
    box-open-fill
    +
    #el-icon-inspur-box-open-fill
    +
  • + +
  • + +
    null case-fill
    +
    #el-icon-inspur-a-nullcase-fill
    +
  • + +
  • + +
    null case-line
    +
    #el-icon-inspur-a-nullcase-line
    +
  • + +
  • + +
    passport-fill
    +
    #el-icon-inspur-passport-fill
    +
  • + +
  • + +
    passport-line
    +
    #el-icon-inspur-passport-line
    +
  • + +
  • + +
    bill-fill
    +
    #el-icon-inspur-bill-fill
    +
  • + +
  • + +
    bill-line
    +
    #el-icon-inspur-bill-line
    +
  • + +
  • + +
    file-lock-fill
    +
    #el-icon-inspur-file-lock-fill
    +
  • + +
  • + +
    file-lock-line
    +
    #el-icon-inspur-file-lock-line
    +
  • + +
  • + +
    lower right page-line
    +
    #el-icon-inspur-a-lowerrightpage-line
    +
  • + +
  • + +
    frame-fill
    +
    #el-icon-inspur-frame-fill
    +
  • + +
  • + +
    frame-line
    +
    #el-icon-inspur-frame-line
    +
  • + +
  • + +
    list choose-line
    +
    #el-icon-inspur-a-listchoose-line
    +
  • + +
  • + +
    list view-fill
    +
    #el-icon-inspur-a-listview-fill
    +
  • + +
  • + +
    list view-line
    +
    #el-icon-inspur-a-listview-line
    +
  • + +
  • + +
    lower right page-fill
    +
    #el-icon-inspur-a-lowerrightpage-fill
    +
  • + +
  • + +
    route 2-fill
    +
    #el-icon-inspur-a-route2-fill
    +
  • + +
  • + +
    route 2-line
    +
    #el-icon-inspur-a-route2-line
    +
  • + +
  • + +
    cube-fill
    +
    #el-icon-inspur-cube-fill
    +
  • + +
  • + +
    cube-line
    +
    #el-icon-inspur-cube-line
    +
  • + +
  • + +
    page level-fill
    +
    #el-icon-inspur-a-pagelevel-fill
    +
  • + +
  • + +
    page level-line
    +
    #el-icon-inspur-a-pagelevel-line
    +
  • + +
  • + +
    computer movement-line
    +
    #el-icon-inspur-a-computermovement-line
    +
  • + +
  • + +
    case-line
    +
    #el-icon-inspur-case-line
    +
  • + +
  • + +
    case-fill
    +
    #el-icon-inspur-case-fill
    +
  • + +
  • + +
    constitute-fill
    +
    #el-icon-inspur-constitute-fill
    +
  • + +
  • + +
    constitute-line
    +
    #el-icon-inspur-constitute-line
    +
  • + +
  • + +
    file-settings-fill
    +
    #el-icon-inspur-file-settings-fill
    +
  • + +
  • + +
    file-settings-line
    +
    #el-icon-inspur-file-settings-line
    +
  • + +
  • + +
    map-pin-range-fill
    +
    #el-icon-inspur-map-pin-range-fill
    +
  • + +
  • + +
    map-pin-range-line
    +
    #el-icon-inspur-map-pin-range-line
    +
  • + +
  • + +
    stack-line
    +
    #el-icon-inspur-stack-line
    +
  • + +
  • + +
    stack-fill
    +
    #el-icon-inspur-stack-fill
    +
  • + +
  • + +
    node-tree
    +
    #el-icon-inspur-node-tree
    +
  • + +
  • + +
    mind-map
    +
    #el-icon-inspur-mind-map
    +
  • + +
  • + +
    list-check-2
    +
    #el-icon-inspur-list-check-2
    +
  • + +
  • + +
    box-open-line
    +
    #el-icon-inspur-box-open-line
    +
  • + +
  • + +
    inbox-line
    +
    #el-icon-inspur-inbox-line
    +
  • + +
  • + +
    inbox-fill
    +
    #el-icon-inspur-inbox-fill
    +
  • + +
  • + +
    dots-sm
    +
    #el-icon-inspur-dots-sm
    +
  • + +
  • + +
    applet-line
    +
    #el-icon-inspur-applet-line
    +
  • + +
  • + +
    mail-add-line
    +
    #el-icon-inspur-mail-add-line
    +
  • + +
  • + +
    mail-check-fill
    +
    #el-icon-inspur-mail-check-fill
    +
  • + +
  • + +
    mail-check-line
    +
    #el-icon-inspur-mail-check-line
    +
  • + +
  • + +
    mail-add-fill
    +
    #el-icon-inspur-mail-add-fill
    +
  • + +
  • + +
    mail-close-line
    +
    #el-icon-inspur-mail-close-line
    +
  • + +
  • + +
    mail-download-line
    +
    #el-icon-inspur-mail-download-line
    +
  • + +
  • + +
    mail-close-fill
    +
    #el-icon-inspur-mail-close-fill
    +
  • + +
  • + +
    mail-forbid-fill
    +
    #el-icon-inspur-mail-forbid-fill
    +
  • + +
  • + +
    mail-forbid-line
    +
    #el-icon-inspur-mail-forbid-line
    +
  • + +
  • + +
    mail-lock-fill
    +
    #el-icon-inspur-mail-lock-fill
    +
  • + +
  • + +
    mail-download-fill
    +
    #el-icon-inspur-mail-download-fill
    +
  • + +
  • + +
    mail-lock-line
    +
    #el-icon-inspur-mail-lock-line
    +
  • + +
  • + +
    mail-open-fill
    +
    #el-icon-inspur-mail-open-fill
    +
  • + +
  • + +
    mail-open-line
    +
    #el-icon-inspur-mail-open-line
    +
  • + +
  • + +
    mail-send-line
    +
    #el-icon-inspur-mail-send-line
    +
  • + +
  • + +
    mail-send-fill
    +
    #el-icon-inspur-mail-send-fill
    +
  • + +
  • + +
    mail-settings-line
    +
    #el-icon-inspur-mail-settings-line
    +
  • + +
  • + +
    mail-star-line
    +
    #el-icon-inspur-mail-star-line
    +
  • + +
  • + +
    mail-star-fill
    +
    #el-icon-inspur-mail-star-fill
    +
  • + +
  • + +
    mail-unread-line
    +
    #el-icon-inspur-mail-unread-line
    +
  • + +
  • + +
    mail-unread-fill
    +
    #el-icon-inspur-mail-unread-fill
    +
  • + +
  • + +
    hand-heart-fill
    +
    #el-icon-inspur-hand-heart-fill
    +
  • + +
  • + +
    outlet-2-line
    +
    #el-icon-inspur-outlet-2-line
    +
  • + +
  • + +
    hand-heart-line
    +
    #el-icon-inspur-hand-heart-line
    +
  • + +
  • + +
    outlet-2-fill
    +
    #el-icon-inspur-outlet-2-fill
    +
  • + +
  • + +
    user-3-line
    +
    #el-icon-inspur-user-3-line
    +
  • + +
  • + +
    user-3-fill
    +
    #el-icon-inspur-user-3-fill
    +
  • + +
  • + +
    freight-line
    +
    #el-icon-inspur-freight-line
    +
  • + +
  • + +
    task-line
    +
    #el-icon-inspur-task-line
    +
  • + +
  • + +
    task-fill
    +
    #el-icon-inspur-task-fill
    +
  • + +
  • + +
    send-plane-fill
    +
    #el-icon-inspur-send-plane-fill
    +
  • + +
  • + +
    send-plane-line
    +
    #el-icon-inspur-send-plane-line
    +
  • + +
  • + +
    jisuanqi
    +
    #el-icon-inspur-jisuanqi
    +
  • + +
  • + +
    wangluo1
    +
    #el-icon-inspur-wangluo1
    +
  • + +
  • + +
    xunijiKVM
    +
    #el-icon-inspur-xunijiKVM
    +
  • + +
  • + +
    cunchu
    +
    #el-icon-inspur-cunchu
    +
  • + +
  • + +
    bios
    +
    #el-icon-inspur-bios
    +
  • + +
  • + +
    upgrade-pim
    +
    #el-icon-inspur-upgrade-pim
    +
  • + +
  • + +
    box calculator-line
    +
    #el-icon-inspur-a-boxcalculator-line
    +
  • + +
  • + +
    cloud-fill
    +
    #el-icon-inspur-cloud-fill
    +
  • + +
  • + +
    cloud-line
    +
    #el-icon-inspur-cloud-line
    +
  • + +
  • + +
    cloud-off-fill
    +
    #el-icon-inspur-cloud-off-fill
    +
  • + +
  • + +
    cloud-off-line
    +
    #el-icon-inspur-cloud-off-line
    +
  • + +
  • + +
    change
    +
    #el-icon-inspur-change
    +
  • + +
  • + +
    draft-fill
    +
    #el-icon-inspur-draft-fill
    +
  • + +
  • + +
    draft-line
    +
    #el-icon-inspur-draft-line
    +
  • + +
  • + +
    zhishiku
    +
    #el-icon-inspur-zhishiku
    +
  • + +
  • + +
    fuwu
    +
    #el-icon-inspur-fuwu
    +
  • + +
  • + +
    yuzhi
    +
    #el-icon-inspur-yuzhi
    +
  • + +
  • + +
    bujian
    +
    #el-icon-inspur-bujian
    +
  • + +
  • + +
    shengji
    +
    #el-icon-inspur-shengji
    +
  • + +
  • + +
    tree-Load-balancing
    +
    #el-icon-inspur-tree-Load-balancing
    +
  • + +
  • + +
    tree-change
    +
    #el-icon-inspur-tree-change
    +
  • + +
  • + +
    tree-wall
    +
    #el-icon-inspur-tree-wall
    +
  • + +
  • + +
    tree-waf
    +
    #el-icon-inspur-tree-waf
    +
  • + +
  • + +
    tree-DDoS
    +
    #el-icon-inspur-tree-DDoS
    +
  • + +
  • + +
    tree-server
    +
    #el-icon-inspur-tree-server
    +
  • + +
  • + +
    tree-router
    +
    #el-icon-inspur-tree-router
    +
  • + +
  • + +
    tree-store
    +
    #el-icon-inspur-tree-store
    +
  • + +
  • + +
    tree-DDoS
    +
    #el-icon-inspur-tree-DDoS1
    +
  • + +
  • + +
    survey-add-line
    +
    #el-icon-inspur-survey-add-line
    +
  • + +
  • + +
    file-mark-fill
    +
    #el-icon-inspur-file-mark-fill
    +
  • + +
  • + +
    file-mark-line
    +
    #el-icon-inspur-file-mark-line
    +
  • + +
  • + +
    honour-line
    +
    #el-icon-inspur-honour-line
    +
  • + +
  • + +
    honour-fill
    +
    #el-icon-inspur-honour-fill
    +
  • + +
  • + +
    customer-service-2-line
    +
    #el-icon-inspur-customer-service-2-line
    +
  • + +
  • + +
    customer-service-fill
    +
    #el-icon-inspur-customer-service-fill
    +
  • + +
  • + +
    customer-service-line
    +
    #el-icon-inspur-customer-service-line
    +
  • + +
  • + +
    customer-service-2-fill
    +
    #el-icon-inspur-customer-service-2-fill
    +
  • + +
  • + +
    emotion-happy-fill
    +
    #el-icon-inspur-emotion-happy-fill
    +
  • + +
  • + +
    emotion-line
    +
    #el-icon-inspur-emotion-line
    +
  • + +
  • + +
    emotion-fill
    +
    #el-icon-inspur-emotion-fill
    +
  • + +
  • + +
    emotion-happy-line
    +
    #el-icon-inspur-emotion-happy-line
    +
  • + +
  • + +
    upload-fill
    +
    #el-icon-inspur-upload-fill1
    +
  • + +
  • + +
    upload-line
    +
    #el-icon-inspur-upload-line2
    +
  • + +
  • + +
    hail-line
    +
    #el-icon-inspur-hail-line
    +
  • + +
  • + +
    hail-fill
    +
    #el-icon-inspur-hail-fill
    +
  • + +
  • + +
    pages-line
    +
    #el-icon-inspur-pages-line
    +
  • + +
  • + +
    pages-fill
    +
    #el-icon-inspur-pages-fill
    +
  • + +
  • + +
    survey-fill
    +
    #el-icon-inspur-survey-fill
    +
  • + +
  • + +
    survey-line
    +
    #el-icon-inspur-survey-line
    +
  • + +
  • + +
    todo-fill
    +
    #el-icon-inspur-todo-fill
    +
  • + +
  • + +
    todo-line
    +
    #el-icon-inspur-todo-line
    +
  • + +
  • + +
    exchange-funds-fill
    +
    #el-icon-inspur-exchange-funds-fill
    +
  • + +
  • + +
    funds-box-fill
    +
    #el-icon-inspur-funds-box-fill
    +
  • + +
  • + +
    funds-fill
    +
    #el-icon-inspur-funds-fill
    +
  • + +
  • + +
    funds-line
    +
    #el-icon-inspur-funds-line
    +
  • + +
  • + +
    funds-box-line
    +
    #el-icon-inspur-funds-box-line
    +
  • + +
  • + +
    leaf-line
    +
    #el-icon-inspur-leaf-line
    +
  • + +
  • + +
    leaf-fill
    +
    #el-icon-inspur-leaf-fill
    +
  • + +
  • + +
    lightbulb-line
    +
    #el-icon-inspur-lightbulb-line
    +
  • + +
  • + +
    lightbulb-flash-fill
    +
    #el-icon-inspur-lightbulb-flash-fill
    +
  • + +
  • + +
    plant-fill
    +
    #el-icon-inspur-plant-fill
    +
  • + +
  • + +
    plant-line
    +
    #el-icon-inspur-plant-line
    +
  • + +
  • + +
    voice-recognition-fill
    +
    #el-icon-inspur-voice-recognition-fill
    +
  • + +
  • + +
    voice-recognition-line
    +
    #el-icon-inspur-voice-recognition-line
    +
  • + +
  • + +
    function-line
    +
    #el-icon-inspur-function-line
    +
  • + +
  • + +
    team-fill
    +
    #el-icon-inspur-team-fill
    +
  • + +
  • + +
    team-line
    +
    #el-icon-inspur-team-line
    +
  • + +
  • + +
    file-shield-fill
    +
    #el-icon-inspur-file-shield-fill
    +
  • + +
  • + +
    file-shield-2-line
    +
    #el-icon-inspur-file-shield-2-line
    +
  • + +
  • + +
    question
    +
    #el-icon-inspur-question
    +
  • + +
  • + +
    显卡类型
    +
    #el-icon-inspur-xiankaleixing
    +
  • + +
  • + +
    send message-line
    +
    #el-icon-inspur-a-sendmessage-line
    +
  • + +
  • + +
    send message-fill
    +
    #el-icon-inspur-a-sendmessage-fill
    +
  • + +
  • + +
    内存
    +
    #el-icon-inspur-neicun
    +
  • + +
  • + +
    database-2-line
    +
    #el-icon-inspur-database-2-line
    +
  • + +
  • + +
    database-2-fill
    +
    #el-icon-inspur-database-2-fill
    +
  • + +
  • + +
    监控管理
    +
    #el-icon-inspur-jiankongguanli
    +
  • + +
  • + +
    computer end-line
    +
    #el-icon-inspur-a-computerend-line
    +
  • + +
  • + +
    computer more-line
    +
    #el-icon-inspur-a-computermore-line
    +
  • + +
  • + +
    computer public-line
    +
    #el-icon-inspur-a-computerpublic-line
    +
  • + +
  • + +
    computer-fill
    +
    #el-icon-inspur-computer-fill
    +
  • + +
  • + +
    computer movement-fill
    +
    #el-icon-inspur-a-computermovement-fill
    +
  • + +
  • + +
    computer more-fill
    +
    #el-icon-inspur-a-computermore-fill
    +
  • + +
  • + +
    computer warning-line
    +
    #el-icon-inspur-a-computerwarning-line
    +
  • + +
  • + +
    computer trend-fill
    +
    #el-icon-inspur-a-computertrend-fill
    +
  • + +
  • + +
    computer set-fill
    +
    #el-icon-inspur-a-computerset-fill
    +
  • + +
  • + +
    compose-line
    +
    #el-icon-inspur-compose-line
    +
  • + +
  • + +
    compose-fill
    +
    #el-icon-inspur-compose-fill
    +
  • + +
  • + +
    computer end-fill
    +
    #el-icon-inspur-a-computerend-fill
    +
  • + +
  • + +
    computer error-line
    +
    #el-icon-inspur-a-computererror-line
    +
  • + +
  • + +
    computer volatility-fill
    +
    #el-icon-inspur-a-computervolatility-fill
    +
  • + +
  • + +
    computer error-fill
    +
    #el-icon-inspur-a-computererror-fill
    +
  • + +
  • + +
    computer set-line
    +
    #el-icon-inspur-a-computerset-line
    +
  • + +
  • + +
    computer trend-line
    +
    #el-icon-inspur-a-computertrend-line
    +
  • + +
  • + +
    computer volatility-line
    +
    #el-icon-inspur-a-computervolatility-line
    +
  • + +
  • + +
    computer-line
    +
    #el-icon-inspur-computer-line
    +
  • + +
  • + +
    computer public-fill
    +
    #el-icon-inspur-a-computerpublic-fill
    +
  • + +
  • + +
    double right line-line
    +
    #el-icon-inspur-a-doublerightline-line
    +
  • + +
  • + +
    double left line-line
    +
    #el-icon-inspur-a-doubleleftline-line
    +
  • + +
  • + +
    drag-move-line
    +
    #el-icon-inspur-drag-move-line
    +
  • + +
  • + +
    flashlight-fill
    +
    #el-icon-inspur-flashlight-fill
    +
  • + +
  • + +
    flashlight-line
    +
    #el-icon-inspur-flashlight-line
    +
  • + +
  • + +
    adhibition-line
    +
    #el-icon-inspur-adhibition-line
    +
  • + +
  • + +
    net
    +
    #el-icon-inspur-net
    +
  • + +
  • + +
    timer shaft-fill
    +
    #el-icon-inspur-a-timershaft-fill
    +
  • + +
  • + +
    timer shaft-line
    +
    #el-icon-inspur-a-timershaft-line
    +
  • + +
  • + +
    subtract-fill
    +
    #el-icon-inspur-subtract-fill
    +
  • + +
  • + +
    subtract-line
    +
    #el-icon-inspur-subtract-line
    +
  • + +
  • + +
    menu-line
    +
    #el-icon-inspur-menu-line
    +
  • + +
  • + +
    download-line
    +
    #el-icon-inspur-download1-line
    +
  • + +
  • + +
    upload-line
    +
    #el-icon-inspur-upload1-line
    +
  • + +
  • + +
    close-line
    +
    #el-icon-inspur-close-line
    +
  • + +
  • + +
    close-fill
    +
    #el-icon-inspur-close-fill
    +
  • + +
  • + +
    -out
    +
    #el-icon-inspur--out
    +
  • + +
  • + +
    grid-fill
    +
    #el-icon-inspur-grid-fill
    +
  • + +
  • + +
    unhealth-fill
    +
    #el-icon-inspur-unhealth-fill
    +
  • + +
  • + +
    health
    +
    #el-icon-inspur-health
    +
  • + +
  • + +
    unhealth
    +
    #el-icon-inspur-unhealth
    +
  • + +
  • + +
    health-fill
    +
    #el-icon-inspur-health-fill
    +
  • + +
  • + +
    article-fill
    +
    #el-icon-inspur-article-fill
    +
  • + +
  • + +
    hotel-line
    +
    #el-icon-inspur-hotel-line
    +
  • + +
  • + +
    hotel-fill
    +
    #el-icon-inspur-hotel-fill
    +
  • + +
  • + +
    building-fill
    +
    #el-icon-inspur-building-fill1
    +
  • + +
  • + +
    building-line
    +
    #el-icon-inspur-building-line
    +
  • + +
  • + +
    danban
    +
    #el-icon-inspur-danban
    +
  • + +
  • + +
    server-circle
    +
    #el-icon-inspur-server-circle1
    +
  • + +
  • + +
    port
    +
    #el-icon-inspur-port
    +
  • + +
  • + +
    waf
    +
    #el-icon-inspur-waf
    +
  • + +
  • + +
    ddos
    +
    #el-icon-inspur-ddos
    +
  • + +
  • + +
    control-circle
    +
    #el-icon-inspur-control-circle1
    +
  • + +
  • + +
    23d
    +
    #el-icon-inspur-d
    +
  • + +
  • + +
    brush-3-fill
    +
    #el-icon-inspur-brush-3-fill
    +
  • + +
  • + +
    brush-3-line
    +
    #el-icon-inspur-brush-3-line
    +
  • + +
  • + +
    water-flash-fill
    +
    #el-icon-inspur-water-flash-fill
    +
  • + +
  • + +
    water-flash-line
    +
    #el-icon-inspur-water-flash-line
    +
  • + +
  • + +
    coupon-4-circle
    +
    #el-icon-inspur-coupon-4-circle
    +
  • + +
  • + +
    lun-circle
    +
    #el-icon-inspur-lun-circle
    +
  • + +
  • + +
    book-2-circle
    +
    #el-icon-inspur-book-2-circle
    +
  • + +
  • + +
    iscsi-circle
    +
    #el-icon-inspur-iscsi-circle
    +
  • + +
  • + +
    fan-circle
    +
    #el-icon-inspur-fan-circle
    +
  • + +
  • + +
    store-circle
    +
    #el-icon-inspur-store-circle1
    +
  • + +
  • + +
    book-2-fill
    +
    #el-icon-inspur-book-2-fill
    +
  • + +
  • + +
    book-2-line
    +
    #el-icon-inspur-book-2-line
    +
  • + +
  • + +
    archive-drawer-fill
    +
    #el-icon-inspur-archive-drawer-fill
    +
  • + +
  • + +
    archive-drawer-line
    +
    #el-icon-inspur-archive-drawer-line
    +
  • + +
  • + +
    control
    +
    #el-icon-inspur-control
    +
  • + +
  • + +
    iscsi
    +
    #el-icon-inspur-iscsi
    +
  • + +
  • + +
    lun
    +
    #el-icon-inspur-lun
    +
  • + +
  • + +
    store-fill
    +
    #el-icon-inspur-store-fill
    +
  • + +
  • + +
    store
    +
    #el-icon-inspur-store
    +
  • + +
  • + +
    shield-check-fill
    +
    #el-icon-inspur-shield-check-fill
    +
  • + +
  • + +
    shield-check-line
    +
    #el-icon-inspur-shield-check-line
    +
  • + +
  • + +
    shield-cross-fill
    +
    #el-icon-inspur-shield-cross-fill
    +
  • + +
  • + +
    shield-cross-line
    +
    #el-icon-inspur-shield-cross-line
    +
  • + +
  • + +
    file-list-2-fill
    +
    #el-icon-inspur-file-list-2-fill
    +
  • + +
  • + +
    file-list-3-fill
    +
    #el-icon-inspur-file-list-3-fill
    +
  • + +
  • + +
    file-list-3-line
    +
    #el-icon-inspur-file-list-3-line
    +
  • + +
  • + +
    file-list-2-line
    +
    #el-icon-inspur-file-list-2-line
    +
  • + +
  • + +
    node-fill
    +
    #el-icon-inspur-node-fill
    +
  • + +
  • + +
    node
    +
    #el-icon-inspur-node
    +
  • + +
  • + +
    file-text-fill
    +
    #el-icon-inspur-file-text-fill
    +
  • + +
  • + +
    file-text-line
    +
    #el-icon-inspur-file-text-line
    +
  • + +
  • + +
    anticlockwise-2-line
    +
    #el-icon-inspur-anticlockwise-2-line
    +
  • + +
  • + +
    anticlockwise-fill
    +
    #el-icon-inspur-anticlockwise-fill
    +
  • + +
  • + +
    anticlockwise-2-fill
    +
    #el-icon-inspur-anticlockwise-2-fill
    +
  • + +
  • + +
    anticlockwise-line
    +
    #el-icon-inspur-anticlockwise-line
    +
  • + +
  • + +
    artboard-2-line
    +
    #el-icon-inspur-artboard-2-line
    +
  • + +
  • + +
    artboard-2-fill
    +
    #el-icon-inspur-artboard-2-fill
    +
  • + +
  • + +
    clockwise-2-fill
    +
    #el-icon-inspur-clockwise-2-fill
    +
  • + +
  • + +
    clockwise-line
    +
    #el-icon-inspur-clockwise-line
    +
  • + +
  • + +
    contacts-book-2-fill
    +
    #el-icon-inspur-contacts-book-2-fill
    +
  • + +
  • + +
    contacts-book-2-line
    +
    #el-icon-inspur-contacts-book-2-line
    +
  • + +
  • + +
    contacts-book-fill
    +
    #el-icon-inspur-contacts-book-fill
    +
  • + +
  • + +
    contacts-book-line
    +
    #el-icon-inspur-contacts-book-line
    +
  • + +
  • + +
    mini-program-line
    +
    #el-icon-inspur-mini-program-line
    +
  • + +
  • + +
    mini-program-fill
    +
    #el-icon-inspur-mini-program-fill
    +
  • + +
  • + +
    map-pin-line
    +
    #el-icon-inspur-map-pin-line
    +
  • + +
  • + +
    map-pin-fill
    +
    #el-icon-inspur-map-pin-fill
    +
  • + +
  • + +
    book-mark-line
    +
    #el-icon-inspur-book-mark-line
    +
  • + +
  • + +
    file-chart-2-line
    +
    #el-icon-inspur-file-chart-2-line
    +
  • + +
  • + +
    file-chart-2-fill
    +
    #el-icon-inspur-file-chart-2-fill
    +
  • + +
  • + +
    laptop-set-fill
    +
    #el-icon-inspur-laptop-set-fill
    +
  • + +
  • + +
    links-fill
    +
    #el-icon-inspur-links-fill
    +
  • + +
  • + +
    links-line
    +
    #el-icon-inspur-links-line
    +
  • + +
  • + +
    link-m
    +
    #el-icon-inspur-link-m
    +
  • + +
  • + +
    link-unlink-m
    +
    #el-icon-inspur-link-unlink-m
    +
  • + +
  • + +
    link-unlink
    +
    #el-icon-inspur-link-unlink
    +
  • + +
  • + +
    link
    +
    #el-icon-inspur-link
    +
  • + +
  • + +
    star-smile-fill
    +
    #el-icon-inspur-star-smile-fill
    +
  • + +
  • + +
    star-smile-line
    +
    #el-icon-inspur-star-smile-line
    +
  • + +
  • + +
    download-line
    +
    #el-icon-inspur-download-line
    +
  • + +
  • + +
    download-fill
    +
    #el-icon-inspur-download-fill
    +
  • + +
  • + +
    upload-line
    +
    #el-icon-inspur-upload-line
    +
  • + +
  • + +
    upload-fill
    +
    #el-icon-inspur-upload-fill
    +
  • + +
  • + +
    top-cn
    +
    #el-icon-inspur-top-cn
    +
  • + +
  • + +
    top-en
    +
    #el-icon-inspur-top-en
    +
  • + +
  • + +
    cpu-line-bg
    +
    #el-icon-inspur-cpu-line-bg
    +
  • + +
  • + +
    plug-line-bg
    +
    #el-icon-inspur-plug-line-bg
    +
  • + +
  • + +
    fan-line-bg
    +
    #el-icon-inspur-fan-line-bg
    +
  • + +
  • + +
    save-line-bg
    +
    #el-icon-inspur-save-line-bg
    +
  • + +
  • + +
    save-fill
    +
    #el-icon-inspur-save-fill
    +
  • + +
  • + +
    save-line
    +
    #el-icon-inspur-save-line
    +
  • + +
  • + +
    fan
    +
    #el-icon-inspur-fan
    +
  • + +
  • + +
    cpu-fill
    +
    #el-icon-inspur-cpu-fill
    +
  • + +
  • + +
    cpu-line
    +
    #el-icon-inspur-cpu-line
    +
  • + +
  • + +
    details-rack
    +
    #el-icon-inspur-details-rack
    +
  • + +
  • + +
    details-server
    +
    #el-icon-inspur-details-server
    +
  • + +
  • + +
    details-firewall
    +
    #el-icon-inspur-details-firewall
    +
  • + +
  • + +
    details-cutte
    +
    #el-icon-inspur-details-cutte
    +
  • + +
  • + +
    details-store-fill
    +
    #el-icon-inspur-details-store-fill
    +
  • + +
  • + +
    details-fram
    +
    #el-icon-inspur-details-fram
    +
  • + +
  • + +
    details-safe
    +
    #el-icon-inspur-details-safe
    +
  • + +
  • + +
    picture-in-picture-exit-fill
    +
    #el-icon-inspur-picture-in-picture-exit-fill
    +
  • + +
  • + +
    picture-in-picture-exit-line
    +
    #el-icon-inspur-picture-in-picture-exit-line
    +
  • + +
  • + +
    vidicon-2-fill
    +
    #el-icon-inspur-vidicon-2-fill
    +
  • + +
  • + +
    vidicon-2-line
    +
    #el-icon-inspur-vidicon-2-line
    +
  • + +
  • + +
    restart
    +
    #el-icon-inspur-restart
    +
  • + +
  • + +
    switch off-line
    +
    #el-icon-inspur-a-switchoff-line
    +
  • + +
  • + +
    switch on-line
    +
    #el-icon-inspur-a-switchon-line
    +
  • + +
  • + +
    server-line
    +
    #el-icon-inspur-server-line
    +
  • + +
  • + +
    server-fill
    +
    #el-icon-inspur-server-fill1
    +
  • + +
  • + +
    router-line
    +
    #el-icon-inspur-router-line
    +
  • + +
  • + +
    router-fill
    +
    #el-icon-inspur-router-fill
    +
  • + +
  • + +
    flow-chart
    +
    #el-icon-inspur-flow-chart
    +
  • + +
  • + +
    organization-chart
    +
    #el-icon-inspur-organization-chart
    +
  • + +
  • + +
    account-circle-fill
    +
    #el-icon-inspur-account-circle-fill
    +
  • + +
  • + +
    account-circle-line
    +
    #el-icon-inspur-account-circle-line
    +
  • + +
  • + +
    arrow-left-circle-fill
    +
    #el-icon-inspur-arrow-left-circle-fill
    +
  • + +
  • + +
    arrow-left-circle-line
    +
    #el-icon-inspur-arrow-left-circle-line
    +
  • + +
  • + +
    arrow-right-circle-fill
    +
    #el-icon-inspur-arrow-right-circle-fill
    +
  • + +
  • + +
    arrow-right-circle-line
    +
    #el-icon-inspur-arrow-right-circle-line
    +
  • + +
  • + +
    file-edit-line
    +
    #el-icon-inspur-file-edit-line
    +
  • + +
  • + +
    file-edit-fill
    +
    #el-icon-inspur-file-edit-fill
    +
  • + +
  • + +
    pie-chart-fill
    +
    #el-icon-inspur-pie-chart-fill
    +
  • + +
  • + +
    pie-chart-line
    +
    #el-icon-inspur-pie-chart-line
    +
  • + +
  • + +
    up-mirror-image
    +
    #el-icon-inspur-up-mirror-image
    +
  • + +
  • + +
    up-borderverticle-fill
    +
    #el-icon-inspur-up-borderverticle-fill
    +
  • + +
  • + +
    search-add
    +
    #el-icon-inspur-search-add
    +
  • + +
  • + +
    search-min
    +
    #el-icon-inspur-search-min
    +
  • + +
  • + +
    rocket-line
    +
    #el-icon-inspur-rocket-line
    +
  • + +
  • + +
    rocket-fill
    +
    #el-icon-inspur-rocket-fill
    +
  • + +
  • + +
    dashboard-3-fill
    +
    #el-icon-inspur-dashboard-3-fill
    +
  • + +
  • + +
    dashboard-3-line
    +
    #el-icon-inspur-dashboard-3-line
    +
  • + +
  • + +
    exchange-funds-line
    +
    #el-icon-inspur-exchange-funds-line
    +
  • + +
  • + +
    time-fill
    +
    #el-icon-inspur-time-fill
    +
  • + +
  • + +
    time-line
    +
    #el-icon-inspur-time-line
    +
  • + +
  • + +
    timer-fill
    +
    #el-icon-inspur-timer-fill
    +
  • + +
  • + +
    timer-line
    +
    #el-icon-inspur-timer-line
    +
  • + +
  • + +
    edit-box-fill
    +
    #el-icon-inspur-edit-box-fill
    +
  • + +
  • + +
    edit-box-line
    +
    #el-icon-inspur-edit-box-line
    +
  • + +
  • + +
    eye-close-line
    +
    #el-icon-inspur-eye-close-line
    +
  • + +
  • + +
    eye-close-fill
    +
    #el-icon-inspur-eye-close-fill
    +
  • + +
  • + +
    eye-off-fill
    +
    #el-icon-inspur-eye-off-fill
    +
  • + +
  • + +
    arrow-drop-down-line
    +
    #el-icon-inspur-arrow-drop-down-line
    +
  • + +
  • + +
    arrow-drop-down-fill
    +
    #el-icon-inspur-arrow-drop-down-fill
    +
  • + +
  • + +
    arrow-drop-left-line
    +
    #el-icon-inspur-arrow-drop-left-line
    +
  • + +
  • + +
    arrow-drop-left-fill
    +
    #el-icon-inspur-arrow-drop-left-fill
    +
  • + +
  • + +
    arrow-drop-right-line
    +
    #el-icon-inspur-arrow-drop-right-line
    +
  • + +
  • + +
    arrow-drop-right-fill
    +
    #el-icon-inspur-arrow-drop-right-fill
    +
  • + +
  • + +
    arrow-drop-up-fill
    +
    #el-icon-inspur-arrow-drop-up-fill
    +
  • + +
  • + +
    arrow-drop-up-line
    +
    #el-icon-inspur-arrow-drop-up-line
    +
  • + +
  • + +
    arrow-left-s-fill
    +
    #el-icon-inspur-arrow-left-s-fill
    +
  • + +
  • + +
    arrow-right-s-fill
    +
    #el-icon-inspur-arrow-right-s-fill
    +
  • + +
  • + +
    eye-fill
    +
    #el-icon-inspur-eye-fill
    +
  • + +
  • + +
    eye-line
    +
    #el-icon-inspur-eye-line
    +
  • + +
  • + +
    drag-move-2-line
    +
    #el-icon-inspur-drag-move-2-line
    +
  • + +
  • + +
    drag-move-fill
    +
    #el-icon-inspur-drag-move-fill
    +
  • + +
  • + +
    -alignleft-fill
    +
    #el-icon-inspur-alignleft-fill
    +
  • + +
  • + +
    -borderbottom-fill
    +
    #el-icon-inspur-borderbottom-fill
    +
  • + +
  • + +
    -alignright-fill
    +
    #el-icon-inspur--alignright-fill
    +
  • + +
  • + +
    -bordertop-fill
    +
    #el-icon-inspur-bordertop-fill
    +
  • + +
  • + +
    -picside-fill
    +
    #el-icon-inspur-picside-fill
    +
  • + +
  • + +
    -borderverticle-fill
    +
    #el-icon-inspur-borderverticle-fill
    +
  • + +
  • + +
    -piccenter-fill
    +
    #el-icon-inspur-piccenter-fill
    +
  • + +
  • + +
    mirror-image
    +
    #el-icon-inspur-mirror-image
    +
  • + +
  • + +
    drag-drop-fill
    +
    #el-icon-inspur-drag-drop-fill
    +
  • + +
  • + +
    machine-room
    +
    #el-icon-inspur-machine-room
    +
  • + +
  • + +
    wall
    +
    #el-icon-inspur-wall
    +
  • + +
  • + +
    arrow-down-line
    +
    #el-icon-inspur-arrow-down-line
    +
  • + +
  • + +
    arrow-left-line
    +
    #el-icon-inspur-arrow-left-line
    +
  • + +
  • + +
    arrow-right-line
    +
    #el-icon-inspur-arrow-right-line
    +
  • + +
  • + +
    arrow-up-line
    +
    #el-icon-inspur-arrow-up-line
    +
  • + +
  • + +
    account-pin-circle-line
    +
    #el-icon-inspur-account-pin-circle-line
    +
  • + +
  • + +
    account-pin-circle-fill
    +
    #el-icon-inspur-account-pin-circle-fill
    +
  • + +
  • + +
    search-line
    +
    #el-icon-inspur-search-line1
    +
  • + +
  • + +
    heart-2-fill
    +
    #el-icon-inspur-heart-2-fill
    +
  • + +
  • + +
    heart-2-line
    +
    #el-icon-inspur-heart-2-line
    +
  • + +
  • + +
    shield-keyhole-fill
    +
    #el-icon-inspur-shield-keyhole-fill
    +
  • + +
  • + +
    shield-keyhole-line
    +
    #el-icon-inspur-shield-keyhole-line
    +
  • + +
  • + +
    edit-lock-fill
    +
    #el-icon-inspur-edit-lock-fill
    +
  • + +
  • + +
    signal-wifi-1-fill
    +
    #el-icon-inspur-signal-wifi-1-fill
    +
  • + +
  • + +
    signal-wifi-2-fill
    +
    #el-icon-inspur-signal-wifi-2-fill
    +
  • + +
  • + +
    signal-wifi-1-line
    +
    #el-icon-inspur-signal-wifi-1-line
    +
  • + +
  • + +
    signal-wifi-3-line
    +
    #el-icon-inspur-signal-wifi-3-line
    +
  • + +
  • + +
    signal-wifi-3-fill
    +
    #el-icon-inspur-signal-wifi-3-fill
    +
  • + +
  • + +
    signal-wifi-2-line
    +
    #el-icon-inspur-signal-wifi-2-line
    +
  • + +
  • + +
    signal-wifi-error-line
    +
    #el-icon-inspur-signal-wifi-error-line
    +
  • + +
  • + +
    wifi-line
    +
    #el-icon-inspur-wifi-line
    +
  • + +
  • + +
    wifi-off-line
    +
    #el-icon-inspur-wifi-off-line
    +
  • + +
  • + +
    wifi-off-fill
    +
    #el-icon-inspur-wifi-off-fill
    +
  • + +
  • + +
    wifi-fill
    +
    #el-icon-inspur-wifi-fill
    +
  • + +
  • + +
    upload-2-fill
    +
    #el-icon-inspur-upload-2-fill
    +
  • + +
  • + +
    upload-2-line
    +
    #el-icon-inspur-upload-2-line
    +
  • + +
  • + +
    bar-chart-2-line
    +
    #el-icon-inspur-bar-chart-2-line
    +
  • + +
  • + +
    bar-chart-fill
    +
    #el-icon-inspur-bar-chart-fill
    +
  • + +
  • + +
    file-copy-2-fill
    +
    #el-icon-inspur-file-copy-2-fill
    +
  • + +
  • + +
    file-copy-2-line
    +
    #el-icon-inspur-file-copy-2-line
    +
  • + +
  • + +
    waiting-fill
    +
    #el-icon-inspur-waiting-fill
    +
  • + +
  • + +
    waiting
    +
    #el-icon-inspur-waiting
    +
  • + +
  • + +
    up-f
    +
    #el-icon-inspur-up-f
    +
  • + +
  • + +
    down-f
    +
    #el-icon-inspur-down-f
    +
  • + +
  • + +
    left-f
    +
    #el-icon-inspur-left-f
    +
  • + +
  • + +
    right-f
    +
    #el-icon-inspur-right-f
    +
  • + +
  • + +
    chart-area
    +
    #el-icon-inspur-chart-area
    +
  • + +
  • + +
    chart-line
    +
    #el-icon-inspur-chart-line
    +
  • + +
  • + +
    chart-bar
    +
    #el-icon-inspur-chart-bar
    +
  • + +
  • + +
    chart-pointmap
    +
    #el-icon-inspur-chart-pointmap
    +
  • + +
  • + +
    certificate-fill
    +
    #el-icon-inspur-certificate-fill
    +
  • + +
  • + +
    monitor-circle
    +
    #el-icon-inspur-monitor-circle
    +
  • + +
  • + +
    store-circle
    +
    #el-icon-inspur-store-circle
    +
  • + +
  • + +
    server-circle
    +
    #el-icon-inspur-server-circle
    +
  • + +
  • + +
    firewall-circle
    +
    #el-icon-inspur-firewall-circle
    +
  • + +
  • + +
    change-circle
    +
    #el-icon-inspur-change-circle
    +
  • + +
  • + +
    nic-circle
    +
    #el-icon-inspur-nic-circle
    +
  • + +
  • + +
    mail-volume-line
    +
    #el-icon-inspur-mail-volume-line
    +
  • + +
  • + +
    mail-volume-fill
    +
    #el-icon-inspur-mail-volume-fill
    +
  • + +
  • + +
    search-eye-fill
    +
    #el-icon-inspur-search-eye-fill
    +
  • + +
  • + +
    search-eye-line
    +
    #el-icon-inspur-search-eye-line
    +
  • + +
  • + +
    restart-line
    +
    #el-icon-inspur-restart-line
    +
  • + +
  • + +
    restart-fill
    +
    #el-icon-inspur-restart-fill
    +
  • + +
  • + +
    ongoing
    +
    #el-icon-inspur-ongoing
    +
  • + +
  • + +
    pause-circle-fill
    +
    #el-icon-inspur-pause-circle-fill
    +
  • + +
  • + +
    pause-circle-line
    +
    #el-icon-inspur-pause-circle-line
    +
  • + +
  • + +
    play-circle-fill
    +
    #el-icon-inspur-play-circle-fill
    +
  • + +
  • + +
    play-circle-line
    +
    #el-icon-inspur-play-circle-line
    +
  • + +
  • + +
    timer-2-fill
    +
    #el-icon-inspur-timer-2-fill
    +
  • + +
  • + +
    timer-2-line
    +
    #el-icon-inspur-timer-2-line
    +
  • + +
  • + +
    file-chart-line
    +
    #el-icon-inspur-file-chart-line
    +
  • + +
  • + +
    file-chart-fill
    +
    #el-icon-inspur-file-chart-fill
    +
  • + +
  • + +
    file-transfer-fill
    +
    #el-icon-inspur-file-transfer-fill
    +
  • + +
  • + +
    file-transfer-line
    +
    #el-icon-inspur-file-transfer-line
    +
  • + +
  • + +
    file-search-fill
    +
    #el-icon-inspur-file-search-fill
    +
  • + +
  • + +
    file-search-line
    +
    #el-icon-inspur-file-search-line
    +
  • + +
  • + +
    exchange-box-fill
    +
    #el-icon-inspur-exchange-box-fill
    +
  • + +
  • + +
    exchange-box-line
    +
    #el-icon-inspur-exchange-box-line
    +
  • + +
  • + +
    volume-vibrate-line
    +
    #el-icon-inspur-volume-vibrate-line
    +
  • + +
  • + +
    volume-vibrate-fill
    +
    #el-icon-inspur-volume-vibrate-fill
    +
  • + +
  • + +
    alarm-fill
    +
    #el-icon-inspur-alarm-fill
    +
  • + +
  • + +
    alarm-line
    +
    #el-icon-inspur-alarm-line
    +
  • + +
  • + +
    laptop-check
    +
    #el-icon-inspur-laptop-check
    +
  • + +
  • + +
    laptop-error
    +
    #el-icon-inspur-laptop-error
    +
  • + +
  • + +
    laptop-check-fill
    +
    #el-icon-inspur-laptop-check-fill
    +
  • + +
  • + +
    laptop-error-fill
    +
    #el-icon-inspur-laptop-error-fill
    +
  • + +
  • + +
    statistical view pie chart -line
    +
    #el-icon-inspur-a-statisticalviewpiechart-line
    +
  • + +
  • + +
    statistical view pie chart 2-fill
    +
    #el-icon-inspur-a-statisticalviewpiechart2-fill
    +
  • + +
  • + +
    hard-drive-2-fill
    +
    #el-icon-inspur-hard-drive-2-fill
    +
  • + +
  • + +
    hard-drive-2-line
    +
    #el-icon-inspur-hard-drive-2-line
    +
  • + +
  • + +
    spot
    +
    #el-icon-inspur-spot
    +
  • + +
  • + +
    question-fill
    +
    #el-icon-inspur-question-fill1
    +
  • + +
  • + +
    question-line
    +
    #el-icon-inspur-question-line1
    +
  • + +
  • + +
    table-fire
    +
    #el-icon-inspur-table-fire
    +
  • + +
  • + +
    table-fire-fill
    +
    #el-icon-inspur-table-fire-fill
    +
  • + +
  • + +
    table-imperative-fill
    +
    #el-icon-inspur-table-imperative-fill
    +
  • + +
  • + +
    table-lightning
    +
    #el-icon-inspur-table-lightning
    +
  • + +
  • + +
    table-water
    +
    #el-icon-inspur-table-water
    +
  • + +
  • + +
    table-imperative
    +
    #el-icon-inspur-table-imperative
    +
  • + +
  • + +
    table-lightning-fill
    +
    #el-icon-inspur-table-lightning-fill
    +
  • + +
  • + +
    table-water-fill
    +
    #el-icon-inspur-table-water-fill
    +
  • + +
  • + +
    exclamation-circle
    +
    #el-icon-inspur-exclamation-circle
    +
  • + +
  • + +
    info-circle-fill
    +
    #el-icon-inspur-info-circle-fill
    +
  • + +
  • + +
    info-circle
    +
    #el-icon-inspur-info-circle
    +
  • + +
  • + +
    exclamationcircle-f
    +
    #el-icon-inspur-exclamationcircle-f
    +
  • + +
  • + +
    table-condition-fill
    +
    #el-icon-inspur-table-condition-fill
    +
  • + +
  • + +
    table-condition
    +
    #el-icon-inspur-table-condition
    +
  • + +
  • + +
    details-distributed
    +
    #el-icon-inspur-details-distributed
    +
  • + +
  • + +
    details-change
    +
    #el-icon-inspur-details-change
    +
  • + +
  • + +
    database-save-fill
    +
    #el-icon-inspur-database-save-fill
    +
  • + +
  • + +
    details-router
    +
    #el-icon-inspur-details-router
    +
  • + +
  • + +
    details-nic
    +
    #el-icon-inspur-details-nic
    +
  • + +
  • + +
    details-sdn
    +
    #el-icon-inspur-details-sdn
    +
  • + +
  • + +
    details-monitor
    +
    #el-icon-inspur-details-monitor
    +
  • + +
  • + +
    save-set-fill
    +
    #el-icon-inspur-save-set-fill
    +
  • + +
  • + +
    details-store
    +
    #el-icon-inspur-details-store
    +
  • + +
  • + +
    details-3d
    +
    #el-icon-inspur-details-3d
    +
  • + +
  • + +
    details-rule
    +
    #el-icon-inspur-details-rule
    +
  • + +
  • + +
    details-building
    +
    #el-icon-inspur-details-building
    +
  • + +
  • + +
    details-ips
    +
    #el-icon-inspur-details-ips
    +
  • + +
  • + +
    mail-fill
    +
    #el-icon-inspur-mail-fill
    +
  • + +
  • + +
    mail-line
    +
    #el-icon-inspur-mail-line
    +
  • + +
  • + +
    checkbox-circle-line
    +
    #el-icon-inspur-checkbox-circle-line
    +
  • + +
  • + +
    checkbox-circle-fill
    +
    #el-icon-inspur-checkbox-circle-fill
    +
  • + +
  • + +
    checkbox-fill
    +
    #el-icon-inspur-checkbox-fill
    +
  • + +
  • + +
    checkbox-indeterminate-fill
    +
    #el-icon-inspur-checkbox-indeterminate-fill
    +
  • + +
  • + +
    checkbox-line
    +
    #el-icon-inspur-checkbox-line
    +
  • + +
  • + +
    checkbox-multiple-blank-fill
    +
    #el-icon-inspur-checkbox-multiple-blank-fill
    +
  • + +
  • + +
    checkbox-indeterminate-line
    +
    #el-icon-inspur-checkbox-indeterminate-line
    +
  • + +
  • + +
    checkbox-multiple-blank-line
    +
    #el-icon-inspur-checkbox-multiple-blank-line
    +
  • + +
  • + +
    checkbox-multiple-line
    +
    #el-icon-inspur-checkbox-multiple-line
    +
  • + +
  • + +
    close-circle-fill
    +
    #el-icon-inspur-close-circle-fill
    +
  • + +
  • + +
    checkbox-multiple-fill
    +
    #el-icon-inspur-checkbox-multiple-fill
    +
  • + +
  • + +
    close-circle-line
    +
    #el-icon-inspur-close-circle-line
    +
  • + +
  • + +
    train-fill
    +
    #el-icon-inspur-train-fill
    +
  • + +
  • + +
    train
    +
    #el-icon-inspur-train
    +
  • + +
  • + +
    reply-fill
    +
    #el-icon-inspur-reply-fill
    +
  • + +
  • + +
    reply-line
    +
    #el-icon-inspur-reply-line
    +
  • + +
  • + +
    arrow-down-s-fill
    +
    #el-icon-inspur-arrow-down-s-fill
    +
  • + +
  • + +
    arrow-down-s-line
    +
    #el-icon-inspur-arrow-down-s-line
    +
  • + +
  • + +
    arrow-left-s-line
    +
    #el-icon-inspur-arrow-left-s-line
    +
  • + +
  • + +
    arrow-right-s-line
    +
    #el-icon-inspur-arrow-right-s-line
    +
  • + +
  • + +
    arrow-up-s-fill
    +
    #el-icon-inspur-arrow-up-s-fill
    +
  • + +
  • + +
    arrow-up-s-line
    +
    #el-icon-inspur-arrow-up-s-line
    +
  • + +
  • + +
    arrow-go-back-fill
    +
    #el-icon-inspur-arrow-go-back-fill
    +
  • + +
  • + +
    arrow-go-forward-fill
    +
    #el-icon-inspur-arrow-go-forward-fill
    +
  • + +
  • + +
    checkbox-plus-fill
    +
    #el-icon-inspur-checkbox-plus-fill
    +
  • + +
  • + +
    checkbox-plus-line
    +
    #el-icon-inspur-checkbox-plus-line
    +
  • + +
  • + +
    refresh-fill
    +
    #el-icon-inspur-refresh-fill
    +
  • + +
  • + +
    refresh-line
    +
    #el-icon-inspur-refresh-line
    +
  • + +
  • + +
    documentation upload-fill
    +
    #el-icon-inspur-a-documentationupload-fill
    +
  • + +
  • + +
    documentation upload-line
    +
    #el-icon-inspur-a-documentationupload-line
    +
  • + +
  • + +
    eraser-fill
    +
    #el-icon-inspur-eraser-fill1
    +
  • + +
  • + +
    text editor eraser-line
    +
    #el-icon-inspur-a-texteditoreraser-line
    +
  • + +
  • + +
    edit-2-fill
    +
    #el-icon-inspur-edit-2-fill
    +
  • + +
  • + +
    edit-2-line
    +
    #el-icon-inspur-edit-2-line
    +
  • + +
  • + +
    article-line
    +
    #el-icon-inspur-article-line
    +
  • + +
  • + +
    sweep-line
    +
    #el-icon-inspur-sweep-line
    +
  • + +
  • + +
    sweep-fill
    +
    #el-icon-inspur-sweep-fill
    +
  • + +
  • + +
    refresh 1-line
    +
    #el-icon-inspur-a-refresh1-line
    +
  • + +
  • + +
    shift-fill
    +
    #el-icon-inspur-shift-fill
    +
  • + +
  • + +
    shift-line
    +
    #el-icon-inspur-shift-line
    +
  • + +
  • + +
    file security-line
    +
    #el-icon-inspur-a-filesecurity-line
    +
  • + +
  • + +
    router 5-line
    +
    #el-icon-inspur-a-router5-line
    +
  • + +
  • + +
    router 5-fill
    +
    #el-icon-inspur-a-router5-fill
    +
  • + +
  • + +
    file remind-fill
    +
    #el-icon-inspur-a-fileremind-fill
    +
  • + +
  • + +
    file remind-line
    +
    #el-icon-inspur-a-fileremind-line
    +
  • + +
  • + +
    remind-line
    +
    #el-icon-inspur-remind-line
    +
  • + +
  • + +
    remind-fill
    +
    #el-icon-inspur-remind-fill
    +
  • + +
  • + +
    hand Heart-fill
    +
    #el-icon-inspur-a-handHeart-fill
    +
  • + +
  • + +
    hand Heart-line
    +
    #el-icon-inspur-a-handHeart-line
    +
  • + +
  • + +
    file management-fill
    +
    #el-icon-inspur-a-filemanagement-fill
    +
  • + +
  • + +
    file management-line
    +
    #el-icon-inspur-a-filemanagement-line
    +
  • + +
  • + +
    cash-fill
    +
    #el-icon-inspur-cash-fill
    +
  • + +
  • + +
    cash-line
    +
    #el-icon-inspur-cash-line
    +
  • + +
  • + +
    file draft text-fill
    +
    #el-icon-inspur-a-filedrafttext-fill
    +
  • + +
  • + +
    file draft text-line
    +
    #el-icon-inspur-a-filedrafttext-line
    +
  • + +
  • + +
    file history-fill
    +
    #el-icon-inspur-a-filehistory-fill
    +
  • + +
  • + +
    file history-line
    +
    #el-icon-inspur-a-filehistory-line
    +
  • + +
  • + +
    file text-line
    +
    #el-icon-inspur-a-filetext-line
    +
  • + +
  • + +
    file text-fill
    +
    #el-icon-inspur-a-filetext-fill
    +
  • + +
  • + +
    news-fill
    +
    #el-icon-inspur-news-fill
    +
  • + +
  • + +
    news-line
    +
    #el-icon-inspur-news-line
    +
  • + +
  • + +
    package 1-fill
    +
    #el-icon-inspur-a-package1-fill
    +
  • + +
  • + +
    package 1-line
    +
    #el-icon-inspur-a-package1-line
    +
  • + +
  • + +
    user set-line
    +
    #el-icon-inspur-a-userset-line
    +
  • + +
  • + +
    user set-fill
    +
    #el-icon-inspur-a-userset-fill
    +
  • + +
  • + +
    annal upload-line
    +
    #el-icon-inspur-a-annalupload-line
    +
  • + +
  • + +
    annal upload-fill
    +
    #el-icon-inspur-a-annalupload-fill
    +
  • + +
  • + +
    currency-line
    +
    #el-icon-inspur-currency-line
    +
  • + +
  • + +
    currency-fill
    +
    #el-icon-inspur-currency-fill
    +
  • + +
  • + +
    statistical view pie chart 3-fill
    +
    #el-icon-inspur-a-statisticalviewpiechart3-fill
    +
  • + +
  • + +
    statistical view pie chart 3-line
    +
    #el-icon-inspur-a-statisticalviewpiechart3-line
    +
  • + +
  • + +
    structure 6-fill
    +
    #el-icon-inspur-a-structure6-fill
    +
  • + +
  • + +
    structure 6-line
    +
    #el-icon-inspur-a-structure6-line
    +
  • + +
  • + +
    service-fill
    +
    #el-icon-inspur-service-fill
    +
  • + +
  • + +
    service-line
    +
    #el-icon-inspur-service-line
    +
  • + +
  • + +
    mobile hard drive-line
    +
    #el-icon-inspur-mobileharddrive-line
    +
  • + +
  • + +
    mobile hard drive-fill
    +
    #el-icon-inspur-mobileharddrive-fill
    +
  • + +
  • + +
    global-fill
    +
    #el-icon-inspur-global-fill
    +
  • + +
  • + +
    global-line
    +
    #el-icon-inspur-global-line
    +
  • + +
  • + +
    camera-fill
    +
    #el-icon-inspur-camera-fill
    +
  • + +
  • + +
    camera-line
    +
    #el-icon-inspur-camera-line
    +
  • + +
  • + +
    equalizer-fill
    +
    #el-icon-inspur-equalizer-fill
    +
  • + +
  • + +
    equalizer-line
    +
    #el-icon-inspur-equalizer-line
    +
  • + +
  • + +
    notification-4-fill
    +
    #el-icon-inspur-notification-4-fill
    +
  • + +
  • + +
    notification-4-line
    +
    #el-icon-inspur-notification-4-line
    +
  • + +
  • + +
    notification-off-line
    +
    #el-icon-inspur-notification-off-line
    +
  • + +
  • + +
    notification-off-fill
    +
    #el-icon-inspur-notification-off-fill
    +
  • + +
  • + +
    earth-fill
    +
    #el-icon-inspur-earth-fill
    +
  • + +
  • + +
    earth-line
    +
    #el-icon-inspur-earth-line
    +
  • + +
  • + +
    3D
    +
    #el-icon-inspur-a3D
    +
  • + +
  • + +
    eraser-fill
    +
    #el-icon-inspur-eraser-fill
    +
  • + +
  • + +
    eraser-line
    +
    #el-icon-inspur-eraser-line
    +
  • + +
  • + +
    playcircle-fill
    +
    #el-icon-inspur-playcircle-fill
    +
  • + +
  • + +
    pausecircle-fill
    +
    #el-icon-inspur-pausecircle-fill
    +
  • + +
  • + +
    playcircle
    +
    #el-icon-inspur-playcircle
    +
  • + +
  • + +
    pausecircle
    +
    #el-icon-inspur-pausecircle
    +
  • + +
  • + +
    door-closed-fill
    +
    #el-icon-inspur-door-closed-fill
    +
  • + +
  • + +
    door-closed-line
    +
    #el-icon-inspur-door-closed-line
    +
  • + +
  • + +
    door-line
    +
    #el-icon-inspur-door-line
    +
  • + +
  • + +
    door-open-fill
    +
    #el-icon-inspur-door-open-fill
    +
  • + +
  • + +
    door-open-line
    +
    #el-icon-inspur-door-open-line
    +
  • + +
  • + +
    plug-2-fill
    +
    #el-icon-inspur-plug-2-fill
    +
  • + +
  • + +
    plug-2-line
    +
    #el-icon-inspur-plug-2-line
    +
  • + +
  • + +
    plug-fill
    +
    #el-icon-inspur-plug-fill
    +
  • + +
  • + +
    plug-line
    +
    #el-icon-inspur-plug-line
    +
  • + +
  • + +
    add-line
    +
    #el-icon-inspur-add-line
    +
  • + +
  • + +
    add-fill
    +
    #el-icon-inspur-add-fill
    +
  • + +
  • + +
    apps-2-line
    +
    #el-icon-inspur-apps-2-line
    +
  • + +
  • + +
    apps-2-fill
    +
    #el-icon-inspur-apps-2-fill
    +
  • + +
  • + +
    apps-fill
    +
    #el-icon-inspur-apps-fill
    +
  • + +
  • + +
    apps-line
    +
    #el-icon-inspur-apps-line
    +
  • + +
  • + +
    check-line
    +
    #el-icon-inspur-check-line
    +
  • + +
  • + +
    check-fill
    +
    #el-icon-inspur-check-fill
    +
  • + +
  • + +
    delete-bin-6-line
    +
    #el-icon-inspur-delete-bin-6-line
    +
  • + +
  • + +
    delete-bin-6-fill
    +
    #el-icon-inspur-delete-bin-6-fill
    +
  • + +
  • + +
    share-forward-fill
    +
    #el-icon-inspur-share-forward-fill
    +
  • + +
  • + +
    share-forward-line
    +
    #el-icon-inspur-share-forward-line
    +
  • + +
  • + +
    toggle-fill
    +
    #el-icon-inspur-toggle-fill
    +
  • + +
  • + +
    toggle-line
    +
    #el-icon-inspur-toggle-line
    +
  • + +
  • + +
    celsius-line
    +
    #el-icon-inspur-celsius-line
    +
  • + +
  • + +
    notice-fill
    +
    #el-icon-inspur-notice-fill
    +
  • + +
  • + +
    notice-line
    +
    #el-icon-inspur-notice-line
    +
  • + +
  • + +
    network-fill
    +
    #el-icon-inspur-network-fill
    +
  • + +
  • + +
    network
    +
    #el-icon-inspur-network
    +
  • + +
  • + +
    indeterminate-circle-fill
    +
    #el-icon-inspur-indeterminate-circle-fill
    +
  • + +
  • + +
    indeterminate-circle-line
    +
    #el-icon-inspur-indeterminate-circle-line
    +
  • + +
  • + +
    information-fill
    +
    #el-icon-inspur-information-fill
    +
  • + +
  • + +
    information-line
    +
    #el-icon-inspur-information-line
    +
  • + +
  • + +
    error-warning-fill
    +
    #el-icon-inspur-error-warning-fill
    +
  • + +
  • + +
    error-warning-line
    +
    #el-icon-inspur-error-warning-line
    +
  • + +
  • + +
    stop-circle-fill
    +
    #el-icon-inspur-stop-circle-fill
    +
  • + +
  • + +
    stop-circle-line
    +
    #el-icon-inspur-stop-circle-line
    +
  • + +
  • + +
    signal
    +
    #el-icon-inspur-signal
    +
  • + +
  • + +
    4G
    +
    #el-icon-inspur-a-4G
    +
  • + +
  • + +
    5g
    +
    #el-icon-inspur-a-5g
    +
  • + +
  • + +
    2G
    +
    #el-icon-inspur-a-2G
    +
  • + +
  • + +
    3G
    +
    #el-icon-inspur-a-3G
    +
  • + +
  • + +
    alert-line
    +
    #el-icon-inspur-alert-line
    +
  • + +
  • + +
    alert-fill
    +
    #el-icon-inspur-alert-fill
    +
  • + +
  • + +
    bills other 1-fill
    +
    #el-icon-inspur-a-billsother1-fill
    +
  • + +
  • + +
    bills other 1-line
    +
    #el-icon-inspur-a-billsother1-line
    +
  • + +
  • + +
    bills 5-fill
    +
    #el-icon-inspur-a-bills5-fill
    +
  • + +
  • + +
    bills 4-line
    +
    #el-icon-inspur-a-bills4-line
    +
  • + +
  • + +
    calendar-todo-fill
    +
    #el-icon-inspur-calendar-todo-fill
    +
  • + +
  • + +
    calendar-todo-line
    +
    #el-icon-inspur-calendar-todo-line
    +
  • + +
  • + +
    settings-3-line
    +
    #el-icon-inspur-settings-3-line
    +
  • + +
  • + +
    settings-5-fill
    +
    #el-icon-inspur-settings-5-fill
    +
  • + +
  • + +
    dashboard
    +
    #el-icon-inspur-dashboard
    +
  • + +
  • + +
    dashboard-fill
    +
    #el-icon-inspur-dashboard-fill
    +
  • + +
  • + +
    message
    +
    #el-icon-inspur-message
    +
  • + +
  • + +
    message-fill
    +
    #el-icon-inspur-message-fill
    +
  • + +
  • + +
    chat-group-fill
    +
    #el-icon-inspur-chat-group-fill
    +
  • + +
  • + +
    chat-group
    +
    #el-icon-inspur-chat-group
    +
  • + +
  • + +
    alarm-warning-fill
    +
    #el-icon-inspur-alarm-warning-fill
    +
  • + +
  • + +
    alarm-warning-line
    +
    #el-icon-inspur-alarm-warning-line
    +
  • + +
  • + +
    projection screen-line
    +
    #el-icon-inspur-a-projectionscreen-line
    +
  • + +
  • + +
    projection screen-fill
    +
    #el-icon-inspur-a-projectionscreen-fill
    +
  • + +
  • + +
    admonish-fill
    +
    #el-icon-inspur-admonish-fill
    +
  • + +
  • + +
    admonish-line
    +
    #el-icon-inspur-admonish-line
    +
  • + +
  • + +
    computer proportion-fill
    +
    #el-icon-inspur-a-computerproportion-fill
    +
  • + +
  • + +
    computer proportion-line
    +
    #el-icon-inspur-a-computerproportion-line
    +
  • + +
  • + +
    star-fill
    +
    #el-icon-inspur-star-fill
    +
  • + +
  • + +
    star-line
    +
    #el-icon-inspur-star-line
    +
  • + +
  • + +
    voice playing-fill
    +
    #el-icon-inspur-a-voiceplaying-fill
    +
  • + +
  • + +
    voice playing-line
    +
    #el-icon-inspur-a-voiceplaying-line
    +
  • + +
  • + +
    volume close-fill
    +
    #el-icon-inspur-a-volumeclose-fill
    +
  • + +
  • + +
    volume-line
    +
    #el-icon-inspur-volume-line
    +
  • + +
  • + +
    volume-fill
    +
    #el-icon-inspur-volume-fill
    +
  • + +
  • + +
    volume close-line
    +
    #el-icon-inspur-a-volumeclose-line
    +
  • + +
  • + +
    server arrange-line
    +
    #el-icon-inspur-a-serverarrange-line
    +
  • + +
  • + +
    server cloud-fill
    +
    #el-icon-inspur-a-servercloud-fill
    +
  • + +
  • + +
    server cloud-line
    +
    #el-icon-inspur-a-servercloud-line
    +
  • + +
  • + +
    server arrange-fill
    +
    #el-icon-inspur-a-serverarrange-fill
    +
  • + +
  • + +
    server connect-fill
    +
    #el-icon-inspur-a-serverconnect-fill
    +
  • + +
  • + +
    server concatenate-line
    +
    #el-icon-inspur-a-serverconcatenate-line
    +
  • + +
  • + +
    server concatenate-fill
    +
    #el-icon-inspur-a-serverconcatenate-fill
    +
  • + +
  • + +
    server crowd-fill
    +
    #el-icon-inspur-a-servercrowd-fill
    +
  • + +
  • + +
    server dish-fill
    +
    #el-icon-inspur-a-serverdish-fill
    +
  • + +
  • + +
    server crowd-line
    +
    #el-icon-inspur-a-servercrowd-line
    +
  • + +
  • + +
    server connect-line
    +
    #el-icon-inspur-a-serverconnect-line
    +
  • + +
  • + +
    server dish-line
    +
    #el-icon-inspur-a-serverdish-line
    +
  • + +
  • + +
    server group-line
    +
    #el-icon-inspur-a-servergroup-line
    +
  • + +
  • + +
    server group-fill
    +
    #el-icon-inspur-a-servergroup-fill
    +
  • + +
  • + +
    server hdd-fill
    +
    #el-icon-inspur-a-serverhdd-fill
    +
  • + +
  • + +
    server hdd-line
    +
    #el-icon-inspur-a-serverhdd-line
    +
  • + +
  • + +
    server herd-fill
    +
    #el-icon-inspur-a-serverherd-fill
    +
  • + +
  • + +
    server herd-line
    +
    #el-icon-inspur-a-serverherd-line
    +
  • + +
  • + +
    server host-fill
    +
    #el-icon-inspur-a-serverhost-fill
    +
  • + +
  • + +
    server host computer-fill
    +
    #el-icon-inspur-a-serverhostcomputer-fill
    +
  • + +
  • + +
    server interconnection-line
    +
    #el-icon-inspur-a-serverinterconnection-line
    +
  • + +
  • + +
    server host-line
    +
    #el-icon-inspur-a-serverhost-line
    +
  • + +
  • + +
    server interconnection-fill
    +
    #el-icon-inspur-a-serverinterconnection-fill
    +
  • + +
  • + +
    server joint-line
    +
    #el-icon-inspur-a-serverjoint-line
    +
  • + +
  • + +
    server link-line
    +
    #el-icon-inspur-a-serverlink-line
    +
  • + +
  • + +
    server joint-fill
    +
    #el-icon-inspur-a-serverjoint-fill
    +
  • + +
  • + +
    server paralleling-fill
    +
    #el-icon-inspur-a-serverparalleling-fill
    +
  • + +
  • + +
    server link-fill
    +
    #el-icon-inspur-a-serverlink-fill
    +
  • + +
  • + +
    server paralleling-line
    +
    #el-icon-inspur-a-serverparalleling-line
    +
  • + +
  • + +
    server host computer-line
    +
    #el-icon-inspur-a-serverhostcomputer-line
    +
  • + +
  • + +
    message 2-fill
    +
    #el-icon-inspur-a-message2-fill
    +
  • + +
  • + +
    message 2-line
    +
    #el-icon-inspur-a-message2-line
    +
  • + +
  • + +
    guardian-fill
    +
    #el-icon-inspur-guardian-fill
    +
  • + +
  • + +
    guardian-line
    +
    #el-icon-inspur-guardian-line
    +
  • + +
  • + +
    screen list-fill
    +
    #el-icon-inspur-a-screenlist-fill
    +
  • + +
  • + +
    screen list-line
    +
    #el-icon-inspur-a-screenlist-line
    +
  • + +
  • + +
    search-line
    +
    #el-icon-inspur-search-line
    +
  • + +
  • + +
    hierarchy-fill
    +
    #el-icon-inspur-hierarchy-fill
    +
  • + +
  • + +
    hierarchy-line
    +
    #el-icon-inspur-hierarchy-line
    +
  • + +
  • + +
    model-fill
    +
    #el-icon-inspur-model-fill
    +
  • + +
  • + +
    model-line
    +
    #el-icon-inspur-model-line
    +
  • + +
  • + +
    firm-line
    +
    #el-icon-inspur-firm-line
    +
  • + +
  • + +
    firm-fill
    +
    #el-icon-inspur-firm-fill
    +
  • + +
  • + +
    home-5-line
    +
    #el-icon-inspur-home-5-line
    +
  • + +
  • + +
    home-5-fill
    +
    #el-icon-inspur-home-5-fill
    +
  • + +
  • + +
    computer control-line
    +
    #el-icon-inspur-a-computercontrol-line
    +
  • + +
  • + +
    computer control-fill
    +
    #el-icon-inspur-a-computercontrol-fill
    +
  • + +
  • + +
    computer information-fill
    +
    #el-icon-inspur-a-computerinformation-fill
    +
  • + +
  • + +
    computer information-line
    +
    #el-icon-inspur-a-computerinformation-line
    +
  • + +
  • + +
    architecture-fill
    +
    #el-icon-inspur-architecture-fill
    +
  • + +
  • + +
    architecture-line
    +
    #el-icon-inspur-architecture-line
    +
  • + +
  • + +
    company 6-line
    +
    #el-icon-inspur-a-company6-line
    +
  • + +
  • + +
    company 6-fill
    +
    #el-icon-inspur-a-company6-fill
    +
  • + +
  • + +
    company 3-line
    +
    #el-icon-inspur-a-company3-line
    +
  • + +
  • + +
    company 3-fill
    +
    #el-icon-inspur-a-company3-fill
    +
  • + +
  • + +
    server flock-fill
    +
    #el-icon-inspur-a-serverflock-fill
    +
  • + +
  • + +
    server flock-line
    +
    #el-icon-inspur-a-serverflock-line
    +
  • + +
  • + +
    amount 3-line
    +
    #el-icon-inspur-a-amount3-line
    +
  • + +
  • + +
    amount 3-fill
    +
    #el-icon-inspur-a-amount3-fill
    +
  • + +
+
+

Symbol 引用

+
+ +

这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇文章 + 这种用法其实是做了一个 SVG 的集合,与另外两种相比具有如下特点:

+
    +
  • 支持多色图标了,不再受单色限制。
  • +
  • 通过一些技巧,支持像字体那样,通过 font-size, color 来调整样式。
  • +
  • 兼容性较差,支持 IE9+,及现代浏览器。
  • +
  • 浏览器渲染 SVG 的性能一般,还不如 png。
  • +
+

使用步骤如下:

+

第一步:引入项目下面生成的 symbol 代码:

+
<script src="./iconfont.js"></script>
+
+

第二步:加入通用 CSS 代码(引入一次就行):

+
<style>
+.icon {
+  width: 1em;
+  height: 1em;
+  vertical-align: -0.15em;
+  fill: currentColor;
+  overflow: hidden;
+}
+</style>
+
+

第三步:挑选相应图标并获取类名,应用于页面:

+
<svg class="icon" aria-hidden="true">
+  <use xlink:href="#icon-xxx"></use>
+</svg>
+
+
+
+ +
+
+ + + diff --git a/InManageBoot-ui/public/font/iconnew/iconfont.css b/InManageBoot-ui/public/font/iconnew/iconfont.css new file mode 100644 index 0000000000000000000000000000000000000000..b6ce36de9fc948b988ba8fc34da1a01740500f36 --- /dev/null +++ b/InManageBoot-ui/public/font/iconnew/iconfont.css @@ -0,0 +1,3278 @@ +@font-face { + font-family: "iconfont"; /* Project id 3195525 */ + src: url('iconfont.eot?t=1703063316770'); /* IE9 */ + src: url('iconfont.eot?t=1703063316770#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('iconfont.woff2?t=1703063316770') format('woff2'), + url('iconfont.woff?t=1703063316770') format('woff'), + url('iconfont.ttf?t=1703063316770') format('truetype'), + url('iconfont.svg?t=1703063316770#iconfont') format('svg'); +} + +.iconfont { + font-family: "iconfont" !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.el-icon-inspur-a-fileseal-line:before { + content: "\eaa9"; +} + +.el-icon-inspur-a-filesearch-line:before { + content: "\eaaa"; +} + +.el-icon-inspur-success-fill:before { + content: "\e649"; +} + +.el-icon-inspur-v3-line:before { + content: "\f054"; +} + +.el-icon-inspur-yingshe-line:before { + content: "\e660"; +} + +.el-icon-inspur-mirror-line:before { + content: "\e66f"; +} + +.el-icon-inspur-terminal-fill:before { + content: "\e735"; +} + +.el-icon-inspur-terminal-line:before { + content: "\e737"; +} + +.el-icon-inspur-terminal-window-fill:before { + content: "\e738"; +} + +.el-icon-inspur-terminal-window-line:before { + content: "\e742"; +} + +.el-icon-inspur-save-fill1:before { + content: "\eaa7"; +} + +.el-icon-inspur-a-texteditorsave-line:before { + content: "\eaa8"; +} + +.el-icon-inspur-user-shared-fill:before { + content: "\e8a6"; +} + +.el-icon-inspur-user-shared-line:before { + content: "\e8a7"; +} + +.el-icon-inspur-dynamic-line:before { + content: "\ee18"; +} + +.el-icon-inspur-jbod-line:before { + content: "\f052"; +} + +.el-icon-inspur-a-statisticalviewpiechart2-line:before { + content: "\eaa6"; +} + +.el-icon-inspur-slideshow-fill:before { + content: "\e70a"; +} + +.el-icon-inspur-slideshow-line:before { + content: "\e715"; +} + +.el-icon-inspur-caogao-line:before { + content: "\f050"; +} + +.el-icon-inspur-caogao-fill:before { + content: "\f051"; +} + +.el-icon-inspur-date-fill:before { + content: "\eaa4"; +} + +.el-icon-inspur-date-line:before { + content: "\eaa5"; +} + +.el-icon-inspur-weixin-line:before { + content: "\f049"; +} + +.el-icon-inspur-weixin-fill:before { + content: "\f04b"; +} + +.el-icon-inspur-bookmark-3-fill:before { + content: "\e6c4"; +} + +.el-icon-inspur-bookmark-3-line:before { + content: "\e6c7"; +} + +.el-icon-inspur-user-6-fill:before { + content: "\e8a2"; +} + +.el-icon-inspur-user-fill:before { + content: "\e8a3"; +} + +.el-icon-inspur-user-6-line:before { + content: "\e8a4"; +} + +.el-icon-inspur-user-line:before { + content: "\e8a5"; +} + +.el-icon-inspur-eye-off-line:before { + content: "\e896"; +} + +.el-icon-inspur-message-2-line:before { + content: "\e6ff"; +} + +.el-icon-inspur-dingding:before { + content: "\e787"; +} + +.el-icon-inspur-dianchi:before { + content: "\e648"; +} + +.el-icon-inspur-snowy-line:before { + content: "\e8a0"; +} + +.el-icon-inspur-snowy-fill:before { + content: "\e8a1"; +} + +.el-icon-inspur-fire-fill:before { + content: "\e89c"; +} + +.el-icon-inspur-fire-line:before { + content: "\e89d"; +} + +.el-icon-inspur-a-amount5-line:before { + content: "\eaa3"; +} + +.el-icon-inspur-vidicon-fill:before { + content: "\e824"; +} + +.el-icon-inspur-vidicon-line:before { + content: "\e825"; +} + +.el-icon-inspur-money-cny-box-line:before { + content: "\e7b3"; +} + +.el-icon-inspur-money-cny-box-fill:before { + content: "\e7bb"; +} + +.el-icon-inspur-celsius-fill:before { + content: "\e897"; +} + +.el-icon-inspur-temp-hot-line:before { + content: "\e89e"; +} + +.el-icon-inspur-temp-hot-fill:before { + content: "\e89f"; +} + +.el-icon-inspur-a-structure2-line:before { + content: "\eaa1"; +} + +.el-icon-inspur-a-structure2-fill:before { + content: "\eaa2"; +} + +.el-icon-inspur-a-edit2-line:before { + content: "\ea9e"; +} + +.el-icon-inspur-a-relation7-fill:before { + content: "\ea9f"; +} + +.el-icon-inspur-a-relation7-line:before { + content: "\eaa0"; +} + +.el-icon-inspur-a-handbin-fill:before { + content: "\ea98"; +} + +.el-icon-inspur-a-handbin-line:before { + content: "\ea9d"; +} + +.el-icon-inspur-a-goalanalysis-line:before { + content: "\ea95"; +} + +.el-icon-inspur-a-webpagecode-line:before { + content: "\ea96"; +} + +.el-icon-inspur-a-webpagecode-fill:before { + content: "\ea97"; +} + +.el-icon-inspur-cut-fill:before { + content: "\ea93"; +} + +.el-icon-inspur-cut-line:before { + content: "\ea94"; +} + +.el-icon-inspur-api-fill:before { + content: "\ea91"; +} + +.el-icon-inspur-api-line:before { + content: "\ea92"; +} + +.el-icon-inspur-terminal-box-line:before { + content: "\e733"; +} + +.el-icon-inspur-terminal-box-fill:before { + content: "\e734"; +} + +.el-icon-inspur-lightbulb-flash-line:before { + content: "\e849"; +} + +.el-icon-inspur-a-documentationdownload-fill:before { + content: "\ea8f"; +} + +.el-icon-inspur-a-documentationdownload-line:before { + content: "\ea90"; +} + +.el-icon-inspur-physical-disk-line:before { + content: "\f024"; +} + +.el-icon-inspur-raid-line:before { + content: "\f025"; +} + +.el-icon-inspur-logical-disk-line:before { + content: "\f026"; +} + +.el-icon-inspur-emt-box-line:before { + content: "\f023"; +} + +.el-icon-inspur-full-box-line:before { + content: "\f020"; +} + +.el-icon-inspur-half-box-line:before { + content: "\f021"; +} + +.el-icon-inspur-picture-in-picture-fill:before { + content: "\e813"; +} + +.el-icon-inspur-picture-in-picture-line:before { + content: "\e814"; +} + +.el-icon-inspur-a-structure1-fill:before { + content: "\ea8c"; +} + +.el-icon-inspur-a-structure1-line:before { + content: "\ea8d"; +} + +.el-icon-inspur-history-line:before { + content: "\e893"; +} + +.el-icon-inspur-history-fill:before { + content: "\e894"; +} + +.el-icon-inspur-guaqi-line:before { + content: "\f01a"; +} + +.el-icon-inspur-daiban-fill:before { + content: "\f01b"; +} + +.el-icon-inspur-yiban-line:before { + content: "\f01c"; +} + +.el-icon-inspur-daiban-line:before { + content: "\f01d"; +} + +.el-icon-inspur-yiban-fill:before { + content: "\f01e"; +} + +.el-icon-inspur-guaqi-fill:before { + content: "\f01f"; +} + +.el-icon-inspur-file-add-fill:before { + content: "\e785"; +} + +.el-icon-inspur-file-add-line:before { + content: "\e786"; +} + +.el-icon-inspur-chuku-line:before { + content: "\f016"; +} + +.el-icon-inspur-zaiku-line:before { + content: "\f017"; +} + +.el-icon-inspur-inbox-archive-line:before { + content: "\e6fb"; +} + +.el-icon-inspur-inbox-archive-fill:before { + content: "\e6fc"; +} + +.el-icon-inspur-inbox-unarchive-fill:before { + content: "\e6fd"; +} + +.el-icon-inspur-inbox-unarchive-line:before { + content: "\e6fe"; +} + +.el-icon-inspur-briefcase-2-fill:before { + content: "\e6c5"; +} + +.el-icon-inspur-briefcase-2-line:before { + content: "\e6c6"; +} + +.el-icon-inspur-share-box-line:before { + content: "\e872"; +} + +.el-icon-inspur-share-box-fill:before { + content: "\e892"; +} + +.el-icon-inspur-file-download-fill:before { + content: "\e783"; +} + +.el-icon-inspur-file-download-line:before { + content: "\e784"; +} + +.el-icon-inspur-more-2-fill:before { + content: "\e868"; +} + +.el-icon-inspur-more-2-line:before { + content: "\e869"; +} + +.el-icon-inspur-more-fill:before { + content: "\e871"; +} + +.el-icon-inspur-more-line:before { + content: "\e879"; +} + +.el-icon-inspur-filter-line:before { + content: "\e858"; +} + +.el-icon-inspur-filter-fill:before { + content: "\e859"; +} + +.el-icon-inspur-filter-off-fill:before { + content: "\e85a"; +} + +.el-icon-inspur-filter-off-line:before { + content: "\e866"; +} + +.el-icon-inspur-a-leftsmallline-line:before { + content: "\ea99"; +} + +.el-icon-inspur-a-rightsmallline-line:before { + content: "\ea9a"; +} + +.el-icon-inspur-a-upsmall-line:before { + content: "\ea9b"; +} + +.el-icon-inspur-a-undersmall-line:before { + content: "\ea9c"; +} + +.el-icon-inspur-a-mesh5-line:before { + content: "\ea8e"; +} + +.el-icon-inspur-list-check:before { + content: "\e7a3"; +} + +.el-icon-inspur-list-unordered:before { + content: "\e7a4"; +} + +.el-icon-inspur-file-copy-fill:before { + content: "\e77f"; +} + +.el-icon-inspur-file-copy-line:before { + content: "\e782"; +} + +.el-icon-inspur-share-forward-box-fill:before { + content: "\e873"; +} + +.el-icon-inspur-share-forward-box-line:before { + content: "\e876"; +} + +.el-icon-inspur-contacts-fill:before { + content: "\e890"; +} + +.el-icon-inspur-contacts-line:before { + content: "\e891"; +} + +.el-icon-inspur-lock-2-fill:before { + content: "\e860"; +} + +.el-icon-inspur-lock-2-line:before { + content: "\e861"; +} + +.el-icon-inspur-lock-fill:before { + content: "\e862"; +} + +.el-icon-inspur-lock-line:before { + content: "\e863"; +} + +.el-icon-inspur-lock-unlock-line:before { + content: "\e864"; +} + +.el-icon-inspur-lock-unlock-fill:before { + content: "\e865"; +} + +.el-icon-inspur-box-open-fill:before { + content: "\f013"; +} + +.el-icon-inspur-a-nullcase-fill:before { + content: "\ea8a"; +} + +.el-icon-inspur-a-nullcase-line:before { + content: "\ea8b"; +} + +.el-icon-inspur-passport-fill:before { + content: "\e7f5"; +} + +.el-icon-inspur-passport-line:before { + content: "\e7f6"; +} + +.el-icon-inspur-bill-fill:before { + content: "\e75e"; +} + +.el-icon-inspur-bill-line:before { + content: "\e77e"; +} + +.el-icon-inspur-file-lock-fill:before { + content: "\e780"; +} + +.el-icon-inspur-file-lock-line:before { + content: "\e781"; +} + +.el-icon-inspur-a-lowerrightpage-line:before { + content: "\ea89"; +} + +.el-icon-inspur-frame-fill:before { + content: "\ea83"; +} + +.el-icon-inspur-frame-line:before { + content: "\ea84"; +} + +.el-icon-inspur-a-listchoose-line:before { + content: "\ea85"; +} + +.el-icon-inspur-a-listview-fill:before { + content: "\ea86"; +} + +.el-icon-inspur-a-listview-line:before { + content: "\ea87"; +} + +.el-icon-inspur-a-lowerrightpage-fill:before { + content: "\ea88"; +} + +.el-icon-inspur-a-route2-fill:before { + content: "\ea81"; +} + +.el-icon-inspur-a-route2-line:before { + content: "\ea82"; +} + +.el-icon-inspur-cube-fill:before { + content: "\ea7f"; +} + +.el-icon-inspur-cube-line:before { + content: "\ea80"; +} + +.el-icon-inspur-a-pagelevel-fill:before { + content: "\ea7c"; +} + +.el-icon-inspur-a-pagelevel-line:before { + content: "\ea7e"; +} + +.el-icon-inspur-a-computermovement-line:before { + content: "\ea7d"; +} + +.el-icon-inspur-case-line:before { + content: "\ea6c"; +} + +.el-icon-inspur-case-fill:before { + content: "\ea6d"; +} + +.el-icon-inspur-constitute-fill:before { + content: "\ea69"; +} + +.el-icon-inspur-constitute-line:before { + content: "\ea6b"; +} + +.el-icon-inspur-file-settings-fill:before { + content: "\e77c"; +} + +.el-icon-inspur-file-settings-line:before { + content: "\e77d"; +} + +.el-icon-inspur-map-pin-range-fill:before { + content: "\e7f1"; +} + +.el-icon-inspur-map-pin-range-line:before { + content: "\e7f2"; +} + +.el-icon-inspur-stack-line:before { + content: "\e6f9"; +} + +.el-icon-inspur-stack-fill:before { + content: "\e6fa"; +} + +.el-icon-inspur-node-tree:before { + content: "\e79f"; +} + +.el-icon-inspur-mind-map:before { + content: "\e7a1"; +} + +.el-icon-inspur-list-check-2:before { + content: "\e7a2"; +} + +.el-icon-inspur-box-open-line:before { + content: "\e647"; +} + +.el-icon-inspur-inbox-line:before { + content: "\e6e9"; +} + +.el-icon-inspur-inbox-fill:before { + content: "\e6eb"; +} + +.el-icon-inspur-dots-sm:before { + content: "\e646"; +} + +.el-icon-inspur-applet-line:before { + content: "\e645"; +} + +.el-icon-inspur-mail-add-line:before { + content: "\e6df"; +} + +.el-icon-inspur-mail-check-fill:before { + content: "\e6e0"; +} + +.el-icon-inspur-mail-check-line:before { + content: "\e6e1"; +} + +.el-icon-inspur-mail-add-fill:before { + content: "\e6e5"; +} + +.el-icon-inspur-mail-close-line:before { + content: "\e6e6"; +} + +.el-icon-inspur-mail-download-line:before { + content: "\e6e7"; +} + +.el-icon-inspur-mail-close-fill:before { + content: "\e6e8"; +} + +.el-icon-inspur-mail-forbid-fill:before { + content: "\e6ea"; +} + +.el-icon-inspur-mail-forbid-line:before { + content: "\e6ec"; +} + +.el-icon-inspur-mail-lock-fill:before { + content: "\e6ed"; +} + +.el-icon-inspur-mail-download-fill:before { + content: "\e6ee"; +} + +.el-icon-inspur-mail-lock-line:before { + content: "\e6ef"; +} + +.el-icon-inspur-mail-open-fill:before { + content: "\e6f0"; +} + +.el-icon-inspur-mail-open-line:before { + content: "\e6f1"; +} + +.el-icon-inspur-mail-send-line:before { + content: "\e6f2"; +} + +.el-icon-inspur-mail-send-fill:before { + content: "\e6f3"; +} + +.el-icon-inspur-mail-settings-line:before { + content: "\e6f4"; +} + +.el-icon-inspur-mail-star-line:before { + content: "\e6f5"; +} + +.el-icon-inspur-mail-star-fill:before { + content: "\e6f6"; +} + +.el-icon-inspur-mail-unread-line:before { + content: "\e6f7"; +} + +.el-icon-inspur-mail-unread-fill:before { + content: "\e6f8"; +} + +.el-icon-inspur-hand-heart-fill:before { + content: "\e641"; +} + +.el-icon-inspur-outlet-2-line:before { + content: "\e642"; +} + +.el-icon-inspur-hand-heart-line:before { + content: "\e643"; +} + +.el-icon-inspur-outlet-2-fill:before { + content: "\e644"; +} + +.el-icon-inspur-user-3-line:before { + content: "\e63f"; +} + +.el-icon-inspur-user-3-fill:before { + content: "\e640"; +} + +.el-icon-inspur-freight-line:before { + content: "\ea06"; +} + +.el-icon-inspur-task-line:before { + content: "\e797"; +} + +.el-icon-inspur-task-fill:before { + content: "\e799"; +} + +.el-icon-inspur-send-plane-fill:before { + content: "\ea63"; +} + +.el-icon-inspur-send-plane-line:before { + content: "\ea64"; +} + +.el-icon-inspur-jisuanqi:before { + content: "\e63b"; +} + +.el-icon-inspur-wangluo1:before { + content: "\e63c"; +} + +.el-icon-inspur-xunijiKVM:before { + content: "\e63d"; +} + +.el-icon-inspur-cunchu:before { + content: "\e63e"; +} + +.el-icon-inspur-bios:before { + content: "\e6db"; +} + +.el-icon-inspur-upgrade-pim:before { + content: "\f012"; +} + +.el-icon-inspur-a-boxcalculator-line:before { + content: "\ea05"; +} + +.el-icon-inspur-cloud-fill:before { + content: "\e6cd"; +} + +.el-icon-inspur-cloud-line:before { + content: "\e6ce"; +} + +.el-icon-inspur-cloud-off-fill:before { + content: "\e6cf"; +} + +.el-icon-inspur-cloud-off-line:before { + content: "\e6d0"; +} + +.el-icon-inspur-change:before { + content: "\f011"; +} + +.el-icon-inspur-draft-fill:before { + content: "\e76c"; +} + +.el-icon-inspur-draft-line:before { + content: "\e77b"; +} + +.el-icon-inspur-zhishiku:before { + content: "\e636"; +} + +.el-icon-inspur-fuwu:before { + content: "\e637"; +} + +.el-icon-inspur-yuzhi:before { + content: "\e638"; +} + +.el-icon-inspur-bujian:before { + content: "\e639"; +} + +.el-icon-inspur-shengji:before { + content: "\e63a"; +} + +.el-icon-inspur-tree-Load-balancing:before { + content: "\e629"; +} + +.el-icon-inspur-tree-change:before { + content: "\e62e"; +} + +.el-icon-inspur-tree-wall:before { + content: "\e62f"; +} + +.el-icon-inspur-tree-waf:before { + content: "\e630"; +} + +.el-icon-inspur-tree-DDoS:before { + content: "\e631"; +} + +.el-icon-inspur-tree-server:before { + content: "\e632"; +} + +.el-icon-inspur-tree-router:before { + content: "\e633"; +} + +.el-icon-inspur-tree-store:before { + content: "\e634"; +} + +.el-icon-inspur-tree-DDoS1:before { + content: "\e635"; +} + +.el-icon-inspur-survey-add-line:before { + content: "\e625"; +} + +.el-icon-inspur-file-mark-fill:before { + content: "\e771"; +} + +.el-icon-inspur-file-mark-line:before { + content: "\e772"; +} + +.el-icon-inspur-honour-line:before { + content: "\e6d9"; +} + +.el-icon-inspur-honour-fill:before { + content: "\e6da"; +} + +.el-icon-inspur-customer-service-2-line:before { + content: "\e6d1"; +} + +.el-icon-inspur-customer-service-fill:before { + content: "\e6d2"; +} + +.el-icon-inspur-customer-service-line:before { + content: "\e6d5"; +} + +.el-icon-inspur-customer-service-2-fill:before { + content: "\e6d6"; +} + +.el-icon-inspur-emotion-happy-fill:before { + content: "\e88c"; +} + +.el-icon-inspur-emotion-line:before { + content: "\e88d"; +} + +.el-icon-inspur-emotion-fill:before { + content: "\e88e"; +} + +.el-icon-inspur-emotion-happy-line:before { + content: "\e88f"; +} + +.el-icon-inspur-upload-fill1:before { + content: "\e61d"; +} + +.el-icon-inspur-upload-line2:before { + content: "\e624"; +} + +.el-icon-inspur-hail-line:before { + content: "\e89a"; +} + +.el-icon-inspur-hail-fill:before { + content: "\e89b"; +} + +.el-icon-inspur-pages-line:before { + content: "\e78d"; +} + +.el-icon-inspur-pages-fill:before { + content: "\e78e"; +} + +.el-icon-inspur-survey-fill:before { + content: "\e78f"; +} + +.el-icon-inspur-survey-line:before { + content: "\e790"; +} + +.el-icon-inspur-todo-fill:before { + content: "\e793"; +} + +.el-icon-inspur-todo-line:before { + content: "\e794"; +} + +.el-icon-inspur-exchange-funds-fill:before { + content: "\e7b4"; +} + +.el-icon-inspur-funds-box-fill:before { + content: "\e7b5"; +} + +.el-icon-inspur-funds-fill:before { + content: "\e7b6"; +} + +.el-icon-inspur-funds-line:before { + content: "\e7b7"; +} + +.el-icon-inspur-funds-box-line:before { + content: "\e7b8"; +} + +.el-icon-inspur-leaf-line:before { + content: "\e830"; +} + +.el-icon-inspur-leaf-fill:before { + content: "\e835"; +} + +.el-icon-inspur-lightbulb-line:before { + content: "\e836"; +} + +.el-icon-inspur-lightbulb-flash-fill:before { + content: "\e837"; +} + +.el-icon-inspur-plant-fill:before { + content: "\e838"; +} + +.el-icon-inspur-plant-line:before { + content: "\e844"; +} + +.el-icon-inspur-voice-recognition-fill:before { + content: "\e845"; +} + +.el-icon-inspur-voice-recognition-line:before { + content: "\e846"; +} + +.el-icon-inspur-function-line:before { + content: "\e85e"; +} + +.el-icon-inspur-team-fill:before { + content: "\e88a"; +} + +.el-icon-inspur-team-line:before { + content: "\e88b"; +} + +.el-icon-inspur-file-shield-fill:before { + content: "\e775"; +} + +.el-icon-inspur-file-shield-2-line:before { + content: "\e779"; +} + +.el-icon-inspur-question:before { + content: "\e714"; +} + +.el-icon-inspur-xiankaleixing:before { + content: "\e623"; +} + +.el-icon-inspur-a-sendmessage-line:before { + content: "\ea60"; +} + +.el-icon-inspur-a-sendmessage-fill:before { + content: "\ea61"; +} + +.el-icon-inspur-neicun:before { + content: "\e627"; +} + +.el-icon-inspur-database-2-line:before { + content: "\e740"; +} + +.el-icon-inspur-database-2-fill:before { + content: "\e741"; +} + +.el-icon-inspur-jiankongguanli:before { + content: "\e6a9"; +} + +.el-icon-inspur-a-computerend-line:before { + content: "\ea62"; +} + +.el-icon-inspur-a-computermore-line:before { + content: "\ea65"; +} + +.el-icon-inspur-a-computerpublic-line:before { + content: "\ea66"; +} + +.el-icon-inspur-computer-fill:before { + content: "\ea67"; +} + +.el-icon-inspur-a-computermovement-fill:before { + content: "\ea68"; +} + +.el-icon-inspur-a-computermore-fill:before { + content: "\ea6a"; +} + +.el-icon-inspur-a-computerwarning-line:before { + content: "\ea6e"; +} + +.el-icon-inspur-a-computertrend-fill:before { + content: "\ea6f"; +} + +.el-icon-inspur-a-computerset-fill:before { + content: "\ea70"; +} + +.el-icon-inspur-compose-line:before { + content: "\ea71"; +} + +.el-icon-inspur-compose-fill:before { + content: "\ea72"; +} + +.el-icon-inspur-a-computerend-fill:before { + content: "\ea73"; +} + +.el-icon-inspur-a-computererror-line:before { + content: "\ea74"; +} + +.el-icon-inspur-a-computervolatility-fill:before { + content: "\ea75"; +} + +.el-icon-inspur-a-computererror-fill:before { + content: "\ea76"; +} + +.el-icon-inspur-a-computerset-line:before { + content: "\ea77"; +} + +.el-icon-inspur-a-computertrend-line:before { + content: "\ea78"; +} + +.el-icon-inspur-a-computervolatility-line:before { + content: "\ea79"; +} + +.el-icon-inspur-computer-line:before { + content: "\ea7a"; +} + +.el-icon-inspur-a-computerpublic-fill:before { + content: "\ea7b"; +} + +.el-icon-inspur-a-doublerightline-line:before { + content: "\e9e6"; +} + +.el-icon-inspur-a-doubleleftline-line:before { + content: "\ea5f"; +} + +.el-icon-inspur-drag-move-line:before { + content: "\e713"; +} + +.el-icon-inspur-flashlight-fill:before { + content: "\e898"; +} + +.el-icon-inspur-flashlight-line:before { + content: "\e899"; +} + +.el-icon-inspur-adhibition-line:before { + content: "\e9e5"; +} + +.el-icon-inspur-net:before { + content: "\e64b"; +} + +.el-icon-inspur-a-timershaft-fill:before { + content: "\ea5c"; +} + +.el-icon-inspur-a-timershaft-line:before { + content: "\ea5e"; +} + +.el-icon-inspur-subtract-fill:before { + content: "\e87a"; +} + +.el-icon-inspur-subtract-line:before { + content: "\e889"; +} + +.el-icon-inspur-menu-line:before { + content: "\e867"; +} + +.el-icon-inspur-download1-line:before { + content: "\e93b"; +} + +.el-icon-inspur-upload1-line:before { + content: "\e942"; +} + +.el-icon-inspur-close-line:before { + content: "\e8ee"; +} + +.el-icon-inspur-close-fill:before { + content: "\e8ef"; +} + +.el-icon-inspur--out:before { + content: "\ee89"; +} + +.el-icon-inspur-grid-fill:before { + content: "\e712"; +} + +.el-icon-inspur-unhealth-fill:before { + content: "\efdb"; +} + +.el-icon-inspur-health:before { + content: "\efdc"; +} + +.el-icon-inspur-unhealth:before { + content: "\efdd"; +} + +.el-icon-inspur-health-fill:before { + content: "\efde"; +} + +.el-icon-inspur-article-fill:before { + content: "\ea5d"; +} + +.el-icon-inspur-hotel-line:before { + content: "\e6bb"; +} + +.el-icon-inspur-hotel-fill:before { + content: "\e6bc"; +} + +.el-icon-inspur-building-fill1:before { + content: "\e6b1"; +} + +.el-icon-inspur-building-line:before { + content: "\e6b2"; +} + +.el-icon-inspur-danban:before { + content: "\e61c"; +} + +.el-icon-inspur-server-circle1:before { + content: "\e61a"; +} + +.el-icon-inspur-port:before { + content: "\e611"; +} + +.el-icon-inspur-waf:before { + content: "\e617"; +} + +.el-icon-inspur-ddos:before { + content: "\e616"; +} + +.el-icon-inspur-control-circle1:before { + content: "\e615"; +} + +.el-icon-inspur-d:before { + content: "\e614"; +} + +.el-icon-inspur-brush-3-fill:before { + content: "\e708"; +} + +.el-icon-inspur-brush-3-line:before { + content: "\e709"; +} + +.el-icon-inspur-water-flash-fill:before { + content: "\e7bc"; +} + +.el-icon-inspur-water-flash-line:before { + content: "\e7bd"; +} + +.el-icon-inspur-coupon-4-circle:before { + content: "\e613"; +} + +.el-icon-inspur-lun-circle:before { + content: "\e60d"; +} + +.el-icon-inspur-book-2-circle:before { + content: "\e60e"; +} + +.el-icon-inspur-iscsi-circle:before { + content: "\e60f"; +} + +.el-icon-inspur-fan-circle:before { + content: "\e610"; +} + +.el-icon-inspur-store-circle1:before { + content: "\e612"; +} + +.el-icon-inspur-book-2-fill:before { + content: "\e75c"; +} + +.el-icon-inspur-book-2-line:before { + content: "\e75d"; +} + +.el-icon-inspur-archive-drawer-fill:before { + content: "\e6be"; +} + +.el-icon-inspur-archive-drawer-line:before { + content: "\e6bf"; +} + +.el-icon-inspur-control:before { + content: "\e618"; +} + +.el-icon-inspur-iscsi:before { + content: "\e619"; +} + +.el-icon-inspur-lun:before { + content: "\e61b"; +} + +.el-icon-inspur-store-fill:before { + content: "\f014"; +} + +.el-icon-inspur-store:before { + content: "\f015"; +} + +.el-icon-inspur-shield-check-fill:before { + content: "\e8db"; +} + +.el-icon-inspur-shield-check-line:before { + content: "\e8dc"; +} + +.el-icon-inspur-shield-cross-fill:before { + content: "\e8dd"; +} + +.el-icon-inspur-shield-cross-line:before { + content: "\e8df"; +} + +.el-icon-inspur-file-list-2-fill:before { + content: "\e76d"; +} + +.el-icon-inspur-file-list-3-fill:before { + content: "\e76e"; +} + +.el-icon-inspur-file-list-3-line:before { + content: "\e76f"; +} + +.el-icon-inspur-file-list-2-line:before { + content: "\e770"; +} + +.el-icon-inspur-node-fill:before { + content: "\ef83"; +} + +.el-icon-inspur-node:before { + content: "\ef84"; +} + +.el-icon-inspur-file-text-fill:before { + content: "\e777"; +} + +.el-icon-inspur-file-text-line:before { + content: "\e778"; +} + +.el-icon-inspur-anticlockwise-2-line:before { + content: "\e700"; +} + +.el-icon-inspur-anticlockwise-fill:before { + content: "\e701"; +} + +.el-icon-inspur-anticlockwise-2-fill:before { + content: "\e702"; +} + +.el-icon-inspur-anticlockwise-line:before { + content: "\e703"; +} + +.el-icon-inspur-artboard-2-line:before { + content: "\e704"; +} + +.el-icon-inspur-artboard-2-fill:before { + content: "\e705"; +} + +.el-icon-inspur-clockwise-2-fill:before { + content: "\e706"; +} + +.el-icon-inspur-clockwise-line:before { + content: "\e707"; +} + +.el-icon-inspur-contacts-book-2-fill:before { + content: "\e760"; +} + +.el-icon-inspur-contacts-book-2-line:before { + content: "\e761"; +} + +.el-icon-inspur-contacts-book-fill:before { + content: "\e762"; +} + +.el-icon-inspur-contacts-book-line:before { + content: "\e763"; +} + +.el-icon-inspur-mini-program-line:before { + content: "\e7d6"; +} + +.el-icon-inspur-mini-program-fill:before { + content: "\e7d7"; +} + +.el-icon-inspur-map-pin-line:before { + content: "\e7ef"; +} + +.el-icon-inspur-map-pin-fill:before { + content: "\e7f0"; +} + +.el-icon-inspur-book-mark-line:before { + content: "\e75f"; +} + +.el-icon-inspur-file-chart-2-line:before { + content: "\e764"; +} + +.el-icon-inspur-file-chart-2-fill:before { + content: "\e769"; +} + +.el-icon-inspur-laptop-set-fill:before { + content: "\e60c"; +} + +.el-icon-inspur-links-fill:before { + content: "\e6d7"; +} + +.el-icon-inspur-links-line:before { + content: "\e6d8"; +} + +.el-icon-inspur-link-m:before { + content: "\e79b"; +} + +.el-icon-inspur-link-unlink-m:before { + content: "\e79c"; +} + +.el-icon-inspur-link-unlink:before { + content: "\e79d"; +} + +.el-icon-inspur-link:before { + content: "\e79e"; +} + +.el-icon-inspur-star-smile-fill:before { + content: "\e887"; +} + +.el-icon-inspur-star-smile-line:before { + content: "\e888"; +} + +.el-icon-inspur-download-line:before { + content: "\e608"; +} + +.el-icon-inspur-download-fill:before { + content: "\e609"; +} + +.el-icon-inspur-upload-line:before { + content: "\e60a"; +} + +.el-icon-inspur-upload-fill:before { + content: "\e60b"; +} + +.el-icon-inspur-top-cn:before { + content: "\e606"; +} + +.el-icon-inspur-top-en:before { + content: "\e607"; +} + +.el-icon-inspur-cpu-line-bg:before { + content: "\e62a"; +} + +.el-icon-inspur-plug-line-bg:before { + content: "\e62b"; +} + +.el-icon-inspur-fan-line-bg:before { + content: "\e62c"; +} + +.el-icon-inspur-save-line-bg:before { + content: "\e62d"; +} + +.el-icon-inspur-save-fill:before { + content: "\e74e"; +} + +.el-icon-inspur-save-line:before { + content: "\e74f"; +} + +.el-icon-inspur-fan:before { + content: "\f668"; +} + +.el-icon-inspur-cpu-fill:before { + content: "\e73e"; +} + +.el-icon-inspur-cpu-line:before { + content: "\e73f"; +} + +.el-icon-inspur-details-rack:before { + content: "\efb4"; +} + +.el-icon-inspur-details-server:before { + content: "\efb5"; +} + +.el-icon-inspur-details-firewall:before { + content: "\efb6"; +} + +.el-icon-inspur-details-cutte:before { + content: "\efb7"; +} + +.el-icon-inspur-details-store-fill:before { + content: "\f076"; +} + +.el-icon-inspur-details-fram:before { + content: "\f077"; +} + +.el-icon-inspur-details-safe:before { + content: "\f078"; +} + +.el-icon-inspur-picture-in-picture-exit-fill:before { + content: "\e81f"; +} + +.el-icon-inspur-picture-in-picture-exit-line:before { + content: "\e821"; +} + +.el-icon-inspur-vidicon-2-fill:before { + content: "\e822"; +} + +.el-icon-inspur-vidicon-2-line:before { + content: "\e823"; +} + +.el-icon-inspur-restart:before { + content: "\f069"; +} + +.el-icon-inspur-a-switchoff-line:before { + content: "\ea5a"; +} + +.el-icon-inspur-a-switchon-line:before { + content: "\ea5b"; +} + +.el-icon-inspur-server-line:before { + content: "\e791"; +} + +.el-icon-inspur-server-fill1:before { + content: "\e792"; +} + +.el-icon-inspur-router-line:before { + content: "\e74c"; +} + +.el-icon-inspur-router-fill:before { + content: "\e74d"; +} + +.el-icon-inspur-flow-chart:before { + content: "\e795"; +} + +.el-icon-inspur-organization-chart:before { + content: "\e7a0"; +} + +.el-icon-inspur-account-circle-fill:before { + content: "\e885"; +} + +.el-icon-inspur-account-circle-line:before { + content: "\e886"; +} + +.el-icon-inspur-arrow-left-circle-fill:before { + content: "\e841"; +} + +.el-icon-inspur-arrow-left-circle-line:before { + content: "\e843"; +} + +.el-icon-inspur-arrow-right-circle-fill:before { + content: "\e842"; +} + +.el-icon-inspur-arrow-right-circle-line:before { + content: "\e857"; +} + +.el-icon-inspur-file-edit-line:before { + content: "\e76a"; +} + +.el-icon-inspur-file-edit-fill:before { + content: "\e76b"; +} + +.el-icon-inspur-pie-chart-fill:before { + content: "\e6e3"; +} + +.el-icon-inspur-pie-chart-line:before { + content: "\e6e4"; +} + +.el-icon-inspur-up-mirror-image:before { + content: "\e602"; +} + +.el-icon-inspur-up-borderverticle-fill:before { + content: "\e603"; +} + +.el-icon-inspur-search-add:before { + content: "\e604"; +} + +.el-icon-inspur-search-min:before { + content: "\e605"; +} + +.el-icon-inspur-rocket-line:before { + content: "\e7f4"; +} + +.el-icon-inspur-rocket-fill:before { + content: "\e7f3"; +} + +.el-icon-inspur-dashboard-3-fill:before { + content: "\e73c"; +} + +.el-icon-inspur-dashboard-3-line:before { + content: "\e73d"; +} + +.el-icon-inspur-exchange-funds-line:before { + content: "\e7b2"; +} + +.el-icon-inspur-time-fill:before { + content: "\e883"; +} + +.el-icon-inspur-time-line:before { + content: "\e884"; +} + +.el-icon-inspur-timer-fill:before { + content: "\ea58"; +} + +.el-icon-inspur-timer-line:before { + content: "\ea59"; +} + +.el-icon-inspur-edit-box-fill:before { + content: "\e70f"; +} + +.el-icon-inspur-edit-box-line:before { + content: "\e710"; +} + +.el-icon-inspur-eye-close-line:before { + content: "\e939"; +} + +.el-icon-inspur-eye-close-fill:before { + content: "\e93a"; +} + +.el-icon-inspur-eye-off-fill:before { + content: "\e93d"; +} + +.el-icon-inspur-arrow-drop-down-line:before { + content: "\e951"; +} + +.el-icon-inspur-arrow-drop-down-fill:before { + content: "\e952"; +} + +.el-icon-inspur-arrow-drop-left-line:before { + content: "\e953"; +} + +.el-icon-inspur-arrow-drop-left-fill:before { + content: "\e954"; +} + +.el-icon-inspur-arrow-drop-right-line:before { + content: "\e956"; +} + +.el-icon-inspur-arrow-drop-right-fill:before { + content: "\e957"; +} + +.el-icon-inspur-arrow-drop-up-fill:before { + content: "\e959"; +} + +.el-icon-inspur-arrow-drop-up-line:before { + content: "\e95a"; +} + +.el-icon-inspur-arrow-left-s-fill:before { + content: "\e961"; +} + +.el-icon-inspur-arrow-right-s-fill:before { + content: "\e96b"; +} + +.el-icon-inspur-eye-fill:before { + content: "\e937"; +} + +.el-icon-inspur-eye-line:before { + content: "\e938"; +} + +.el-icon-inspur-drag-move-2-line:before { + content: "\e716"; +} + +.el-icon-inspur-drag-move-fill:before { + content: "\e712"; +} + +.el-icon-inspur-alignleft-fill:before { + content: "\ee95"; +} + +.el-icon-inspur-borderbottom-fill:before { + content: "\ee96"; +} + +.el-icon-inspur--alignright-fill:before { + content: "\ee97"; +} + +.el-icon-inspur-bordertop-fill:before { + content: "\ee98"; +} + +.el-icon-inspur-picside-fill:before { + content: "\ee99"; +} + +.el-icon-inspur-borderverticle-fill:before { + content: "\ee9a"; +} + +.el-icon-inspur-piccenter-fill:before { + content: "\ee9b"; +} + +.el-icon-inspur-mirror-image:before { + content: "\f022"; +} + +.el-icon-inspur-drag-drop-fill:before { + content: "\e711"; +} + +.el-icon-inspur-machine-room:before { + content: "\e628"; +} + +.el-icon-inspur-wall:before { + content: "\e626"; +} + +.el-icon-inspur-arrow-down-line:before { + content: "\e94b"; +} + +.el-icon-inspur-arrow-left-line:before { + content: "\e95d"; +} + +.el-icon-inspur-arrow-right-line:before { + content: "\e969"; +} + +.el-icon-inspur-arrow-up-line:before { + content: "\e971"; +} + +.el-icon-inspur-account-pin-circle-line:before { + content: "\e881"; +} + +.el-icon-inspur-account-pin-circle-fill:before { + content: "\e882"; +} + +.el-icon-inspur-search-line1:before { + content: "\e870"; +} + +.el-icon-inspur-heart-2-fill:before { + content: "\e7bf"; +} + +.el-icon-inspur-heart-2-line:before { + content: "\e7c0"; +} + +.el-icon-inspur-shield-keyhole-fill:before { + content: "\e877"; +} + +.el-icon-inspur-shield-keyhole-line:before { + content: "\e878"; +} + +.el-icon-inspur-edit-lock-fill:before { + content: "\f053"; +} + +.el-icon-inspur-signal-wifi-1-fill:before { + content: "\e750"; +} + +.el-icon-inspur-signal-wifi-2-fill:before { + content: "\e751"; +} + +.el-icon-inspur-signal-wifi-1-line:before { + content: "\e752"; +} + +.el-icon-inspur-signal-wifi-3-line:before { + content: "\e753"; +} + +.el-icon-inspur-signal-wifi-3-fill:before { + content: "\e754"; +} + +.el-icon-inspur-signal-wifi-2-line:before { + content: "\e755"; +} + +.el-icon-inspur-signal-wifi-error-line:before { + content: "\e756"; +} + +.el-icon-inspur-wifi-line:before { + content: "\e758"; +} + +.el-icon-inspur-wifi-off-line:before { + content: "\e759"; +} + +.el-icon-inspur-wifi-off-fill:before { + content: "\e75a"; +} + +.el-icon-inspur-wifi-fill:before { + content: "\e75b"; +} + +.el-icon-inspur-upload-2-fill:before { + content: "\e87f"; +} + +.el-icon-inspur-upload-2-line:before { + content: "\e880"; +} + +.el-icon-inspur-bar-chart-2-line:before { + content: "\e6c0"; +} + +.el-icon-inspur-bar-chart-fill:before { + content: "\e6c1"; +} + +.el-icon-inspur-file-copy-2-fill:before { + content: "\e767"; +} + +.el-icon-inspur-file-copy-2-line:before { + content: "\e768"; +} + +.el-icon-inspur-waiting-fill:before { + content: "\efcb"; +} + +.el-icon-inspur-waiting:before { + content: "\efcc"; +} + +.el-icon-inspur-up-f:before { + content: "\ef61"; +} + +.el-icon-inspur-down-f:before { + content: "\ef62"; +} + +.el-icon-inspur-left-f:before { + content: "\ef63"; +} + +.el-icon-inspur-right-f:before { + content: "\ef64"; +} + +.el-icon-inspur-chart-area:before { + content: "\ef69"; +} + +.el-icon-inspur-chart-line:before { + content: "\ef6a"; +} + +.el-icon-inspur-chart-bar:before { + content: "\ef6c"; +} + +.el-icon-inspur-chart-pointmap:before { + content: "\ef6d"; +} + +.el-icon-inspur-certificate-fill:before { + content: "\f065"; +} + +.el-icon-inspur-monitor-circle:before { + content: "\f06a"; +} + +.el-icon-inspur-store-circle:before { + content: "\f06b"; +} + +.el-icon-inspur-server-circle:before { + content: "\f06c"; +} + +.el-icon-inspur-firewall-circle:before { + content: "\f06d"; +} + +.el-icon-inspur-change-circle:before { + content: "\f06e"; +} + +.el-icon-inspur-nic-circle:before { + content: "\f06f"; +} + +.el-icon-inspur-mail-volume-line:before { + content: "\e6de"; +} + +.el-icon-inspur-mail-volume-fill:before { + content: "\e6e2"; +} + +.el-icon-inspur-search-eye-fill:before { + content: "\e86e"; +} + +.el-icon-inspur-search-eye-line:before { + content: "\e86f"; +} + +.el-icon-inspur-restart-line:before { + content: "\e74a"; +} + +.el-icon-inspur-restart-fill:before { + content: "\e74b"; +} + +.el-icon-inspur-ongoing:before { + content: "\e601"; +} + +.el-icon-inspur-pause-circle-fill:before { + content: "\e80f"; +} + +.el-icon-inspur-pause-circle-line:before { + content: "\e810"; +} + +.el-icon-inspur-play-circle-fill:before { + content: "\e811"; +} + +.el-icon-inspur-play-circle-line:before { + content: "\e812"; +} + +.el-icon-inspur-timer-2-fill:before { + content: "\e87b"; +} + +.el-icon-inspur-timer-2-line:before { + content: "\e87e"; +} + +.el-icon-inspur-file-chart-line:before { + content: "\e765"; +} + +.el-icon-inspur-file-chart-fill:before { + content: "\e766"; +} + +.el-icon-inspur-file-transfer-fill:before { + content: "\e776"; +} + +.el-icon-inspur-file-transfer-line:before { + content: "\e77a"; +} + +.el-icon-inspur-file-search-fill:before { + content: "\e773"; +} + +.el-icon-inspur-file-search-line:before { + content: "\e774"; +} + +.el-icon-inspur-exchange-box-fill:before { + content: "\e7ae"; +} + +.el-icon-inspur-exchange-box-line:before { + content: "\e7b0"; +} + +.el-icon-inspur-volume-vibrate-line:before { + content: "\e826"; +} + +.el-icon-inspur-volume-vibrate-fill:before { + content: "\e827"; +} + +.el-icon-inspur-alarm-fill:before { + content: "\e83b"; +} + +.el-icon-inspur-alarm-line:before { + content: "\e840"; +} + +.el-icon-inspur-laptop-check:before { + content: "\ef74"; +} + +.el-icon-inspur-laptop-error:before { + content: "\ef78"; +} + +.el-icon-inspur-laptop-check-fill:before { + content: "\efdf"; +} + +.el-icon-inspur-laptop-error-fill:before { + content: "\efe0"; +} + +.el-icon-inspur-a-statisticalviewpiechart-line:before { + content: "\ea56"; +} + +.el-icon-inspur-a-statisticalviewpiechart2-fill:before { + content: "\ea57"; +} + +.el-icon-inspur-hard-drive-2-fill:before { + content: "\e99f"; +} + +.el-icon-inspur-hard-drive-2-line:before { + content: "\e9a0"; +} + +.el-icon-inspur-spot:before { + content: "\f02e"; +} + +.el-icon-inspur-question-fill1:before { + content: "\e86a"; +} + +.el-icon-inspur-question-line1:before { + content: "\e86b"; +} + +.el-icon-inspur-table-fire:before { + content: "\efc2"; +} + +.el-icon-inspur-table-fire-fill:before { + content: "\efc3"; +} + +.el-icon-inspur-table-imperative-fill:before { + content: "\efc4"; +} + +.el-icon-inspur-table-lightning:before { + content: "\efc5"; +} + +.el-icon-inspur-table-water:before { + content: "\efc8"; +} + +.el-icon-inspur-table-imperative:before { + content: "\efc9"; +} + +.el-icon-inspur-table-lightning-fill:before { + content: "\efca"; +} + +.el-icon-inspur-table-water-fill:before { + content: "\efcd"; +} + +.el-icon-inspur-exclamation-circle:before { + content: "\efd0"; +} + +.el-icon-inspur-info-circle-fill:before { + content: "\efd1"; +} + +.el-icon-inspur-info-circle:before { + content: "\efd2"; +} + +.el-icon-inspur-exclamationcircle-f:before { + content: "\efd3"; +} + +.el-icon-inspur-table-condition-fill:before { + content: "\efcf"; +} + +.el-icon-inspur-table-condition:before { + content: "\efd4"; +} + +.el-icon-inspur-details-distributed:before { + content: "\f055"; +} + +.el-icon-inspur-details-change:before { + content: "\f056"; +} + +.el-icon-inspur-database-save-fill:before { + content: "\f057"; +} + +.el-icon-inspur-details-router:before { + content: "\f058"; +} + +.el-icon-inspur-details-nic:before { + content: "\f059"; +} + +.el-icon-inspur-details-sdn:before { + content: "\f05a"; +} + +.el-icon-inspur-details-monitor:before { + content: "\f05b"; +} + +.el-icon-inspur-save-set-fill:before { + content: "\f05c"; +} + +.el-icon-inspur-details-store:before { + content: "\f05d"; +} + +.el-icon-inspur-details-3d:before { + content: "\f060"; +} + +.el-icon-inspur-details-rule:before { + content: "\f061"; +} + +.el-icon-inspur-details-building:before { + content: "\f062"; +} + +.el-icon-inspur-details-ips:before { + content: "\f063"; +} + +.el-icon-inspur-mail-fill:before { + content: "\e6dc"; +} + +.el-icon-inspur-mail-line:before { + content: "\e6dd"; +} + +.el-icon-inspur-checkbox-circle-line:before { + content: "\e8ca"; +} + +.el-icon-inspur-checkbox-circle-fill:before { + content: "\e8cb"; +} + +.el-icon-inspur-checkbox-fill:before { + content: "\e8cc"; +} + +.el-icon-inspur-checkbox-indeterminate-fill:before { + content: "\e8cd"; +} + +.el-icon-inspur-checkbox-line:before { + content: "\e8ce"; +} + +.el-icon-inspur-checkbox-multiple-blank-fill:before { + content: "\e8cf"; +} + +.el-icon-inspur-checkbox-indeterminate-line:before { + content: "\e8d0"; +} + +.el-icon-inspur-checkbox-multiple-blank-line:before { + content: "\e8d1"; +} + +.el-icon-inspur-checkbox-multiple-line:before { + content: "\e8d2"; +} + +.el-icon-inspur-close-circle-fill:before { + content: "\e8d3"; +} + +.el-icon-inspur-checkbox-multiple-fill:before { + content: "\e8d4"; +} + +.el-icon-inspur-close-circle-line:before { + content: "\e8d5"; +} + +.el-icon-inspur-train-fill:before { + content: "\ef97"; +} + +.el-icon-inspur-train:before { + content: "\ef98"; +} + +.el-icon-inspur-reply-fill:before { + content: "\e981"; +} + +.el-icon-inspur-reply-line:before { + content: "\e982"; +} + +.el-icon-inspur-arrow-down-s-fill:before { + content: "\e94d"; +} + +.el-icon-inspur-arrow-down-s-line:before { + content: "\e94e"; +} + +.el-icon-inspur-arrow-left-s-line:before { + content: "\e962"; +} + +.el-icon-inspur-arrow-right-s-line:before { + content: "\e96c"; +} + +.el-icon-inspur-arrow-up-s-fill:before { + content: "\e97a"; +} + +.el-icon-inspur-arrow-up-s-line:before { + content: "\e97c"; +} + +.el-icon-inspur-arrow-go-back-fill:before { + content: "\e955"; +} + +.el-icon-inspur-arrow-go-forward-fill:before { + content: "\e958"; +} + +.el-icon-inspur-checkbox-plus-fill:before { + content: "\eff4"; +} + +.el-icon-inspur-checkbox-plus-line:before { + content: "\f04a"; +} + +.el-icon-inspur-refresh-fill:before { + content: "\e86c"; +} + +.el-icon-inspur-refresh-line:before { + content: "\e86d"; +} + +.el-icon-inspur-a-documentationupload-fill:before { + content: "\ea18"; +} + +.el-icon-inspur-a-documentationupload-line:before { + content: "\ea55"; +} + +.el-icon-inspur-eraser-fill1:before { + content: "\ea17"; +} + +.el-icon-inspur-a-texteditoreraser-line:before { + content: "\ea54"; +} + +.el-icon-inspur-edit-2-fill:before { + content: "\e70b"; +} + +.el-icon-inspur-edit-2-line:before { + content: "\e70c"; +} + +.el-icon-inspur-article-line:before { + content: "\ea11"; +} + +.el-icon-inspur-sweep-line:before { + content: "\ea52"; +} + +.el-icon-inspur-sweep-fill:before { + content: "\ea53"; +} + +.el-icon-inspur-a-refresh1-line:before { + content: "\ea10"; +} + +.el-icon-inspur-shift-fill:before { + content: "\ea50"; +} + +.el-icon-inspur-shift-line:before { + content: "\ea51"; +} + +.el-icon-inspur-a-filesecurity-line:before { + content: "\ea16"; +} + +.el-icon-inspur-a-router5-line:before { + content: "\ea19"; +} + +.el-icon-inspur-a-router5-fill:before { + content: "\ea4f"; +} + +.el-icon-inspur-a-fileremind-fill:before { + content: "\ea0e"; +} + +.el-icon-inspur-a-fileremind-line:before { + content: "\ea0f"; +} + +.el-icon-inspur-remind-line:before { + content: "\ea14"; +} + +.el-icon-inspur-remind-fill:before { + content: "\ea15"; +} + +.el-icon-inspur-a-handHeart-fill:before { + content: "\ea12"; +} + +.el-icon-inspur-a-handHeart-line:before { + content: "\ea13"; +} + +.el-icon-inspur-a-filemanagement-fill:before { + content: "\ea0c"; +} + +.el-icon-inspur-a-filemanagement-line:before { + content: "\ea0d"; +} + +.el-icon-inspur-cash-fill:before { + content: "\ea04"; +} + +.el-icon-inspur-cash-line:before { + content: "\ea0b"; +} + +.el-icon-inspur-a-filedrafttext-fill:before { + content: "\e9ea"; +} + +.el-icon-inspur-a-filedrafttext-line:before { + content: "\e9f1"; +} + +.el-icon-inspur-a-filehistory-fill:before { + content: "\e9f2"; +} + +.el-icon-inspur-a-filehistory-line:before { + content: "\e9ff"; +} + +.el-icon-inspur-a-filetext-line:before { + content: "\ea02"; +} + +.el-icon-inspur-a-filetext-fill:before { + content: "\ea03"; +} + +.el-icon-inspur-news-fill:before { + content: "\e9fc"; +} + +.el-icon-inspur-news-line:before { + content: "\e9fe"; +} + +.el-icon-inspur-a-package1-fill:before { + content: "\ea00"; +} + +.el-icon-inspur-a-package1-line:before { + content: "\ea01"; +} + +.el-icon-inspur-a-userset-line:before { + content: "\ea4d"; +} + +.el-icon-inspur-a-userset-fill:before { + content: "\ea4e"; +} + +.el-icon-inspur-a-annalupload-line:before { + content: "\e9dc"; +} + +.el-icon-inspur-a-annalupload-fill:before { + content: "\e9e9"; +} + +.el-icon-inspur-currency-line:before { + content: "\e7af"; +} + +.el-icon-inspur-currency-fill:before { + content: "\e7b1"; +} + +.el-icon-inspur-a-statisticalviewpiechart3-fill:before { + content: "\ea48"; +} + +.el-icon-inspur-a-statisticalviewpiechart3-line:before { + content: "\ea49"; +} + +.el-icon-inspur-a-structure6-fill:before { + content: "\ea4a"; +} + +.el-icon-inspur-a-structure6-line:before { + content: "\ea4c"; +} + +.el-icon-inspur-service-fill:before { + content: "\e7b9"; +} + +.el-icon-inspur-service-line:before { + content: "\e7ba"; +} + +.el-icon-inspur-mobileharddrive-line:before { + content: "\e9f7"; +} + +.el-icon-inspur-mobileharddrive-fill:before { + content: "\e9fa"; +} + +.el-icon-inspur-global-fill:before { + content: "\e6d3"; +} + +.el-icon-inspur-global-line:before { + content: "\e6d4"; +} + +.el-icon-inspur-camera-fill:before { + content: "\e7fe"; +} + +.el-icon-inspur-camera-line:before { + content: "\e7ff"; +} + +.el-icon-inspur-equalizer-fill:before { + content: "\e802"; +} + +.el-icon-inspur-equalizer-line:before { + content: "\e803"; +} + +.el-icon-inspur-notification-4-fill:before { + content: "\e80b"; +} + +.el-icon-inspur-notification-4-line:before { + content: "\e80c"; +} + +.el-icon-inspur-notification-off-line:before { + content: "\e80d"; +} + +.el-icon-inspur-notification-off-fill:before { + content: "\e80e"; +} + +.el-icon-inspur-earth-fill:before { + content: "\e7eb"; +} + +.el-icon-inspur-earth-line:before { + content: "\e7ec"; +} + +.el-icon-inspur-a3D:before { + content: "\efd7"; +} + +.el-icon-inspur-eraser-fill:before { + content: "\e70d"; +} + +.el-icon-inspur-eraser-line:before { + content: "\e70e"; +} + +.el-icon-inspur-playcircle-fill:before { + content: "\ef99"; +} + +.el-icon-inspur-pausecircle-fill:before { + content: "\ef9b"; +} + +.el-icon-inspur-playcircle:before { + content: "\ef9d"; +} + +.el-icon-inspur-pausecircle:before { + content: "\ef9e"; +} + +.el-icon-inspur-door-closed-fill:before { + content: "\e82b"; +} + +.el-icon-inspur-door-closed-line:before { + content: "\e82c"; +} + +.el-icon-inspur-door-line:before { + content: "\e82d"; +} + +.el-icon-inspur-door-open-fill:before { + content: "\e82e"; +} + +.el-icon-inspur-door-open-line:before { + content: "\e82f"; +} + +.el-icon-inspur-plug-2-fill:before { + content: "\e831"; +} + +.el-icon-inspur-plug-2-line:before { + content: "\e832"; +} + +.el-icon-inspur-plug-fill:before { + content: "\e833"; +} + +.el-icon-inspur-plug-line:before { + content: "\e834"; +} + +.el-icon-inspur-add-line:before { + content: "\e839"; +} + +.el-icon-inspur-add-fill:before { + content: "\e83a"; +} + +.el-icon-inspur-apps-2-line:before { + content: "\e83c"; +} + +.el-icon-inspur-apps-2-fill:before { + content: "\e83d"; +} + +.el-icon-inspur-apps-fill:before { + content: "\e83e"; +} + +.el-icon-inspur-apps-line:before { + content: "\e83f"; +} + +.el-icon-inspur-check-line:before { + content: "\e847"; +} + +.el-icon-inspur-check-fill:before { + content: "\e848"; +} + +.el-icon-inspur-delete-bin-6-line:before { + content: "\e84f"; +} + +.el-icon-inspur-delete-bin-6-fill:before { + content: "\e850"; +} + +.el-icon-inspur-share-forward-fill:before { + content: "\e874"; +} + +.el-icon-inspur-share-forward-line:before { + content: "\e875"; +} + +.el-icon-inspur-toggle-fill:before { + content: "\e87c"; +} + +.el-icon-inspur-toggle-line:before { + content: "\e87d"; +} + +.el-icon-inspur-celsius-line:before { + content: "\e895"; +} + +.el-icon-inspur-notice-fill:before { + content: "\e9fb"; +} + +.el-icon-inspur-notice-line:before { + content: "\e9fd"; +} + +.el-icon-inspur-network-fill:before { + content: "\f018"; +} + +.el-icon-inspur-network:before { + content: "\f019"; +} + +.el-icon-inspur-indeterminate-circle-fill:before { + content: "\e85b"; +} + +.el-icon-inspur-indeterminate-circle-line:before { + content: "\e85c"; +} + +.el-icon-inspur-information-fill:before { + content: "\e85d"; +} + +.el-icon-inspur-information-line:before { + content: "\e85f"; +} + +.el-icon-inspur-error-warning-fill:before { + content: "\ea47"; +} + +.el-icon-inspur-error-warning-line:before { + content: "\e853"; +} + +.el-icon-inspur-stop-circle-fill:before { + content: "\e9f8"; +} + +.el-icon-inspur-stop-circle-line:before { + content: "\e9f9"; +} + +.el-icon-inspur-signal:before { + content: "\e621"; +} + +.el-icon-inspur-a-4G:before { + content: "\e61e"; +} + +.el-icon-inspur-a-5g:before { + content: "\e61f"; +} + +.el-icon-inspur-a-2G:before { + content: "\e620"; +} + +.el-icon-inspur-a-3G:before { + content: "\e622"; +} + +.el-icon-inspur-alert-line:before { + content: "\ea09"; +} + +.el-icon-inspur-alert-fill:before { + content: "\ea0a"; +} + +.el-icon-inspur-a-billsother1-fill:before { + content: "\e9da"; +} + +.el-icon-inspur-a-billsother1-line:before { + content: "\e9db"; +} + +.el-icon-inspur-a-bills5-fill:before { + content: "\e9d8"; +} + +.el-icon-inspur-a-bills4-line:before { + content: "\e9d9"; +} + +.el-icon-inspur-calendar-todo-fill:before { + content: "\e6cb"; +} + +.el-icon-inspur-calendar-todo-line:before { + content: "\e6cc"; +} + +.el-icon-inspur-settings-3-line:before { + content: "\ea45"; +} + +.el-icon-inspur-settings-5-fill:before { + content: "\ea46"; +} + +.el-icon-inspur-dashboard:before { + content: "\e72b"; +} + +.el-icon-inspur-dashboard-fill:before { + content: "\e72c"; +} + +.el-icon-inspur-message:before { + content: "\e73a"; +} + +.el-icon-inspur-message-fill:before { + content: "\e73b"; +} + +.el-icon-inspur-chat-group-fill:before { + content: "\ef7d"; +} + +.el-icon-inspur-chat-group:before { + content: "\ef7e"; +} + +.el-icon-inspur-alarm-warning-fill:before { + content: "\e941"; +} + +.el-icon-inspur-alarm-warning-line:before { + content: "\e947"; +} + +.el-icon-inspur-a-projectionscreen-line:before { + content: "\ea07"; +} + +.el-icon-inspur-a-projectionscreen-fill:before { + content: "\ea08"; +} + +.el-icon-inspur-admonish-fill:before { + content: "\e9d6"; +} + +.el-icon-inspur-admonish-line:before { + content: "\e9d7"; +} + +.el-icon-inspur-a-computerproportion-fill:before { + content: "\e9e7"; +} + +.el-icon-inspur-a-computerproportion-line:before { + content: "\e9e8"; +} + +.el-icon-inspur-star-fill:before { + content: "\ea43"; +} + +.el-icon-inspur-star-line:before { + content: "\ea44"; +} + +.el-icon-inspur-a-voiceplaying-fill:before { + content: "\ea3d"; +} + +.el-icon-inspur-a-voiceplaying-line:before { + content: "\ea3e"; +} + +.el-icon-inspur-a-volumeclose-fill:before { + content: "\ea3f"; +} + +.el-icon-inspur-volume-line:before { + content: "\ea40"; +} + +.el-icon-inspur-volume-fill:before { + content: "\ea41"; +} + +.el-icon-inspur-a-volumeclose-line:before { + content: "\ea42"; +} + +.el-icon-inspur-a-serverarrange-line:before { + content: "\ea1d"; +} + +.el-icon-inspur-a-servercloud-fill:before { + content: "\ea20"; +} + +.el-icon-inspur-a-servercloud-line:before { + content: "\ea21"; +} + +.el-icon-inspur-a-serverarrange-fill:before { + content: "\ea22"; +} + +.el-icon-inspur-a-serverconnect-fill:before { + content: "\ea23"; +} + +.el-icon-inspur-a-serverconcatenate-line:before { + content: "\ea24"; +} + +.el-icon-inspur-a-serverconcatenate-fill:before { + content: "\ea25"; +} + +.el-icon-inspur-a-servercrowd-fill:before { + content: "\ea26"; +} + +.el-icon-inspur-a-serverdish-fill:before { + content: "\ea27"; +} + +.el-icon-inspur-a-servercrowd-line:before { + content: "\ea28"; +} + +.el-icon-inspur-a-serverconnect-line:before { + content: "\ea29"; +} + +.el-icon-inspur-a-serverdish-line:before { + content: "\ea2a"; +} + +.el-icon-inspur-a-servergroup-line:before { + content: "\ea2b"; +} + +.el-icon-inspur-a-servergroup-fill:before { + content: "\ea2c"; +} + +.el-icon-inspur-a-serverhdd-fill:before { + content: "\ea2d"; +} + +.el-icon-inspur-a-serverhdd-line:before { + content: "\ea2e"; +} + +.el-icon-inspur-a-serverherd-fill:before { + content: "\ea2f"; +} + +.el-icon-inspur-a-serverherd-line:before { + content: "\ea30"; +} + +.el-icon-inspur-a-serverhost-fill:before { + content: "\ea31"; +} + +.el-icon-inspur-a-serverhostcomputer-fill:before { + content: "\ea32"; +} + +.el-icon-inspur-a-serverinterconnection-line:before { + content: "\ea33"; +} + +.el-icon-inspur-a-serverhost-line:before { + content: "\ea34"; +} + +.el-icon-inspur-a-serverinterconnection-fill:before { + content: "\ea35"; +} + +.el-icon-inspur-a-serverjoint-line:before { + content: "\ea36"; +} + +.el-icon-inspur-a-serverlink-line:before { + content: "\ea37"; +} + +.el-icon-inspur-a-serverjoint-fill:before { + content: "\ea38"; +} + +.el-icon-inspur-a-serverparalleling-fill:before { + content: "\ea39"; +} + +.el-icon-inspur-a-serverlink-fill:before { + content: "\ea3a"; +} + +.el-icon-inspur-a-serverparalleling-line:before { + content: "\ea3b"; +} + +.el-icon-inspur-a-serverhostcomputer-line:before { + content: "\ea3c"; +} + +.el-icon-inspur-a-message2-fill:before { + content: "\e9f3"; +} + +.el-icon-inspur-a-message2-line:before { + content: "\e9f6"; +} + +.el-icon-inspur-guardian-fill:before { + content: "\e9ef"; +} + +.el-icon-inspur-guardian-line:before { + content: "\e9f0"; +} + +.el-icon-inspur-a-screenlist-fill:before { + content: "\ea1a"; +} + +.el-icon-inspur-a-screenlist-line:before { + content: "\ea1b"; +} + +.el-icon-inspur-search-line:before { + content: "\ea1c"; +} + +.el-icon-inspur-hierarchy-fill:before { + content: "\e9ed"; +} + +.el-icon-inspur-hierarchy-line:before { + content: "\e9ee"; +} + +.el-icon-inspur-model-fill:before { + content: "\e9f4"; +} + +.el-icon-inspur-model-line:before { + content: "\e9f5"; +} + +.el-icon-inspur-firm-line:before { + content: "\e9eb"; +} + +.el-icon-inspur-firm-fill:before { + content: "\e9ec"; +} + +.el-icon-inspur-home-5-line:before { + content: "\e6b4"; +} + +.el-icon-inspur-home-5-fill:before { + content: "\e6b5"; +} + +.el-icon-inspur-a-computercontrol-line:before { + content: "\e9e3"; +} + +.el-icon-inspur-a-computercontrol-fill:before { + content: "\e9e4"; +} + +.el-icon-inspur-a-computerinformation-fill:before { + content: "\e9e1"; +} + +.el-icon-inspur-a-computerinformation-line:before { + content: "\e9e2"; +} + +.el-icon-inspur-architecture-fill:before { + content: "\e9d4"; +} + +.el-icon-inspur-architecture-line:before { + content: "\e9d5"; +} + +.el-icon-inspur-a-company6-line:before { + content: "\e9df"; +} + +.el-icon-inspur-a-company6-fill:before { + content: "\e9e0"; +} + +.el-icon-inspur-a-company3-line:before { + content: "\e9de"; +} + +.el-icon-inspur-a-company3-fill:before { + content: "\e9dd"; +} + +.el-icon-inspur-a-serverflock-fill:before { + content: "\ea1e"; +} + +.el-icon-inspur-a-serverflock-line:before { + content: "\ea1f"; +} + +.el-icon-inspur-a-amount3-line:before { + content: "\ea4b"; +} + +.el-icon-inspur-a-amount3-fill:before { + content: "\e9d3"; +} + diff --git a/InManageBoot-ui/public/font/iconnew/iconfont.eot b/InManageBoot-ui/public/font/iconnew/iconfont.eot new file mode 100644 index 0000000000000000000000000000000000000000..a5c6856cd3bd53ffdda96a1bca673e15cec5bdc8 Binary files /dev/null and b/InManageBoot-ui/public/font/iconnew/iconfont.eot differ diff --git a/InManageBoot-ui/public/font/iconnew/iconfont.js b/InManageBoot-ui/public/font/iconnew/iconfont.js new file mode 100644 index 0000000000000000000000000000000000000000..aaa8a5ffb641bf6c37aaacaca729509a5cc744fb --- /dev/null +++ b/InManageBoot-ui/public/font/iconnew/iconfont.js @@ -0,0 +1 @@ +window._iconfont_svg_string_3195525='',function(h){var a=(a=document.getElementsByTagName("script"))[a.length-1],l=a.getAttribute("data-injectcss"),a=a.getAttribute("data-disable-injectsvg");if(!a){var i,v,o,c,m,z=function(a,l){l.parentNode.insertBefore(a,l)};if(l&&!h.__iconfont__svg__cssinject__){h.__iconfont__svg__cssinject__=!0;try{document.write("")}catch(a){console&&console.log(a)}}i=function(){var a,l=document.createElement("div");l.innerHTML=h._iconfont_svg_string_3195525,(l=l.getElementsByTagName("svg")[0])&&(l.setAttribute("aria-hidden","true"),l.style.position="absolute",l.style.width=0,l.style.height=0,l.style.overflow="hidden",l=l,(a=document.body).firstChild?z(l,a.firstChild):a.appendChild(l))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(i,0):(v=function(){document.removeEventListener("DOMContentLoaded",v,!1),i()},document.addEventListener("DOMContentLoaded",v,!1)):document.attachEvent&&(o=i,c=h.document,m=!1,p(),c.onreadystatechange=function(){"complete"==c.readyState&&(c.onreadystatechange=null,s())})}function s(){m||(m=!0,o())}function p(){try{c.documentElement.doScroll("left")}catch(a){return void setTimeout(p,50)}s()}}(window); \ No newline at end of file diff --git a/InManageBoot-ui/public/font/iconnew/iconfont.json b/InManageBoot-ui/public/font/iconnew/iconfont.json new file mode 100644 index 0000000000000000000000000000000000000000..3e278ea2eb55941f802a77aa399a9aa14dc6fa49 --- /dev/null +++ b/InManageBoot-ui/public/font/iconnew/iconfont.json @@ -0,0 +1,5714 @@ +{ + "id": "3195525", + "name": "ISPIM/云端InService", + "font_family": "iconfont", + "css_prefix_text": "el-icon-inspur-", + "description": "ISMANAGE/InService云端", + "glyphs": [ + { + "icon_id": "24341641", + "name": "file seal-line", + "font_class": "a-fileseal-line", + "unicode": "eaa9", + "unicode_decimal": 60073 + }, + { + "icon_id": "24341691", + "name": "file search-line", + "font_class": "a-filesearch-line", + "unicode": "eaaa", + "unicode_decimal": 60074 + }, + { + "icon_id": "4558315", + "name": "success-fill", + "font_class": "success-fill", + "unicode": "e649", + "unicode_decimal": 58953 + }, + { + "icon_id": "38547532", + "name": "v3-line", + "font_class": "v3-line", + "unicode": "f054", + "unicode_decimal": 61524 + }, + { + "icon_id": "21163415", + "name": "yingshe-line", + "font_class": "yingshe-line", + "unicode": "e660", + "unicode_decimal": 58976 + }, + { + "icon_id": "11020394", + "name": "mirror-line", + "font_class": "mirror-line", + "unicode": "e66f", + "unicode_decimal": 58991 + }, + { + "icon_id": "17103205", + "name": "terminal-fill", + "font_class": "terminal-fill", + "unicode": "e735", + "unicode_decimal": 59189 + }, + { + "icon_id": "17103207", + "name": "terminal-line", + "font_class": "terminal-line", + "unicode": "e737", + "unicode_decimal": 59191 + }, + { + "icon_id": "17103208", + "name": "terminal-window-fill", + "font_class": "terminal-window-fill", + "unicode": "e738", + "unicode_decimal": 59192 + }, + { + "icon_id": "17103210", + "name": "terminal-window-line", + "font_class": "terminal-window-line", + "unicode": "e742", + "unicode_decimal": 59202 + }, + { + "icon_id": "24342317", + "name": "save-fill", + "font_class": "save-fill1", + "unicode": "eaa7", + "unicode_decimal": 60071 + }, + { + "icon_id": "24342596", + "name": "text editor save-line", + "font_class": "a-texteditorsave-line", + "unicode": "eaa8", + "unicode_decimal": 60072 + }, + { + "icon_id": "17105303", + "name": "user-shared-fill", + "font_class": "user-shared-fill", + "unicode": "e8a6", + "unicode_decimal": 59558 + }, + { + "icon_id": "17105305", + "name": "user-shared-line", + "font_class": "user-shared-line", + "unicode": "e8a7", + "unicode_decimal": 59559 + }, + { + "icon_id": "27402401", + "name": "dynamic-line", + "font_class": "dynamic-line", + "unicode": "ee18", + "unicode_decimal": 60952 + }, + { + "icon_id": "38020018", + "name": "jbod-line", + "font_class": "jbod-line", + "unicode": "f052", + "unicode_decimal": 61522 + }, + { + "icon_id": "24342467", + "name": "statistical view pie chart 2-line", + "font_class": "a-statisticalviewpiechart2-line", + "unicode": "eaa6", + "unicode_decimal": 60070 + }, + { + "icon_id": "17102865", + "name": "slideshow-fill", + "font_class": "slideshow-fill", + "unicode": "e70a", + "unicode_decimal": 59146 + }, + { + "icon_id": "17102866", + "name": "slideshow-line", + "font_class": "slideshow-line", + "unicode": "e715", + "unicode_decimal": 59157 + }, + { + "icon_id": "37962328", + "name": "caogao-line", + "font_class": "caogao-line", + "unicode": "f050", + "unicode_decimal": 61520 + }, + { + "icon_id": "37962327", + "name": "caogao-fill", + "font_class": "caogao-fill", + "unicode": "f051", + "unicode_decimal": 61521 + }, + { + "icon_id": "24341465", + "name": "date-fill", + "font_class": "date-fill", + "unicode": "eaa4", + "unicode_decimal": 60068 + }, + { + "icon_id": "24341474", + "name": "date-line", + "font_class": "date-line", + "unicode": "eaa5", + "unicode_decimal": 60069 + }, + { + "icon_id": "37816787", + "name": "weixin-line", + "font_class": "weixin-line", + "unicode": "f049", + "unicode_decimal": 61513 + }, + { + "icon_id": "37816786", + "name": "weixin-fill", + "font_class": "weixin-fill", + "unicode": "f04b", + "unicode_decimal": 61515 + }, + { + "icon_id": "17102726", + "name": "bookmark-3-fill", + "font_class": "bookmark-3-fill", + "unicode": "e6c4", + "unicode_decimal": 59076 + }, + { + "icon_id": "17102729", + "name": "bookmark-3-line", + "font_class": "bookmark-3-line", + "unicode": "e6c7", + "unicode_decimal": 59079 + }, + { + "icon_id": "17105282", + "name": "user-6-fill", + "font_class": "user-6-fill", + "unicode": "e8a2", + "unicode_decimal": 59554 + }, + { + "icon_id": "17105284", + "name": "user-fill", + "font_class": "user-fill", + "unicode": "e8a3", + "unicode_decimal": 59555 + }, + { + "icon_id": "17105290", + "name": "user-6-line", + "font_class": "user-6-line", + "unicode": "e8a4", + "unicode_decimal": 59556 + }, + { + "icon_id": "17105291", + "name": "user-line", + "font_class": "user-line", + "unicode": "e8a5", + "unicode_decimal": 59557 + }, + { + "icon_id": "17105077", + "name": "eye-off-line", + "font_class": "eye-off-line", + "unicode": "e896", + "unicode_decimal": 59542 + }, + { + "icon_id": "17102958", + "name": "message-2-line", + "font_class": "message-2-line", + "unicode": "e6ff", + "unicode_decimal": 59135 + }, + { + "icon_id": "35160535", + "name": "钉钉", + "font_class": "dingding", + "unicode": "e787", + "unicode_decimal": 59271 + }, + { + "icon_id": "14151188", + "name": "电池", + "font_class": "dianchi", + "unicode": "e648", + "unicode_decimal": 58952 + }, + { + "icon_id": "17105376", + "name": "snowy-line", + "font_class": "snowy-line", + "unicode": "e8a0", + "unicode_decimal": 59552 + }, + { + "icon_id": "17105378", + "name": "snowy-fill", + "font_class": "snowy-fill", + "unicode": "e8a1", + "unicode_decimal": 59553 + }, + { + "icon_id": "17105337", + "name": "fire-fill", + "font_class": "fire-fill", + "unicode": "e89c", + "unicode_decimal": 59548 + }, + { + "icon_id": "17105344", + "name": "fire-line", + "font_class": "fire-line", + "unicode": "e89d", + "unicode_decimal": 59549 + }, + { + "icon_id": "24341094", + "name": "amount 5-line", + "font_class": "a-amount5-line", + "unicode": "eaa3", + "unicode_decimal": 60067 + }, + { + "icon_id": "17104750", + "name": "vidicon-fill", + "font_class": "vidicon-fill", + "unicode": "e824", + "unicode_decimal": 59428 + }, + { + "icon_id": "17104751", + "name": "vidicon-line", + "font_class": "vidicon-line", + "unicode": "e825", + "unicode_decimal": 59429 + }, + { + "icon_id": "17103992", + "name": "money-cny-box-line", + "font_class": "money-cny-box-line", + "unicode": "e7b3", + "unicode_decimal": 59315 + }, + { + "icon_id": "17103996", + "name": "money-cny-box-fill", + "font_class": "money-cny-box-fill", + "unicode": "e7bb", + "unicode_decimal": 59323 + }, + { + "icon_id": "17105332", + "name": "celsius-fill", + "font_class": "celsius-fill", + "unicode": "e897", + "unicode_decimal": 59543 + }, + { + "icon_id": "17105385", + "name": "temp-hot-line", + "font_class": "temp-hot-line", + "unicode": "e89e", + "unicode_decimal": 59550 + }, + { + "icon_id": "17105386", + "name": "temp-hot-fill", + "font_class": "temp-hot-fill", + "unicode": "e89f", + "unicode_decimal": 59551 + }, + { + "icon_id": "24342477", + "name": "structure 2-line", + "font_class": "a-structure2-line", + "unicode": "eaa1", + "unicode_decimal": 60065 + }, + { + "icon_id": "24342478", + "name": "structure 2-fill", + "font_class": "a-structure2-fill", + "unicode": "eaa2", + "unicode_decimal": 60066 + }, + { + "icon_id": "24341520", + "name": "edit 2-line", + "font_class": "a-edit2-line", + "unicode": "ea9e", + "unicode_decimal": 60062 + }, + { + "icon_id": "24342190", + "name": "relation 7-fill", + "font_class": "a-relation7-fill", + "unicode": "ea9f", + "unicode_decimal": 60063 + }, + { + "icon_id": "24342195", + "name": "relation 7-line", + "font_class": "a-relation7-line", + "unicode": "eaa0", + "unicode_decimal": 60064 + }, + { + "icon_id": "24341775", + "name": "hand bin-fill", + "font_class": "a-handbin-fill", + "unicode": "ea98", + "unicode_decimal": 60056 + }, + { + "icon_id": "24341784", + "name": "hand bin-line", + "font_class": "a-handbin-line", + "unicode": "ea9d", + "unicode_decimal": 60061 + }, + { + "icon_id": "24341751", + "name": "goal analysis-line", + "font_class": "a-goalanalysis-line", + "unicode": "ea95", + "unicode_decimal": 60053 + }, + { + "icon_id": "24342704", + "name": "web page code-line", + "font_class": "a-webpagecode-line", + "unicode": "ea96", + "unicode_decimal": 60054 + }, + { + "icon_id": "24342705", + "name": "web page code-fill", + "font_class": "a-webpagecode-fill", + "unicode": "ea97", + "unicode_decimal": 60055 + }, + { + "icon_id": "24341453", + "name": "cut-fill", + "font_class": "cut-fill", + "unicode": "ea93", + "unicode_decimal": 60051 + }, + { + "icon_id": "24341460", + "name": "cut-line", + "font_class": "cut-line", + "unicode": "ea94", + "unicode_decimal": 60052 + }, + { + "icon_id": "24341111", + "name": "api-fill", + "font_class": "api-fill", + "unicode": "ea91", + "unicode_decimal": 60049 + }, + { + "icon_id": "24341116", + "name": "api-line", + "font_class": "api-line", + "unicode": "ea92", + "unicode_decimal": 60050 + }, + { + "icon_id": "17103206", + "name": "terminal-box-line", + "font_class": "terminal-box-line", + "unicode": "e733", + "unicode_decimal": 59187 + }, + { + "icon_id": "17103209", + "name": "terminal-box-fill", + "font_class": "terminal-box-fill", + "unicode": "e734", + "unicode_decimal": 59188 + }, + { + "icon_id": "17104810", + "name": "lightbulb-flash-line", + "font_class": "lightbulb-flash-line", + "unicode": "e849", + "unicode_decimal": 59465 + }, + { + "icon_id": "24341496", + "name": "documentation download-fill", + "font_class": "a-documentationdownload-fill", + "unicode": "ea8f", + "unicode_decimal": 60047 + }, + { + "icon_id": "24341501", + "name": "documentation download-line", + "font_class": "a-documentationdownload-line", + "unicode": "ea90", + "unicode_decimal": 60048 + }, + { + "icon_id": "37469144", + "name": "physical-disk-line", + "font_class": "physical-disk-line", + "unicode": "f024", + "unicode_decimal": 61476 + }, + { + "icon_id": "37469143", + "name": "raid-line", + "font_class": "raid-line", + "unicode": "f025", + "unicode_decimal": 61477 + }, + { + "icon_id": "37469142", + "name": "logical-disk-line", + "font_class": "logical-disk-line", + "unicode": "f026", + "unicode_decimal": 61478 + }, + { + "icon_id": "37420766", + "name": "emt-box-line", + "font_class": "emt-box-line", + "unicode": "f023", + "unicode_decimal": 61475 + }, + { + "icon_id": "37420616", + "name": "full-box-line", + "font_class": "full-box-line", + "unicode": "f020", + "unicode_decimal": 61472 + }, + { + "icon_id": "37420617", + "name": "half-box-line", + "font_class": "half-box-line", + "unicode": "f021", + "unicode_decimal": 61473 + }, + { + "icon_id": "17104672", + "name": "picture-in-picture-fill", + "font_class": "picture-in-picture-fill", + "unicode": "e813", + "unicode_decimal": 59411 + }, + { + "icon_id": "17104674", + "name": "picture-in-picture-line", + "font_class": "picture-in-picture-line", + "unicode": "e814", + "unicode_decimal": 59412 + }, + { + "icon_id": "24342481", + "name": "structure 1-fill", + "font_class": "a-structure1-fill", + "unicode": "ea8c", + "unicode_decimal": 60044 + }, + { + "icon_id": "24342486", + "name": "structure 1-line", + "font_class": "a-structure1-line", + "unicode": "ea8d", + "unicode_decimal": 60045 + }, + { + "icon_id": "17105024", + "name": "history-line", + "font_class": "history-line", + "unicode": "e893", + "unicode_decimal": 59539 + }, + { + "icon_id": "17105025", + "name": "history-fill", + "font_class": "history-fill", + "unicode": "e894", + "unicode_decimal": 59540 + }, + { + "icon_id": "37199903", + "name": "guaqi-line", + "font_class": "guaqi-line", + "unicode": "f01a", + "unicode_decimal": 61466 + }, + { + "icon_id": "37199901", + "name": "daiban-fill", + "font_class": "daiban-fill", + "unicode": "f01b", + "unicode_decimal": 61467 + }, + { + "icon_id": "37199902", + "name": "yiban-line", + "font_class": "yiban-line", + "unicode": "f01c", + "unicode_decimal": 61468 + }, + { + "icon_id": "37199899", + "name": "daiban-line", + "font_class": "daiban-line", + "unicode": "f01d", + "unicode_decimal": 61469 + }, + { + "icon_id": "37199900", + "name": "yiban-fill", + "font_class": "yiban-fill", + "unicode": "f01e", + "unicode_decimal": 61470 + }, + { + "icon_id": "37199898", + "name": "guaqi-fill", + "font_class": "guaqi-fill", + "unicode": "f01f", + "unicode_decimal": 61471 + }, + { + "icon_id": "17103509", + "name": "file-add-fill", + "font_class": "file-add-fill", + "unicode": "e785", + "unicode_decimal": 59269 + }, + { + "icon_id": "17103511", + "name": "file-add-line", + "font_class": "file-add-line", + "unicode": "e786", + "unicode_decimal": 59270 + }, + { + "icon_id": "37118369", + "name": "chuku-line", + "font_class": "chuku-line", + "unicode": "f016", + "unicode_decimal": 61462 + }, + { + "icon_id": "37118368", + "name": "zaiku-line", + "font_class": "zaiku-line", + "unicode": "f017", + "unicode_decimal": 61463 + }, + { + "icon_id": "17102788", + "name": "inbox-archive-line", + "font_class": "inbox-archive-line", + "unicode": "e6fb", + "unicode_decimal": 59131 + }, + { + "icon_id": "17102790", + "name": "inbox-archive-fill", + "font_class": "inbox-archive-fill", + "unicode": "e6fc", + "unicode_decimal": 59132 + }, + { + "icon_id": "17102792", + "name": "inbox-unarchive-fill", + "font_class": "inbox-unarchive-fill", + "unicode": "e6fd", + "unicode_decimal": 59133 + }, + { + "icon_id": "17102793", + "name": "inbox-unarchive-line", + "font_class": "inbox-unarchive-line", + "unicode": "e6fe", + "unicode_decimal": 59134 + }, + { + "icon_id": "17102730", + "name": "briefcase-2-fill", + "font_class": "briefcase-2-fill", + "unicode": "e6c5", + "unicode_decimal": 59077 + }, + { + "icon_id": "17102731", + "name": "briefcase-2-line", + "font_class": "briefcase-2-line", + "unicode": "e6c6", + "unicode_decimal": 59078 + }, + { + "icon_id": "17105107", + "name": "share-box-line", + "font_class": "share-box-line", + "unicode": "e872", + "unicode_decimal": 59506 + }, + { + "icon_id": "17105110", + "name": "share-box-fill", + "font_class": "share-box-fill", + "unicode": "e892", + "unicode_decimal": 59538 + }, + { + "icon_id": "17103524", + "name": "file-download-fill", + "font_class": "file-download-fill", + "unicode": "e783", + "unicode_decimal": 59267 + }, + { + "icon_id": "17103525", + "name": "file-download-line", + "font_class": "file-download-line", + "unicode": "e784", + "unicode_decimal": 59268 + }, + { + "icon_id": "17105079", + "name": "more-2-fill", + "font_class": "more-2-fill", + "unicode": "e868", + "unicode_decimal": 59496 + }, + { + "icon_id": "17105081", + "name": "more-2-line", + "font_class": "more-2-line", + "unicode": "e869", + "unicode_decimal": 59497 + }, + { + "icon_id": "17105082", + "name": "more-fill", + "font_class": "more-fill", + "unicode": "e871", + "unicode_decimal": 59505 + }, + { + "icon_id": "17105129", + "name": "more-line", + "font_class": "more-line", + "unicode": "e879", + "unicode_decimal": 59513 + }, + { + "icon_id": "17105012", + "name": "filter-line", + "font_class": "filter-line", + "unicode": "e858", + "unicode_decimal": 59480 + }, + { + "icon_id": "17105014", + "name": "filter-fill", + "font_class": "filter-fill", + "unicode": "e859", + "unicode_decimal": 59481 + }, + { + "icon_id": "17105015", + "name": "filter-off-fill", + "font_class": "filter-off-fill", + "unicode": "e85a", + "unicode_decimal": 59482 + }, + { + "icon_id": "17105016", + "name": "filter-off-line", + "font_class": "filter-off-line", + "unicode": "e866", + "unicode_decimal": 59494 + }, + { + "icon_id": "24526418", + "name": "left small line-line", + "font_class": "a-leftsmallline-line", + "unicode": "ea99", + "unicode_decimal": 60057 + }, + { + "icon_id": "24526419", + "name": "right small line-line", + "font_class": "a-rightsmallline-line", + "unicode": "ea9a", + "unicode_decimal": 60058 + }, + { + "icon_id": "24532772", + "name": "up small-line", + "font_class": "a-upsmall-line", + "unicode": "ea9b", + "unicode_decimal": 60059 + }, + { + "icon_id": "24532773", + "name": "under small-line", + "font_class": "a-undersmall-line", + "unicode": "ea9c", + "unicode_decimal": 60060 + }, + { + "icon_id": "24341967", + "name": "mesh 5-line", + "font_class": "a-mesh5-line", + "unicode": "ea8e", + "unicode_decimal": 60046 + }, + { + "icon_id": "17103780", + "name": "list-check", + "font_class": "list-check", + "unicode": "e7a3", + "unicode_decimal": 59299 + }, + { + "icon_id": "17103781", + "name": "list-unordered", + "font_class": "list-unordered", + "unicode": "e7a4", + "unicode_decimal": 59300 + }, + { + "icon_id": "17103521", + "name": "file-copy-fill", + "font_class": "file-copy-fill", + "unicode": "e77f", + "unicode_decimal": 59263 + }, + { + "icon_id": "17103522", + "name": "file-copy-line", + "font_class": "file-copy-line", + "unicode": "e782", + "unicode_decimal": 59266 + }, + { + "icon_id": "17105115", + "name": "share-forward-box-fill", + "font_class": "share-forward-box-fill", + "unicode": "e873", + "unicode_decimal": 59507 + }, + { + "icon_id": "17105116", + "name": "share-forward-box-line", + "font_class": "share-forward-box-line", + "unicode": "e876", + "unicode_decimal": 59510 + }, + { + "icon_id": "17105220", + "name": "contacts-fill", + "font_class": "contacts-fill", + "unicode": "e890", + "unicode_decimal": 59536 + }, + { + "icon_id": "17105222", + "name": "contacts-line", + "font_class": "contacts-line", + "unicode": "e891", + "unicode_decimal": 59537 + }, + { + "icon_id": "17105038", + "name": "lock-2-fill", + "font_class": "lock-2-fill", + "unicode": "e860", + "unicode_decimal": 59488 + }, + { + "icon_id": "17105039", + "name": "lock-2-line", + "font_class": "lock-2-line", + "unicode": "e861", + "unicode_decimal": 59489 + }, + { + "icon_id": "17105041", + "name": "lock-fill", + "font_class": "lock-fill", + "unicode": "e862", + "unicode_decimal": 59490 + }, + { + "icon_id": "17105043", + "name": "lock-line", + "font_class": "lock-line", + "unicode": "e863", + "unicode_decimal": 59491 + }, + { + "icon_id": "17105046", + "name": "lock-unlock-line", + "font_class": "lock-unlock-line", + "unicode": "e864", + "unicode_decimal": 59492 + }, + { + "icon_id": "17105053", + "name": "lock-unlock-fill", + "font_class": "lock-unlock-fill", + "unicode": "e865", + "unicode_decimal": 59493 + }, + { + "icon_id": "36974213", + "name": "box-open-fill", + "font_class": "box-open-fill", + "unicode": "f013", + "unicode_decimal": 61459 + }, + { + "icon_id": "24342032", + "name": "null case-fill", + "font_class": "a-nullcase-fill", + "unicode": "ea8a", + "unicode_decimal": 60042 + }, + { + "icon_id": "24342036", + "name": "null case-line", + "font_class": "a-nullcase-line", + "unicode": "ea8b", + "unicode_decimal": 60043 + }, + { + "icon_id": "17104495", + "name": "passport-fill", + "font_class": "passport-fill", + "unicode": "e7f5", + "unicode_decimal": 59381 + }, + { + "icon_id": "17104504", + "name": "passport-line", + "font_class": "passport-line", + "unicode": "e7f6", + "unicode_decimal": 59382 + }, + { + "icon_id": "17103477", + "name": "bill-fill", + "font_class": "bill-fill", + "unicode": "e75e", + "unicode_decimal": 59230 + }, + { + "icon_id": "17103480", + "name": "bill-line", + "font_class": "bill-line", + "unicode": "e77e", + "unicode_decimal": 59262 + }, + { + "icon_id": "17103550", + "name": "file-lock-fill", + "font_class": "file-lock-fill", + "unicode": "e780", + "unicode_decimal": 59264 + }, + { + "icon_id": "17103554", + "name": "file-lock-line", + "font_class": "file-lock-line", + "unicode": "e781", + "unicode_decimal": 59265 + }, + { + "icon_id": "24341928", + "name": "lower right page-line", + "font_class": "a-lowerrightpage-line", + "unicode": "ea89", + "unicode_decimal": 60041 + }, + { + "icon_id": "24341701", + "name": "frame-fill", + "font_class": "frame-fill", + "unicode": "ea83", + "unicode_decimal": 60035 + }, + { + "icon_id": "24341705", + "name": "frame-line", + "font_class": "frame-line", + "unicode": "ea84", + "unicode_decimal": 60036 + }, + { + "icon_id": "24341907", + "name": "list choose-line", + "font_class": "a-listchoose-line", + "unicode": "ea85", + "unicode_decimal": 60037 + }, + { + "icon_id": "24341910", + "name": "list view-fill", + "font_class": "a-listview-fill", + "unicode": "ea86", + "unicode_decimal": 60038 + }, + { + "icon_id": "24341939", + "name": "list view-line", + "font_class": "a-listview-line", + "unicode": "ea87", + "unicode_decimal": 60039 + }, + { + "icon_id": "24341943", + "name": "lower right page-fill", + "font_class": "a-lowerrightpage-fill", + "unicode": "ea88", + "unicode_decimal": 60040 + }, + { + "icon_id": "24342280", + "name": "route 2-fill", + "font_class": "a-route2-fill", + "unicode": "ea81", + "unicode_decimal": 60033 + }, + { + "icon_id": "24342281", + "name": "route 2-line", + "font_class": "a-route2-line", + "unicode": "ea82", + "unicode_decimal": 60034 + }, + { + "icon_id": "24341445", + "name": "cube-fill", + "font_class": "cube-fill", + "unicode": "ea7f", + "unicode_decimal": 60031 + }, + { + "icon_id": "24341461", + "name": "cube-line", + "font_class": "cube-line", + "unicode": "ea80", + "unicode_decimal": 60032 + }, + { + "icon_id": "24342072", + "name": "page level-fill", + "font_class": "a-pagelevel-fill", + "unicode": "ea7c", + "unicode_decimal": 60028 + }, + { + "icon_id": "24342073", + "name": "page level-line", + "font_class": "a-pagelevel-line", + "unicode": "ea7e", + "unicode_decimal": 60030 + }, + { + "icon_id": "24341418", + "name": "computer movement-line", + "font_class": "a-computermovement-line", + "unicode": "ea7d", + "unicode_decimal": 60029 + }, + { + "icon_id": "24341267", + "name": "case-line", + "font_class": "case-line", + "unicode": "ea6c", + "unicode_decimal": 60012 + }, + { + "icon_id": "24341289", + "name": "case-fill", + "font_class": "case-fill", + "unicode": "ea6d", + "unicode_decimal": 60013 + }, + { + "icon_id": "24341424", + "name": "constitute-fill", + "font_class": "constitute-fill", + "unicode": "ea69", + "unicode_decimal": 60009 + }, + { + "icon_id": "24341432", + "name": "constitute-line", + "font_class": "constitute-line", + "unicode": "ea6b", + "unicode_decimal": 60011 + }, + { + "icon_id": "17103572", + "name": "file-settings-fill", + "font_class": "file-settings-fill", + "unicode": "e77c", + "unicode_decimal": 59260 + }, + { + "icon_id": "17103573", + "name": "file-settings-line", + "font_class": "file-settings-line", + "unicode": "e77d", + "unicode_decimal": 59261 + }, + { + "icon_id": "17104472", + "name": "map-pin-range-fill", + "font_class": "map-pin-range-fill", + "unicode": "e7f1", + "unicode_decimal": 59377 + }, + { + "icon_id": "17104480", + "name": "map-pin-range-line", + "font_class": "map-pin-range-line", + "unicode": "e7f2", + "unicode_decimal": 59378 + }, + { + "icon_id": "17102864", + "name": "stack-line", + "font_class": "stack-line", + "unicode": "e6f9", + "unicode_decimal": 59129 + }, + { + "icon_id": "17102868", + "name": "stack-fill", + "font_class": "stack-fill", + "unicode": "e6fa", + "unicode_decimal": 59130 + }, + { + "icon_id": "17103786", + "name": "node-tree", + "font_class": "node-tree", + "unicode": "e79f", + "unicode_decimal": 59295 + }, + { + "icon_id": "17103788", + "name": "mind-map", + "font_class": "mind-map", + "unicode": "e7a1", + "unicode_decimal": 59297 + }, + { + "icon_id": "17103790", + "name": "list-check-2", + "font_class": "list-check-2", + "unicode": "e7a2", + "unicode_decimal": 59298 + }, + { + "icon_id": "36931659", + "name": "box-open-line", + "font_class": "box-open-line", + "unicode": "e647", + "unicode_decimal": 58951 + }, + { + "icon_id": "17102791", + "name": "inbox-line", + "font_class": "inbox-line", + "unicode": "e6e9", + "unicode_decimal": 59113 + }, + { + "icon_id": "17102796", + "name": "inbox-fill", + "font_class": "inbox-fill", + "unicode": "e6eb", + "unicode_decimal": 59115 + }, + { + "icon_id": "20351010", + "name": "dots-sm", + "font_class": "dots-sm", + "unicode": "e646", + "unicode_decimal": 58950 + }, + { + "icon_id": "36582947", + "name": "applet-line", + "font_class": "applet-line", + "unicode": "e645", + "unicode_decimal": 58949 + }, + { + "icon_id": "17102797", + "name": "mail-add-line", + "font_class": "mail-add-line", + "unicode": "e6df", + "unicode_decimal": 59103 + }, + { + "icon_id": "17102798", + "name": "mail-check-fill", + "font_class": "mail-check-fill", + "unicode": "e6e0", + "unicode_decimal": 59104 + }, + { + "icon_id": "17102801", + "name": "mail-check-line", + "font_class": "mail-check-line", + "unicode": "e6e1", + "unicode_decimal": 59105 + }, + { + "icon_id": "17102802", + "name": "mail-add-fill", + "font_class": "mail-add-fill", + "unicode": "e6e5", + "unicode_decimal": 59109 + }, + { + "icon_id": "17102803", + "name": "mail-close-line", + "font_class": "mail-close-line", + "unicode": "e6e6", + "unicode_decimal": 59110 + }, + { + "icon_id": "17102804", + "name": "mail-download-line", + "font_class": "mail-download-line", + "unicode": "e6e7", + "unicode_decimal": 59111 + }, + { + "icon_id": "17102805", + "name": "mail-close-fill", + "font_class": "mail-close-fill", + "unicode": "e6e8", + "unicode_decimal": 59112 + }, + { + "icon_id": "17102807", + "name": "mail-forbid-fill", + "font_class": "mail-forbid-fill", + "unicode": "e6ea", + "unicode_decimal": 59114 + }, + { + "icon_id": "17102809", + "name": "mail-forbid-line", + "font_class": "mail-forbid-line", + "unicode": "e6ec", + "unicode_decimal": 59116 + }, + { + "icon_id": "17102810", + "name": "mail-lock-fill", + "font_class": "mail-lock-fill", + "unicode": "e6ed", + "unicode_decimal": 59117 + }, + { + "icon_id": "17102811", + "name": "mail-download-fill", + "font_class": "mail-download-fill", + "unicode": "e6ee", + "unicode_decimal": 59118 + }, + { + "icon_id": "17102812", + "name": "mail-lock-line", + "font_class": "mail-lock-line", + "unicode": "e6ef", + "unicode_decimal": 59119 + }, + { + "icon_id": "17102813", + "name": "mail-open-fill", + "font_class": "mail-open-fill", + "unicode": "e6f0", + "unicode_decimal": 59120 + }, + { + "icon_id": "17102814", + "name": "mail-open-line", + "font_class": "mail-open-line", + "unicode": "e6f1", + "unicode_decimal": 59121 + }, + { + "icon_id": "17102815", + "name": "mail-send-line", + "font_class": "mail-send-line", + "unicode": "e6f2", + "unicode_decimal": 59122 + }, + { + "icon_id": "17102816", + "name": "mail-send-fill", + "font_class": "mail-send-fill", + "unicode": "e6f3", + "unicode_decimal": 59123 + }, + { + "icon_id": "17102817", + "name": "mail-settings-line", + "font_class": "mail-settings-line", + "unicode": "e6f4", + "unicode_decimal": 59124 + }, + { + "icon_id": "17102818", + "name": "mail-star-line", + "font_class": "mail-star-line", + "unicode": "e6f5", + "unicode_decimal": 59125 + }, + { + "icon_id": "17102819", + "name": "mail-star-fill", + "font_class": "mail-star-fill", + "unicode": "e6f6", + "unicode_decimal": 59126 + }, + { + "icon_id": "17102820", + "name": "mail-unread-line", + "font_class": "mail-unread-line", + "unicode": "e6f7", + "unicode_decimal": 59127 + }, + { + "icon_id": "17102821", + "name": "mail-unread-fill", + "font_class": "mail-unread-fill", + "unicode": "e6f8", + "unicode_decimal": 59128 + }, + { + "icon_id": "36084002", + "name": "hand-heart-fill", + "font_class": "hand-heart-fill", + "unicode": "e641", + "unicode_decimal": 58945 + }, + { + "icon_id": "36084003", + "name": "outlet-2-line", + "font_class": "outlet-2-line", + "unicode": "e642", + "unicode_decimal": 58946 + }, + { + "icon_id": "36084004", + "name": "hand-heart-line", + "font_class": "hand-heart-line", + "unicode": "e643", + "unicode_decimal": 58947 + }, + { + "icon_id": "36084005", + "name": "outlet-2-fill", + "font_class": "outlet-2-fill", + "unicode": "e644", + "unicode_decimal": 58948 + }, + { + "icon_id": "36084000", + "name": "user-3-line", + "font_class": "user-3-line", + "unicode": "e63f", + "unicode_decimal": 58943 + }, + { + "icon_id": "36084001", + "name": "user-3-fill", + "font_class": "user-3-fill", + "unicode": "e640", + "unicode_decimal": 58944 + }, + { + "icon_id": "24341706", + "name": "freight-line", + "font_class": "freight-line", + "unicode": "ea06", + "unicode_decimal": 59910 + }, + { + "icon_id": "17103669", + "name": "task-line", + "font_class": "task-line", + "unicode": "e797", + "unicode_decimal": 59287 + }, + { + "icon_id": "17103671", + "name": "task-fill", + "font_class": "task-fill", + "unicode": "e799", + "unicode_decimal": 59289 + }, + { + "icon_id": "17102854", + "name": "send-plane-fill", + "font_class": "send-plane-fill", + "unicode": "ea63", + "unicode_decimal": 60003 + }, + { + "icon_id": "17102856", + "name": "send-plane-line", + "font_class": "send-plane-line", + "unicode": "ea64", + "unicode_decimal": 60004 + }, + { + "icon_id": "35359473", + "name": "jisuanqi", + "font_class": "jisuanqi", + "unicode": "e63b", + "unicode_decimal": 58939 + }, + { + "icon_id": "35359474", + "name": "wangluo1", + "font_class": "wangluo1", + "unicode": "e63c", + "unicode_decimal": 58940 + }, + { + "icon_id": "35270083", + "name": "xunijiKVM", + "font_class": "xunijiKVM", + "unicode": "e63d", + "unicode_decimal": 58941 + }, + { + "icon_id": "35270084", + "name": "cunchu", + "font_class": "cunchu", + "unicode": "e63e", + "unicode_decimal": 58942 + }, + { + "icon_id": "23069951", + "name": "bios", + "font_class": "bios", + "unicode": "e6db", + "unicode_decimal": 59099 + }, + { + "icon_id": "32656540", + "name": "upgrade-pim", + "font_class": "upgrade-pim", + "unicode": "f012", + "unicode_decimal": 61458 + }, + { + "icon_id": "24341274", + "name": "box calculator-line", + "font_class": "a-boxcalculator-line", + "unicode": "ea05", + "unicode_decimal": 59909 + }, + { + "icon_id": "17102754", + "name": "cloud-fill", + "font_class": "cloud-fill", + "unicode": "e6cd", + "unicode_decimal": 59085 + }, + { + "icon_id": "17102756", + "name": "cloud-line", + "font_class": "cloud-line", + "unicode": "e6ce", + "unicode_decimal": 59086 + }, + { + "icon_id": "17102757", + "name": "cloud-off-fill", + "font_class": "cloud-off-fill", + "unicode": "e6cf", + "unicode_decimal": 59087 + }, + { + "icon_id": "17102761", + "name": "cloud-off-line", + "font_class": "cloud-off-line", + "unicode": "e6d0", + "unicode_decimal": 59088 + }, + { + "icon_id": "32655157", + "name": "change", + "font_class": "change", + "unicode": "f011", + "unicode_decimal": 61457 + }, + { + "icon_id": "17103500", + "name": "draft-fill", + "font_class": "draft-fill", + "unicode": "e76c", + "unicode_decimal": 59244 + }, + { + "icon_id": "17103502", + "name": "draft-line", + "font_class": "draft-line", + "unicode": "e77b", + "unicode_decimal": 59259 + }, + { + "icon_id": "32093062", + "name": "zhishiku", + "font_class": "zhishiku", + "unicode": "e636", + "unicode_decimal": 58934 + }, + { + "icon_id": "32093063", + "name": "fuwu", + "font_class": "fuwu", + "unicode": "e637", + "unicode_decimal": 58935 + }, + { + "icon_id": "32093064", + "name": "yuzhi", + "font_class": "yuzhi", + "unicode": "e638", + "unicode_decimal": 58936 + }, + { + "icon_id": "32093065", + "name": "bujian", + "font_class": "bujian", + "unicode": "e639", + "unicode_decimal": 58937 + }, + { + "icon_id": "32093066", + "name": "shengji", + "font_class": "shengji", + "unicode": "e63a", + "unicode_decimal": 58938 + }, + { + "icon_id": "32047278", + "name": "tree-Load-balancing", + "font_class": "tree-Load-balancing", + "unicode": "e629", + "unicode_decimal": 58921 + }, + { + "icon_id": "32047279", + "name": "tree-change", + "font_class": "tree-change", + "unicode": "e62e", + "unicode_decimal": 58926 + }, + { + "icon_id": "32047281", + "name": "tree-wall", + "font_class": "tree-wall", + "unicode": "e62f", + "unicode_decimal": 58927 + }, + { + "icon_id": "32047282", + "name": "tree-waf", + "font_class": "tree-waf", + "unicode": "e630", + "unicode_decimal": 58928 + }, + { + "icon_id": "32047283", + "name": "tree-DDoS", + "font_class": "tree-DDoS", + "unicode": "e631", + "unicode_decimal": 58929 + }, + { + "icon_id": "32047284", + "name": "tree-server", + "font_class": "tree-server", + "unicode": "e632", + "unicode_decimal": 58930 + }, + { + "icon_id": "32047285", + "name": "tree-router", + "font_class": "tree-router", + "unicode": "e633", + "unicode_decimal": 58931 + }, + { + "icon_id": "32047286", + "name": "tree-store", + "font_class": "tree-store", + "unicode": "e634", + "unicode_decimal": 58932 + }, + { + "icon_id": "32047373", + "name": "tree-DDoS", + "font_class": "tree-DDoS1", + "unicode": "e635", + "unicode_decimal": 58933 + }, + { + "icon_id": "31961892", + "name": "survey-add-line", + "font_class": "survey-add-line", + "unicode": "e625", + "unicode_decimal": 58917 + }, + { + "icon_id": "17103552", + "name": "file-mark-fill", + "font_class": "file-mark-fill", + "unicode": "e771", + "unicode_decimal": 59249 + }, + { + "icon_id": "17103555", + "name": "file-mark-line", + "font_class": "file-mark-line", + "unicode": "e772", + "unicode_decimal": 59250 + }, + { + "icon_id": "17102786", + "name": "honour-line", + "font_class": "honour-line", + "unicode": "e6d9", + "unicode_decimal": 59097 + }, + { + "icon_id": "17102787", + "name": "honour-fill", + "font_class": "honour-fill", + "unicode": "e6da", + "unicode_decimal": 59098 + }, + { + "icon_id": "17102775", + "name": "customer-service-2-line", + "font_class": "customer-service-2-line", + "unicode": "e6d1", + "unicode_decimal": 59089 + }, + { + "icon_id": "17102776", + "name": "customer-service-fill", + "font_class": "customer-service-fill", + "unicode": "e6d2", + "unicode_decimal": 59090 + }, + { + "icon_id": "17102778", + "name": "customer-service-line", + "font_class": "customer-service-line", + "unicode": "e6d5", + "unicode_decimal": 59093 + }, + { + "icon_id": "17102781", + "name": "customer-service-2-fill", + "font_class": "customer-service-2-fill", + "unicode": "e6d6", + "unicode_decimal": 59094 + }, + { + "icon_id": "17105228", + "name": "emotion-happy-fill", + "font_class": "emotion-happy-fill", + "unicode": "e88c", + "unicode_decimal": 59532 + }, + { + "icon_id": "17105229", + "name": "emotion-line", + "font_class": "emotion-line", + "unicode": "e88d", + "unicode_decimal": 59533 + }, + { + "icon_id": "17105230", + "name": "emotion-fill", + "font_class": "emotion-fill", + "unicode": "e88e", + "unicode_decimal": 59534 + }, + { + "icon_id": "17105234", + "name": "emotion-happy-line", + "font_class": "emotion-happy-line", + "unicode": "e88f", + "unicode_decimal": 59535 + }, + { + "icon_id": "31850298", + "name": "upload-fill", + "font_class": "upload-fill1", + "unicode": "e61d", + "unicode_decimal": 58909 + }, + { + "icon_id": "31850299", + "name": "upload-line", + "font_class": "upload-line2", + "unicode": "e624", + "unicode_decimal": 58916 + }, + { + "icon_id": "17105346", + "name": "hail-line", + "font_class": "hail-line", + "unicode": "e89a", + "unicode_decimal": 59546 + }, + { + "icon_id": "17105348", + "name": "hail-fill", + "font_class": "hail-fill", + "unicode": "e89b", + "unicode_decimal": 59547 + }, + { + "icon_id": "17103660", + "name": "pages-line", + "font_class": "pages-line", + "unicode": "e78d", + "unicode_decimal": 59277 + }, + { + "icon_id": "17103661", + "name": "pages-fill", + "font_class": "pages-fill", + "unicode": "e78e", + "unicode_decimal": 59278 + }, + { + "icon_id": "17103668", + "name": "survey-fill", + "font_class": "survey-fill", + "unicode": "e78f", + "unicode_decimal": 59279 + }, + { + "icon_id": "17103670", + "name": "survey-line", + "font_class": "survey-line", + "unicode": "e790", + "unicode_decimal": 59280 + }, + { + "icon_id": "17103672", + "name": "todo-fill", + "font_class": "todo-fill", + "unicode": "e793", + "unicode_decimal": 59283 + }, + { + "icon_id": "17103674", + "name": "todo-line", + "font_class": "todo-line", + "unicode": "e794", + "unicode_decimal": 59284 + }, + { + "icon_id": "17103976", + "name": "exchange-funds-fill", + "font_class": "exchange-funds-fill", + "unicode": "e7b4", + "unicode_decimal": 59316 + }, + { + "icon_id": "17103981", + "name": "funds-box-fill", + "font_class": "funds-box-fill", + "unicode": "e7b5", + "unicode_decimal": 59317 + }, + { + "icon_id": "17103991", + "name": "funds-fill", + "font_class": "funds-fill", + "unicode": "e7b6", + "unicode_decimal": 59318 + }, + { + "icon_id": "17104000", + "name": "funds-line", + "font_class": "funds-line", + "unicode": "e7b7", + "unicode_decimal": 59319 + }, + { + "icon_id": "17104001", + "name": "funds-box-line", + "font_class": "funds-box-line", + "unicode": "e7b8", + "unicode_decimal": 59320 + }, + { + "icon_id": "17104806", + "name": "leaf-line", + "font_class": "leaf-line", + "unicode": "e830", + "unicode_decimal": 59440 + }, + { + "icon_id": "17104807", + "name": "leaf-fill", + "font_class": "leaf-fill", + "unicode": "e835", + "unicode_decimal": 59445 + }, + { + "icon_id": "17104814", + "name": "lightbulb-line", + "font_class": "lightbulb-line", + "unicode": "e836", + "unicode_decimal": 59446 + }, + { + "icon_id": "17104815", + "name": "lightbulb-flash-fill", + "font_class": "lightbulb-flash-fill", + "unicode": "e837", + "unicode_decimal": 59447 + }, + { + "icon_id": "17104820", + "name": "plant-fill", + "font_class": "plant-fill", + "unicode": "e838", + "unicode_decimal": 59448 + }, + { + "icon_id": "17104822", + "name": "plant-line", + "font_class": "plant-line", + "unicode": "e844", + "unicode_decimal": 59460 + }, + { + "icon_id": "17104850", + "name": "voice-recognition-fill", + "font_class": "voice-recognition-fill", + "unicode": "e845", + "unicode_decimal": 59461 + }, + { + "icon_id": "17104856", + "name": "voice-recognition-line", + "font_class": "voice-recognition-line", + "unicode": "e846", + "unicode_decimal": 59462 + }, + { + "icon_id": "17105023", + "name": "function-line", + "font_class": "function-line", + "unicode": "e85e", + "unicode_decimal": 59486 + }, + { + "icon_id": "17105268", + "name": "team-fill", + "font_class": "team-fill", + "unicode": "e88a", + "unicode_decimal": 59530 + }, + { + "icon_id": "17105270", + "name": "team-line", + "font_class": "team-line", + "unicode": "e88b", + "unicode_decimal": 59531 + }, + { + "icon_id": "17103574", + "name": "file-shield-fill", + "font_class": "file-shield-fill", + "unicode": "e775", + "unicode_decimal": 59253 + }, + { + "icon_id": "17103575", + "name": "file-shield-2-line", + "font_class": "file-shield-2-line", + "unicode": "e779", + "unicode_decimal": 59257 + }, + { + "icon_id": "1393717", + "name": "question", + "font_class": "question", + "unicode": "e714", + "unicode_decimal": 59156 + }, + { + "icon_id": "20313973", + "name": "显卡类型", + "font_class": "xiankaleixing", + "unicode": "e623", + "unicode_decimal": 58915 + }, + { + "icon_id": "24342357", + "name": "send message-line", + "font_class": "a-sendmessage-line", + "unicode": "ea60", + "unicode_decimal": 60000 + }, + { + "icon_id": "24342371", + "name": "send message-fill", + "font_class": "a-sendmessage-fill", + "unicode": "ea61", + "unicode_decimal": 60001 + }, + { + "icon_id": "6176572", + "name": "内存", + "font_class": "neicun", + "unicode": "e627", + "unicode_decimal": 58919 + }, + { + "icon_id": "17103339", + "name": "database-2-line", + "font_class": "database-2-line", + "unicode": "e740", + "unicode_decimal": 59200 + }, + { + "icon_id": "17103340", + "name": "database-2-fill", + "font_class": "database-2-fill", + "unicode": "e741", + "unicode_decimal": 59201 + }, + { + "icon_id": "19567492", + "name": "监控管理", + "font_class": "jiankongguanli", + "unicode": "e6a9", + "unicode_decimal": 59049 + }, + { + "icon_id": "24341375", + "name": "computer end-line", + "font_class": "a-computerend-line", + "unicode": "ea62", + "unicode_decimal": 60002 + }, + { + "icon_id": "24341397", + "name": "computer more-line", + "font_class": "a-computermore-line", + "unicode": "ea65", + "unicode_decimal": 60005 + }, + { + "icon_id": "24341399", + "name": "computer public-line", + "font_class": "a-computerpublic-line", + "unicode": "ea66", + "unicode_decimal": 60006 + }, + { + "icon_id": "24341400", + "name": "computer-fill", + "font_class": "computer-fill", + "unicode": "ea67", + "unicode_decimal": 60007 + }, + { + "icon_id": "24341401", + "name": "computer movement-fill", + "font_class": "a-computermovement-fill", + "unicode": "ea68", + "unicode_decimal": 60008 + }, + { + "icon_id": "24341407", + "name": "computer more-fill", + "font_class": "a-computermore-fill", + "unicode": "ea6a", + "unicode_decimal": 60010 + }, + { + "icon_id": "24341415", + "name": "computer warning-line", + "font_class": "a-computerwarning-line", + "unicode": "ea6e", + "unicode_decimal": 60014 + }, + { + "icon_id": "24341416", + "name": "computer trend-fill", + "font_class": "a-computertrend-fill", + "unicode": "ea6f", + "unicode_decimal": 60015 + }, + { + "icon_id": "24341417", + "name": "computer set-fill", + "font_class": "a-computerset-fill", + "unicode": "ea70", + "unicode_decimal": 60016 + }, + { + "icon_id": "24341419", + "name": "compose-line", + "font_class": "compose-line", + "unicode": "ea71", + "unicode_decimal": 60017 + }, + { + "icon_id": "24341420", + "name": "compose-fill", + "font_class": "compose-fill", + "unicode": "ea72", + "unicode_decimal": 60018 + }, + { + "icon_id": "24341421", + "name": "computer end-fill", + "font_class": "a-computerend-fill", + "unicode": "ea73", + "unicode_decimal": 60019 + }, + { + "icon_id": "24341422", + "name": "computer error-line", + "font_class": "a-computererror-line", + "unicode": "ea74", + "unicode_decimal": 60020 + }, + { + "icon_id": "24341423", + "name": "computer volatility-fill", + "font_class": "a-computervolatility-fill", + "unicode": "ea75", + "unicode_decimal": 60021 + }, + { + "icon_id": "24341426", + "name": "computer error-fill", + "font_class": "a-computererror-fill", + "unicode": "ea76", + "unicode_decimal": 60022 + }, + { + "icon_id": "24341430", + "name": "computer set-line", + "font_class": "a-computerset-line", + "unicode": "ea77", + "unicode_decimal": 60023 + }, + { + "icon_id": "24341436", + "name": "computer trend-line", + "font_class": "a-computertrend-line", + "unicode": "ea78", + "unicode_decimal": 60024 + }, + { + "icon_id": "24341444", + "name": "computer volatility-line", + "font_class": "a-computervolatility-line", + "unicode": "ea79", + "unicode_decimal": 60025 + }, + { + "icon_id": "24341450", + "name": "computer-line", + "font_class": "computer-line", + "unicode": "ea7a", + "unicode_decimal": 60026 + }, + { + "icon_id": "24341463", + "name": "computer public-fill", + "font_class": "a-computerpublic-fill", + "unicode": "ea7b", + "unicode_decimal": 60027 + }, + { + "icon_id": "24341505", + "name": "double right line-line", + "font_class": "a-doublerightline-line", + "unicode": "e9e6", + "unicode_decimal": 59878 + }, + { + "icon_id": "24341510", + "name": "double left line-line", + "font_class": "a-doubleleftline-line", + "unicode": "ea5f", + "unicode_decimal": 59999 + }, + { + "icon_id": "17103032", + "name": "drag-move-line", + "font_class": "drag-move-line", + "unicode": "e713", + "unicode_decimal": 59155 + }, + { + "icon_id": "17105349", + "name": "flashlight-fill", + "font_class": "flashlight-fill", + "unicode": "e898", + "unicode_decimal": 59544 + }, + { + "icon_id": "17105353", + "name": "flashlight-line", + "font_class": "flashlight-line", + "unicode": "e899", + "unicode_decimal": 59545 + }, + { + "icon_id": "24341084", + "name": "adhibition-line", + "font_class": "adhibition-line", + "unicode": "e9e5", + "unicode_decimal": 59877 + }, + { + "icon_id": "6135282", + "name": "net", + "font_class": "net", + "unicode": "e64b", + "unicode_decimal": 58955 + }, + { + "icon_id": "24342590", + "name": "timer shaft-fill", + "font_class": "a-timershaft-fill", + "unicode": "ea5c", + "unicode_decimal": 59996 + }, + { + "icon_id": "24342594", + "name": "timer shaft-line", + "font_class": "a-timershaft-line", + "unicode": "ea5e", + "unicode_decimal": 59998 + }, + { + "icon_id": "17105153", + "name": "subtract-fill", + "font_class": "subtract-fill", + "unicode": "e87a", + "unicode_decimal": 59514 + }, + { + "icon_id": "17105163", + "name": "subtract-line", + "font_class": "subtract-line", + "unicode": "e889", + "unicode_decimal": 59529 + }, + { + "icon_id": "17105076", + "name": "menu-line", + "font_class": "menu-line", + "unicode": "e867", + "unicode_decimal": 59495 + }, + { + "icon_id": "17105005", + "name": "download-line", + "font_class": "download1-line", + "unicode": "e93b", + "unicode_decimal": 59707 + }, + { + "icon_id": "17105175", + "name": "upload-line", + "font_class": "upload1-line", + "unicode": "e942", + "unicode_decimal": 59714 + }, + { + "icon_id": "17104961", + "name": "close-line", + "font_class": "close-line", + "unicode": "e8ee", + "unicode_decimal": 59630 + }, + { + "icon_id": "17104963", + "name": "close-fill", + "font_class": "close-fill", + "unicode": "e8ef", + "unicode_decimal": 59631 + }, + { + "icon_id": "9182139", + "name": "-out", + "font_class": "-out", + "unicode": "ee89", + "unicode_decimal": 61065 + }, + { + "icon_id": "17103059", + "name": "grid-fill", + "font_class": "grid-fill", + "unicode": "e712", + "unicode_decimal": 59154 + }, + { + "icon_id": "16617631", + "name": "unhealth-fill", + "font_class": "unhealth-fill", + "unicode": "efdb", + "unicode_decimal": 61403 + }, + { + "icon_id": "16617632", + "name": "health", + "font_class": "health", + "unicode": "efdc", + "unicode_decimal": 61404 + }, + { + "icon_id": "16617633", + "name": "unhealth", + "font_class": "unhealth", + "unicode": "efdd", + "unicode_decimal": 61405 + }, + { + "icon_id": "16617634", + "name": "health-fill", + "font_class": "health-fill", + "unicode": "efde", + "unicode_decimal": 61406 + }, + { + "icon_id": "24341121", + "name": "article-fill", + "font_class": "article-fill", + "unicode": "ea5d", + "unicode_decimal": 59997 + }, + { + "icon_id": "17102592", + "name": "hotel-line", + "font_class": "hotel-line", + "unicode": "e6bb", + "unicode_decimal": 59067 + }, + { + "icon_id": "17102596", + "name": "hotel-fill", + "font_class": "hotel-fill", + "unicode": "e6bc", + "unicode_decimal": 59068 + }, + { + "icon_id": "17102554", + "name": "building-fill", + "font_class": "building-fill1", + "unicode": "e6b1", + "unicode_decimal": 59057 + }, + { + "icon_id": "17102557", + "name": "building-line", + "font_class": "building-line", + "unicode": "e6b2", + "unicode_decimal": 59058 + }, + { + "icon_id": "29707485", + "name": "danban", + "font_class": "danban", + "unicode": "e61c", + "unicode_decimal": 58908 + }, + { + "icon_id": "29707161", + "name": "server-circle", + "font_class": "server-circle1", + "unicode": "e61a", + "unicode_decimal": 58906 + }, + { + "icon_id": "29706240", + "name": "port", + "font_class": "port", + "unicode": "e611", + "unicode_decimal": 58897 + }, + { + "icon_id": "29345954", + "name": "waf", + "font_class": "waf", + "unicode": "e617", + "unicode_decimal": 58903 + }, + { + "icon_id": "29345944", + "name": "ddos", + "font_class": "ddos", + "unicode": "e616", + "unicode_decimal": 58902 + }, + { + "icon_id": "29345030", + "name": "control-circle", + "font_class": "control-circle1", + "unicode": "e615", + "unicode_decimal": 58901 + }, + { + "icon_id": "5595120", + "name": "23d", + "font_class": "d", + "unicode": "e614", + "unicode_decimal": 58900 + }, + { + "icon_id": "17102999", + "name": "brush-3-fill", + "font_class": "brush-3-fill", + "unicode": "e708", + "unicode_decimal": 59144 + }, + { + "icon_id": "17103003", + "name": "brush-3-line", + "font_class": "brush-3-line", + "unicode": "e709", + "unicode_decimal": 59145 + }, + { + "icon_id": "17104076", + "name": "water-flash-fill", + "font_class": "water-flash-fill", + "unicode": "e7bc", + "unicode_decimal": 59324 + }, + { + "icon_id": "17104078", + "name": "water-flash-line", + "font_class": "water-flash-line", + "unicode": "e7bd", + "unicode_decimal": 59325 + }, + { + "icon_id": "29343549", + "name": "coupon-4-circle", + "font_class": "coupon-4-circle", + "unicode": "e613", + "unicode_decimal": 58899 + }, + { + "icon_id": "29343462", + "name": "lun-circle", + "font_class": "lun-circle", + "unicode": "e60d", + "unicode_decimal": 58893 + }, + { + "icon_id": "29343463", + "name": "book-2-circle", + "font_class": "book-2-circle", + "unicode": "e60e", + "unicode_decimal": 58894 + }, + { + "icon_id": "29343464", + "name": "iscsi-circle", + "font_class": "iscsi-circle", + "unicode": "e60f", + "unicode_decimal": 58895 + }, + { + "icon_id": "29343465", + "name": "fan-circle", + "font_class": "fan-circle", + "unicode": "e610", + "unicode_decimal": 58896 + }, + { + "icon_id": "29343467", + "name": "store-circle", + "font_class": "store-circle1", + "unicode": "e612", + "unicode_decimal": 58898 + }, + { + "icon_id": "17103478", + "name": "book-2-fill", + "font_class": "book-2-fill", + "unicode": "e75c", + "unicode_decimal": 59228 + }, + { + "icon_id": "17103482", + "name": "book-2-line", + "font_class": "book-2-line", + "unicode": "e75d", + "unicode_decimal": 59229 + }, + { + "icon_id": "17102703", + "name": "archive-drawer-fill", + "font_class": "archive-drawer-fill", + "unicode": "e6be", + "unicode_decimal": 59070 + }, + { + "icon_id": "17102707", + "name": "archive-drawer-line", + "font_class": "archive-drawer-line", + "unicode": "e6bf", + "unicode_decimal": 59071 + }, + { + "icon_id": "22002589", + "name": "control", + "font_class": "control", + "unicode": "e618", + "unicode_decimal": 58904 + }, + { + "icon_id": "22002590", + "name": "iscsi", + "font_class": "iscsi", + "unicode": "e619", + "unicode_decimal": 58905 + }, + { + "icon_id": "22002592", + "name": "lun", + "font_class": "lun", + "unicode": "e61b", + "unicode_decimal": 58907 + }, + { + "icon_id": "16641896", + "name": "store-fill", + "font_class": "store-fill", + "unicode": "f014", + "unicode_decimal": 61460 + }, + { + "icon_id": "16641897", + "name": "store", + "font_class": "store", + "unicode": "f015", + "unicode_decimal": 61461 + }, + { + "icon_id": "17105120", + "name": "shield-check-fill", + "font_class": "shield-check-fill", + "unicode": "e8db", + "unicode_decimal": 59611 + }, + { + "icon_id": "17105121", + "name": "shield-check-line", + "font_class": "shield-check-line", + "unicode": "e8dc", + "unicode_decimal": 59612 + }, + { + "icon_id": "17105122", + "name": "shield-cross-fill", + "font_class": "shield-cross-fill", + "unicode": "e8dd", + "unicode_decimal": 59613 + }, + { + "icon_id": "17105124", + "name": "shield-cross-line", + "font_class": "shield-cross-line", + "unicode": "e8df", + "unicode_decimal": 59615 + }, + { + "icon_id": "17103544", + "name": "file-list-2-fill", + "font_class": "file-list-2-fill", + "unicode": "e76d", + "unicode_decimal": 59245 + }, + { + "icon_id": "17103546", + "name": "file-list-3-fill", + "font_class": "file-list-3-fill", + "unicode": "e76e", + "unicode_decimal": 59246 + }, + { + "icon_id": "17103547", + "name": "file-list-3-line", + "font_class": "file-list-3-line", + "unicode": "e76f", + "unicode_decimal": 59247 + }, + { + "icon_id": "17103548", + "name": "file-list-2-line", + "font_class": "file-list-2-line", + "unicode": "e770", + "unicode_decimal": 59248 + }, + { + "icon_id": "16441241", + "name": "node-fill", + "font_class": "node-fill", + "unicode": "ef83", + "unicode_decimal": 61315 + }, + { + "icon_id": "16441242", + "name": "node", + "font_class": "node", + "unicode": "ef84", + "unicode_decimal": 61316 + }, + { + "icon_id": "17103578", + "name": "file-text-fill", + "font_class": "file-text-fill", + "unicode": "e777", + "unicode_decimal": 59255 + }, + { + "icon_id": "17103580", + "name": "file-text-line", + "font_class": "file-text-line", + "unicode": "e778", + "unicode_decimal": 59256 + }, + { + "icon_id": "17102987", + "name": "anticlockwise-2-line", + "font_class": "anticlockwise-2-line", + "unicode": "e700", + "unicode_decimal": 59136 + }, + { + "icon_id": "17102988", + "name": "anticlockwise-fill", + "font_class": "anticlockwise-fill", + "unicode": "e701", + "unicode_decimal": 59137 + }, + { + "icon_id": "17102989", + "name": "anticlockwise-2-fill", + "font_class": "anticlockwise-2-fill", + "unicode": "e702", + "unicode_decimal": 59138 + }, + { + "icon_id": "17102990", + "name": "anticlockwise-line", + "font_class": "anticlockwise-line", + "unicode": "e703", + "unicode_decimal": 59139 + }, + { + "icon_id": "17102991", + "name": "artboard-2-line", + "font_class": "artboard-2-line", + "unicode": "e704", + "unicode_decimal": 59140 + }, + { + "icon_id": "17102992", + "name": "artboard-2-fill", + "font_class": "artboard-2-fill", + "unicode": "e705", + "unicode_decimal": 59141 + }, + { + "icon_id": "17103006", + "name": "clockwise-2-fill", + "font_class": "clockwise-2-fill", + "unicode": "e706", + "unicode_decimal": 59142 + }, + { + "icon_id": "17103007", + "name": "clockwise-line", + "font_class": "clockwise-line", + "unicode": "e707", + "unicode_decimal": 59143 + }, + { + "icon_id": "17103492", + "name": "contacts-book-2-fill", + "font_class": "contacts-book-2-fill", + "unicode": "e760", + "unicode_decimal": 59232 + }, + { + "icon_id": "17103494", + "name": "contacts-book-2-line", + "font_class": "contacts-book-2-line", + "unicode": "e761", + "unicode_decimal": 59233 + }, + { + "icon_id": "17103495", + "name": "contacts-book-fill", + "font_class": "contacts-book-fill", + "unicode": "e762", + "unicode_decimal": 59234 + }, + { + "icon_id": "17103496", + "name": "contacts-book-line", + "font_class": "contacts-book-line", + "unicode": "e763", + "unicode_decimal": 59235 + }, + { + "icon_id": "17104279", + "name": "mini-program-line", + "font_class": "mini-program-line", + "unicode": "e7d6", + "unicode_decimal": 59350 + }, + { + "icon_id": "17104292", + "name": "mini-program-fill", + "font_class": "mini-program-fill", + "unicode": "e7d7", + "unicode_decimal": 59351 + }, + { + "icon_id": "17104471", + "name": "map-pin-line", + "font_class": "map-pin-line", + "unicode": "e7ef", + "unicode_decimal": 59375 + }, + { + "icon_id": "17104473", + "name": "map-pin-fill", + "font_class": "map-pin-fill", + "unicode": "e7f0", + "unicode_decimal": 59376 + }, + { + "icon_id": "17103498", + "name": "book-mark-line", + "font_class": "book-mark-line", + "unicode": "e75f", + "unicode_decimal": 59231 + }, + { + "icon_id": "17103510", + "name": "file-chart-2-line", + "font_class": "file-chart-2-line", + "unicode": "e764", + "unicode_decimal": 59236 + }, + { + "icon_id": "17103512", + "name": "file-chart-2-fill", + "font_class": "file-chart-2-fill", + "unicode": "e769", + "unicode_decimal": 59241 + }, + { + "icon_id": "28901224", + "name": "laptop-set-fill", + "font_class": "laptop-set-fill", + "unicode": "e60c", + "unicode_decimal": 58892 + }, + { + "icon_id": "17102799", + "name": "links-fill", + "font_class": "links-fill", + "unicode": "e6d7", + "unicode_decimal": 59095 + }, + { + "icon_id": "17102800", + "name": "links-line", + "font_class": "links-line", + "unicode": "e6d8", + "unicode_decimal": 59096 + }, + { + "icon_id": "17103776", + "name": "link-m", + "font_class": "link-m", + "unicode": "e79b", + "unicode_decimal": 59291 + }, + { + "icon_id": "17103777", + "name": "link-unlink-m", + "font_class": "link-unlink-m", + "unicode": "e79c", + "unicode_decimal": 59292 + }, + { + "icon_id": "17103778", + "name": "link-unlink", + "font_class": "link-unlink", + "unicode": "e79d", + "unicode_decimal": 59293 + }, + { + "icon_id": "17103779", + "name": "link", + "font_class": "link", + "unicode": "e79e", + "unicode_decimal": 59294 + }, + { + "icon_id": "17105267", + "name": "star-smile-fill", + "font_class": "star-smile-fill", + "unicode": "e887", + "unicode_decimal": 59527 + }, + { + "icon_id": "17105271", + "name": "star-smile-line", + "font_class": "star-smile-line", + "unicode": "e888", + "unicode_decimal": 59528 + }, + { + "icon_id": "28726901", + "name": "download-line", + "font_class": "download-line", + "unicode": "e608", + "unicode_decimal": 58888 + }, + { + "icon_id": "28726902", + "name": "download-fill", + "font_class": "download-fill", + "unicode": "e609", + "unicode_decimal": 58889 + }, + { + "icon_id": "28726903", + "name": "upload-line", + "font_class": "upload-line", + "unicode": "e60a", + "unicode_decimal": 58890 + }, + { + "icon_id": "28726904", + "name": "upload-fill", + "font_class": "upload-fill", + "unicode": "e60b", + "unicode_decimal": 58891 + }, + { + "icon_id": "28726762", + "name": "top-cn", + "font_class": "top-cn", + "unicode": "e606", + "unicode_decimal": 58886 + }, + { + "icon_id": "28726763", + "name": "top-en", + "font_class": "top-en", + "unicode": "e607", + "unicode_decimal": 58887 + }, + { + "icon_id": "28726722", + "name": "cpu-line-bg", + "font_class": "cpu-line-bg", + "unicode": "e62a", + "unicode_decimal": 58922 + }, + { + "icon_id": "28726723", + "name": "plug-line-bg", + "font_class": "plug-line-bg", + "unicode": "e62b", + "unicode_decimal": 58923 + }, + { + "icon_id": "28726724", + "name": "fan-line-bg", + "font_class": "fan-line-bg", + "unicode": "e62c", + "unicode_decimal": 58924 + }, + { + "icon_id": "28726725", + "name": "save-line-bg", + "font_class": "save-line-bg", + "unicode": "e62d", + "unicode_decimal": 58925 + }, + { + "icon_id": "17103408", + "name": "save-fill", + "font_class": "save-fill", + "unicode": "e74e", + "unicode_decimal": 59214 + }, + { + "icon_id": "17103410", + "name": "save-line", + "font_class": "save-line", + "unicode": "e74f", + "unicode_decimal": 59215 + }, + { + "icon_id": "17369997", + "name": "fan", + "font_class": "fan", + "unicode": "f668", + "unicode_decimal": 63080 + }, + { + "icon_id": "17103332", + "name": "cpu-fill", + "font_class": "cpu-fill", + "unicode": "e73e", + "unicode_decimal": 59198 + }, + { + "icon_id": "17103333", + "name": "cpu-line", + "font_class": "cpu-line", + "unicode": "e73f", + "unicode_decimal": 59199 + }, + { + "icon_id": "16471349", + "name": "details-rack", + "font_class": "details-rack", + "unicode": "efb4", + "unicode_decimal": 61364 + }, + { + "icon_id": "16471350", + "name": "details-server", + "font_class": "details-server", + "unicode": "efb5", + "unicode_decimal": 61365 + }, + { + "icon_id": "16472175", + "name": "details-firewall", + "font_class": "details-firewall", + "unicode": "efb6", + "unicode_decimal": 61366 + }, + { + "icon_id": "16472176", + "name": "details-cutte", + "font_class": "details-cutte", + "unicode": "efb7", + "unicode_decimal": 61367 + }, + { + "icon_id": "19444499", + "name": "details-store-fill", + "font_class": "details-store-fill", + "unicode": "f076", + "unicode_decimal": 61558 + }, + { + "icon_id": "19444500", + "name": "details-fram", + "font_class": "details-fram", + "unicode": "f077", + "unicode_decimal": 61559 + }, + { + "icon_id": "19444768", + "name": "details-safe", + "font_class": "details-safe", + "unicode": "f078", + "unicode_decimal": 61560 + }, + { + "icon_id": "17104669", + "name": "picture-in-picture-exit-fill", + "font_class": "picture-in-picture-exit-fill", + "unicode": "e81f", + "unicode_decimal": 59423 + }, + { + "icon_id": "17104671", + "name": "picture-in-picture-exit-line", + "font_class": "picture-in-picture-exit-line", + "unicode": "e821", + "unicode_decimal": 59425 + }, + { + "icon_id": "17104748", + "name": "vidicon-2-fill", + "font_class": "vidicon-2-fill", + "unicode": "e822", + "unicode_decimal": 59426 + }, + { + "icon_id": "17104749", + "name": "vidicon-2-line", + "font_class": "vidicon-2-line", + "unicode": "e823", + "unicode_decimal": 59427 + }, + { + "icon_id": "19129991", + "name": "restart", + "font_class": "restart", + "unicode": "f069", + "unicode_decimal": 61545 + }, + { + "icon_id": "24342513", + "name": "switch off-line", + "font_class": "a-switchoff-line", + "unicode": "ea5a", + "unicode_decimal": 59994 + }, + { + "icon_id": "24342515", + "name": "switch on-line", + "font_class": "a-switchon-line", + "unicode": "ea5b", + "unicode_decimal": 59995 + }, + { + "icon_id": "17103420", + "name": "server-line", + "font_class": "server-line", + "unicode": "e791", + "unicode_decimal": 59281 + }, + { + "icon_id": "17103421", + "name": "server-fill", + "font_class": "server-fill1", + "unicode": "e792", + "unicode_decimal": 59282 + }, + { + "icon_id": "17103400", + "name": "router-line", + "font_class": "router-line", + "unicode": "e74c", + "unicode_decimal": 59212 + }, + { + "icon_id": "17103401", + "name": "router-fill", + "font_class": "router-fill", + "unicode": "e74d", + "unicode_decimal": 59213 + }, + { + "icon_id": "17103751", + "name": "flow-chart", + "font_class": "flow-chart", + "unicode": "e795", + "unicode_decimal": 59285 + }, + { + "icon_id": "17103798", + "name": "organization-chart", + "font_class": "organization-chart", + "unicode": "e7a0", + "unicode_decimal": 59296 + }, + { + "icon_id": "17105209", + "name": "account-circle-fill", + "font_class": "account-circle-fill", + "unicode": "e885", + "unicode_decimal": 59525 + }, + { + "icon_id": "17105210", + "name": "account-circle-line", + "font_class": "account-circle-line", + "unicode": "e886", + "unicode_decimal": 59526 + }, + { + "icon_id": "17104912", + "name": "arrow-left-circle-fill", + "font_class": "arrow-left-circle-fill", + "unicode": "e841", + "unicode_decimal": 59457 + }, + { + "icon_id": "17104916", + "name": "arrow-left-circle-line", + "font_class": "arrow-left-circle-line", + "unicode": "e843", + "unicode_decimal": 59459 + }, + { + "icon_id": "17104927", + "name": "arrow-right-circle-fill", + "font_class": "arrow-right-circle-fill", + "unicode": "e842", + "unicode_decimal": 59458 + }, + { + "icon_id": "17105010", + "name": "arrow-right-circle-line", + "font_class": "arrow-right-circle-line", + "unicode": "e857", + "unicode_decimal": 59479 + }, + { + "icon_id": "17103532", + "name": "file-edit-line", + "font_class": "file-edit-line", + "unicode": "e76a", + "unicode_decimal": 59242 + }, + { + "icon_id": "17103538", + "name": "file-edit-fill", + "font_class": "file-edit-fill", + "unicode": "e76b", + "unicode_decimal": 59243 + }, + { + "icon_id": "17102831", + "name": "pie-chart-fill", + "font_class": "pie-chart-fill", + "unicode": "e6e3", + "unicode_decimal": 59107 + }, + { + "icon_id": "17102833", + "name": "pie-chart-line", + "font_class": "pie-chart-line", + "unicode": "e6e4", + "unicode_decimal": 59108 + }, + { + "icon_id": "27961799", + "name": "up-mirror-image", + "font_class": "up-mirror-image", + "unicode": "e602", + "unicode_decimal": 58882 + }, + { + "icon_id": "27961800", + "name": "up-borderverticle-fill", + "font_class": "up-borderverticle-fill", + "unicode": "e603", + "unicode_decimal": 58883 + }, + { + "icon_id": "27961801", + "name": "search-add", + "font_class": "search-add", + "unicode": "e604", + "unicode_decimal": 58884 + }, + { + "icon_id": "27961802", + "name": "search-min", + "font_class": "search-min", + "unicode": "e605", + "unicode_decimal": 58885 + }, + { + "icon_id": "17104519", + "name": "rocket-line", + "font_class": "rocket-line", + "unicode": "e7f4", + "unicode_decimal": 59380 + }, + { + "icon_id": "17104515", + "name": "rocket-fill", + "font_class": "rocket-fill", + "unicode": "e7f3", + "unicode_decimal": 59379 + }, + { + "icon_id": "17103337", + "name": "dashboard-3-fill", + "font_class": "dashboard-3-fill", + "unicode": "e73c", + "unicode_decimal": 59196 + }, + { + "icon_id": "17103341", + "name": "dashboard-3-line", + "font_class": "dashboard-3-line", + "unicode": "e73d", + "unicode_decimal": 59197 + }, + { + "icon_id": "17103975", + "name": "exchange-funds-line", + "font_class": "exchange-funds-line", + "unicode": "e7b2", + "unicode_decimal": 59314 + }, + { + "icon_id": "17105156", + "name": "time-fill", + "font_class": "time-fill", + "unicode": "e883", + "unicode_decimal": 59523 + }, + { + "icon_id": "17105158", + "name": "time-line", + "font_class": "time-line", + "unicode": "e884", + "unicode_decimal": 59524 + }, + { + "icon_id": "17105161", + "name": "timer-fill", + "font_class": "timer-fill", + "unicode": "ea58", + "unicode_decimal": 59992 + }, + { + "icon_id": "17105172", + "name": "timer-line", + "font_class": "timer-line", + "unicode": "ea59", + "unicode_decimal": 59993 + }, + { + "icon_id": "17103037", + "name": "edit-box-fill", + "font_class": "edit-box-fill", + "unicode": "e70f", + "unicode_decimal": 59151 + }, + { + "icon_id": "17103038", + "name": "edit-box-line", + "font_class": "edit-box-line", + "unicode": "e710", + "unicode_decimal": 59152 + }, + { + "icon_id": "17105000", + "name": "eye-close-line", + "font_class": "eye-close-line", + "unicode": "e939", + "unicode_decimal": 59705 + }, + { + "icon_id": "17105004", + "name": "eye-close-fill", + "font_class": "eye-close-fill", + "unicode": "e93a", + "unicode_decimal": 59706 + }, + { + "icon_id": "17105007", + "name": "eye-off-fill", + "font_class": "eye-off-fill", + "unicode": "e93d", + "unicode_decimal": 59709 + }, + { + "icon_id": "17104903", + "name": "arrow-drop-down-line", + "font_class": "arrow-drop-down-line", + "unicode": "e951", + "unicode_decimal": 59729 + }, + { + "icon_id": "17104904", + "name": "arrow-drop-down-fill", + "font_class": "arrow-drop-down-fill", + "unicode": "e952", + "unicode_decimal": 59730 + }, + { + "icon_id": "17104905", + "name": "arrow-drop-left-line", + "font_class": "arrow-drop-left-line", + "unicode": "e953", + "unicode_decimal": 59731 + }, + { + "icon_id": "17104906", + "name": "arrow-drop-left-fill", + "font_class": "arrow-drop-left-fill", + "unicode": "e954", + "unicode_decimal": 59732 + }, + { + "icon_id": "17104907", + "name": "arrow-drop-right-line", + "font_class": "arrow-drop-right-line", + "unicode": "e956", + "unicode_decimal": 59734 + }, + { + "icon_id": "17104908", + "name": "arrow-drop-right-fill", + "font_class": "arrow-drop-right-fill", + "unicode": "e957", + "unicode_decimal": 59735 + }, + { + "icon_id": "17104910", + "name": "arrow-drop-up-fill", + "font_class": "arrow-drop-up-fill", + "unicode": "e959", + "unicode_decimal": 59737 + }, + { + "icon_id": "17104913", + "name": "arrow-drop-up-line", + "font_class": "arrow-drop-up-line", + "unicode": "e95a", + "unicode_decimal": 59738 + }, + { + "icon_id": "17104923", + "name": "arrow-left-s-fill", + "font_class": "arrow-left-s-fill", + "unicode": "e961", + "unicode_decimal": 59745 + }, + { + "icon_id": "17104933", + "name": "arrow-right-s-fill", + "font_class": "arrow-right-s-fill", + "unicode": "e96b", + "unicode_decimal": 59755 + }, + { + "icon_id": "17104998", + "name": "eye-fill", + "font_class": "eye-fill", + "unicode": "e937", + "unicode_decimal": 59703 + }, + { + "icon_id": "17104999", + "name": "eye-line", + "font_class": "eye-line", + "unicode": "e938", + "unicode_decimal": 59704 + }, + { + "icon_id": "17103035", + "name": "drag-move-2-line", + "font_class": "drag-move-2-line", + "unicode": "e716", + "unicode_decimal": 59158 + }, + { + "icon_id": "17103031", + "name": "drag-move-fill", + "font_class": "drag-move-fill", + "unicode": "e712", + "unicode_decimal": 59154 + }, + { + "icon_id": "9335607", + "name": "-alignleft-fill", + "font_class": "alignleft-fill", + "unicode": "ee95", + "unicode_decimal": 61077 + }, + { + "icon_id": "9335608", + "name": "-borderbottom-fill", + "font_class": "borderbottom-fill", + "unicode": "ee96", + "unicode_decimal": 61078 + }, + { + "icon_id": "9335609", + "name": "-alignright-fill", + "font_class": "-alignright-fill", + "unicode": "ee97", + "unicode_decimal": 61079 + }, + { + "icon_id": "9335610", + "name": "-bordertop-fill", + "font_class": "bordertop-fill", + "unicode": "ee98", + "unicode_decimal": 61080 + }, + { + "icon_id": "9335611", + "name": "-picside-fill", + "font_class": "picside-fill", + "unicode": "ee99", + "unicode_decimal": 61081 + }, + { + "icon_id": "9335612", + "name": "-borderverticle-fill", + "font_class": "borderverticle-fill", + "unicode": "ee9a", + "unicode_decimal": 61082 + }, + { + "icon_id": "9335613", + "name": "-piccenter-fill", + "font_class": "piccenter-fill", + "unicode": "ee9b", + "unicode_decimal": 61083 + }, + { + "icon_id": "16929988", + "name": "mirror-image", + "font_class": "mirror-image", + "unicode": "f022", + "unicode_decimal": 61474 + }, + { + "icon_id": "17103030", + "name": "drag-drop-fill", + "font_class": "drag-drop-fill", + "unicode": "e711", + "unicode_decimal": 59153 + }, + { + "icon_id": "26159828", + "name": "machine-room", + "font_class": "machine-room", + "unicode": "e628", + "unicode_decimal": 58920 + }, + { + "icon_id": "26159826", + "name": "wall", + "font_class": "wall", + "unicode": "e626", + "unicode_decimal": 58918 + }, + { + "icon_id": "17104897", + "name": "arrow-down-line", + "font_class": "arrow-down-line", + "unicode": "e94b", + "unicode_decimal": 59723 + }, + { + "icon_id": "17104919", + "name": "arrow-left-line", + "font_class": "arrow-left-line", + "unicode": "e95d", + "unicode_decimal": 59741 + }, + { + "icon_id": "17104931", + "name": "arrow-right-line", + "font_class": "arrow-right-line", + "unicode": "e969", + "unicode_decimal": 59753 + }, + { + "icon_id": "17104939", + "name": "arrow-up-line", + "font_class": "arrow-up-line", + "unicode": "e971", + "unicode_decimal": 59761 + }, + { + "icon_id": "17105215", + "name": "account-pin-circle-line", + "font_class": "account-pin-circle-line", + "unicode": "e881", + "unicode_decimal": 59521 + }, + { + "icon_id": "17105216", + "name": "account-pin-circle-fill", + "font_class": "account-pin-circle-fill", + "unicode": "e882", + "unicode_decimal": 59522 + }, + { + "icon_id": "17105098", + "name": "search-line", + "font_class": "search-line1", + "unicode": "e870", + "unicode_decimal": 59504 + }, + { + "icon_id": "17104122", + "name": "heart-2-fill", + "font_class": "heart-2-fill", + "unicode": "e7bf", + "unicode_decimal": 59327 + }, + { + "icon_id": "17104130", + "name": "heart-2-line", + "font_class": "heart-2-line", + "unicode": "e7c0", + "unicode_decimal": 59328 + }, + { + "icon_id": "17105127", + "name": "shield-keyhole-fill", + "font_class": "shield-keyhole-fill", + "unicode": "e877", + "unicode_decimal": 59511 + }, + { + "icon_id": "17105128", + "name": "shield-keyhole-line", + "font_class": "shield-keyhole-line", + "unicode": "e878", + "unicode_decimal": 59512 + }, + { + "icon_id": "18329959", + "name": "edit-lock-fill", + "font_class": "edit-lock-fill", + "unicode": "f053", + "unicode_decimal": 61523 + }, + { + "icon_id": "17103426", + "name": "signal-wifi-1-fill", + "font_class": "signal-wifi-1-fill", + "unicode": "e750", + "unicode_decimal": 59216 + }, + { + "icon_id": "17103427", + "name": "signal-wifi-2-fill", + "font_class": "signal-wifi-2-fill", + "unicode": "e751", + "unicode_decimal": 59217 + }, + { + "icon_id": "17103428", + "name": "signal-wifi-1-line", + "font_class": "signal-wifi-1-line", + "unicode": "e752", + "unicode_decimal": 59218 + }, + { + "icon_id": "17103429", + "name": "signal-wifi-3-line", + "font_class": "signal-wifi-3-line", + "unicode": "e753", + "unicode_decimal": 59219 + }, + { + "icon_id": "17103430", + "name": "signal-wifi-3-fill", + "font_class": "signal-wifi-3-fill", + "unicode": "e754", + "unicode_decimal": 59220 + }, + { + "icon_id": "17103432", + "name": "signal-wifi-2-line", + "font_class": "signal-wifi-2-line", + "unicode": "e755", + "unicode_decimal": 59221 + }, + { + "icon_id": "17103433", + "name": "signal-wifi-error-line", + "font_class": "signal-wifi-error-line", + "unicode": "e756", + "unicode_decimal": 59222 + }, + { + "icon_id": "17103456", + "name": "wifi-line", + "font_class": "wifi-line", + "unicode": "e758", + "unicode_decimal": 59224 + }, + { + "icon_id": "17103457", + "name": "wifi-off-line", + "font_class": "wifi-off-line", + "unicode": "e759", + "unicode_decimal": 59225 + }, + { + "icon_id": "17103458", + "name": "wifi-off-fill", + "font_class": "wifi-off-fill", + "unicode": "e75a", + "unicode_decimal": 59226 + }, + { + "icon_id": "17103459", + "name": "wifi-fill", + "font_class": "wifi-fill", + "unicode": "e75b", + "unicode_decimal": 59227 + }, + { + "icon_id": "17105164", + "name": "upload-2-fill", + "font_class": "upload-2-fill", + "unicode": "e87f", + "unicode_decimal": 59519 + }, + { + "icon_id": "17105170", + "name": "upload-2-line", + "font_class": "upload-2-line", + "unicode": "e880", + "unicode_decimal": 59520 + }, + { + "icon_id": "17102714", + "name": "bar-chart-2-line", + "font_class": "bar-chart-2-line", + "unicode": "e6c0", + "unicode_decimal": 59072 + }, + { + "icon_id": "17102715", + "name": "bar-chart-fill", + "font_class": "bar-chart-fill", + "unicode": "e6c1", + "unicode_decimal": 59073 + }, + { + "icon_id": "17103519", + "name": "file-copy-2-fill", + "font_class": "file-copy-2-fill", + "unicode": "e767", + "unicode_decimal": 59239 + }, + { + "icon_id": "17103520", + "name": "file-copy-2-line", + "font_class": "file-copy-2-line", + "unicode": "e768", + "unicode_decimal": 59240 + }, + { + "icon_id": "16497516", + "name": "waiting-fill", + "font_class": "waiting-fill", + "unicode": "efcb", + "unicode_decimal": 61387 + }, + { + "icon_id": "16497517", + "name": "waiting", + "font_class": "waiting", + "unicode": "efcc", + "unicode_decimal": 61388 + }, + { + "icon_id": "16421386", + "name": "up-f", + "font_class": "up-f", + "unicode": "ef61", + "unicode_decimal": 61281 + }, + { + "icon_id": "16421387", + "name": "down-f", + "font_class": "down-f", + "unicode": "ef62", + "unicode_decimal": 61282 + }, + { + "icon_id": "16421388", + "name": "left-f", + "font_class": "left-f", + "unicode": "ef63", + "unicode_decimal": 61283 + }, + { + "icon_id": "16421389", + "name": "right-f", + "font_class": "right-f", + "unicode": "ef64", + "unicode_decimal": 61284 + }, + { + "icon_id": "16422970", + "name": "chart-area", + "font_class": "chart-area", + "unicode": "ef69", + "unicode_decimal": 61289 + }, + { + "icon_id": "16422971", + "name": "chart-line", + "font_class": "chart-line", + "unicode": "ef6a", + "unicode_decimal": 61290 + }, + { + "icon_id": "16422973", + "name": "chart-bar", + "font_class": "chart-bar", + "unicode": "ef6c", + "unicode_decimal": 61292 + }, + { + "icon_id": "16422974", + "name": "chart-pointmap", + "font_class": "chart-pointmap", + "unicode": "ef6d", + "unicode_decimal": 61293 + }, + { + "icon_id": "18346620", + "name": "certificate-fill", + "font_class": "certificate-fill", + "unicode": "f065", + "unicode_decimal": 61541 + }, + { + "icon_id": "19129992", + "name": "monitor-circle", + "font_class": "monitor-circle", + "unicode": "f06a", + "unicode_decimal": 61546 + }, + { + "icon_id": "19129993", + "name": "store-circle", + "font_class": "store-circle", + "unicode": "f06b", + "unicode_decimal": 61547 + }, + { + "icon_id": "19129994", + "name": "server-circle", + "font_class": "server-circle", + "unicode": "f06c", + "unicode_decimal": 61548 + }, + { + "icon_id": "19129995", + "name": "firewall-circle", + "font_class": "firewall-circle", + "unicode": "f06d", + "unicode_decimal": 61549 + }, + { + "icon_id": "19129996", + "name": "change-circle", + "font_class": "change-circle", + "unicode": "f06e", + "unicode_decimal": 61550 + }, + { + "icon_id": "19129997", + "name": "nic-circle", + "font_class": "nic-circle", + "unicode": "f06f", + "unicode_decimal": 61551 + }, + { + "icon_id": "17102822", + "name": "mail-volume-line", + "font_class": "mail-volume-line", + "unicode": "e6de", + "unicode_decimal": 59102 + }, + { + "icon_id": "17102832", + "name": "mail-volume-fill", + "font_class": "mail-volume-fill", + "unicode": "e6e2", + "unicode_decimal": 59106 + }, + { + "icon_id": "17105092", + "name": "search-eye-fill", + "font_class": "search-eye-fill", + "unicode": "e86e", + "unicode_decimal": 59502 + }, + { + "icon_id": "17105093", + "name": "search-eye-line", + "font_class": "search-eye-line", + "unicode": "e86f", + "unicode_decimal": 59503 + }, + { + "icon_id": "17103396", + "name": "restart-line", + "font_class": "restart-line", + "unicode": "e74a", + "unicode_decimal": 59210 + }, + { + "icon_id": "17103397", + "name": "restart-fill", + "font_class": "restart-fill", + "unicode": "e74b", + "unicode_decimal": 59211 + }, + { + "icon_id": "20257577", + "name": "ongoing", + "font_class": "ongoing", + "unicode": "e601", + "unicode_decimal": 58881 + }, + { + "icon_id": "17104651", + "name": "pause-circle-fill", + "font_class": "pause-circle-fill", + "unicode": "e80f", + "unicode_decimal": 59407 + }, + { + "icon_id": "17104653", + "name": "pause-circle-line", + "font_class": "pause-circle-line", + "unicode": "e810", + "unicode_decimal": 59408 + }, + { + "icon_id": "17104673", + "name": "play-circle-fill", + "font_class": "play-circle-fill", + "unicode": "e811", + "unicode_decimal": 59409 + }, + { + "icon_id": "17104675", + "name": "play-circle-line", + "font_class": "play-circle-line", + "unicode": "e812", + "unicode_decimal": 59410 + }, + { + "icon_id": "17105157", + "name": "timer-2-fill", + "font_class": "timer-2-fill", + "unicode": "e87b", + "unicode_decimal": 59515 + }, + { + "icon_id": "17105162", + "name": "timer-2-line", + "font_class": "timer-2-line", + "unicode": "e87e", + "unicode_decimal": 59518 + }, + { + "icon_id": "17103513", + "name": "file-chart-line", + "font_class": "file-chart-line", + "unicode": "e765", + "unicode_decimal": 59237 + }, + { + "icon_id": "17103514", + "name": "file-chart-fill", + "font_class": "file-chart-fill", + "unicode": "e766", + "unicode_decimal": 59238 + }, + { + "icon_id": "17103579", + "name": "file-transfer-fill", + "font_class": "file-transfer-fill", + "unicode": "e776", + "unicode_decimal": 59254 + }, + { + "icon_id": "17103594", + "name": "file-transfer-line", + "font_class": "file-transfer-line", + "unicode": "e77a", + "unicode_decimal": 59258 + }, + { + "icon_id": "17103568", + "name": "file-search-fill", + "font_class": "file-search-fill", + "unicode": "e773", + "unicode_decimal": 59251 + }, + { + "icon_id": "17103570", + "name": "file-search-line", + "font_class": "file-search-line", + "unicode": "e774", + "unicode_decimal": 59252 + }, + { + "icon_id": "17103973", + "name": "exchange-box-fill", + "font_class": "exchange-box-fill", + "unicode": "e7ae", + "unicode_decimal": 59310 + }, + { + "icon_id": "17103980", + "name": "exchange-box-line", + "font_class": "exchange-box-line", + "unicode": "e7b0", + "unicode_decimal": 59312 + }, + { + "icon_id": "17104762", + "name": "volume-vibrate-line", + "font_class": "volume-vibrate-line", + "unicode": "e826", + "unicode_decimal": 59430 + }, + { + "icon_id": "17104763", + "name": "volume-vibrate-fill", + "font_class": "volume-vibrate-fill", + "unicode": "e827", + "unicode_decimal": 59431 + }, + { + "icon_id": "17104886", + "name": "alarm-fill", + "font_class": "alarm-fill", + "unicode": "e83b", + "unicode_decimal": 59451 + }, + { + "icon_id": "17104887", + "name": "alarm-line", + "font_class": "alarm-line", + "unicode": "e840", + "unicode_decimal": 59456 + }, + { + "icon_id": "16430191", + "name": "laptop-check", + "font_class": "laptop-check", + "unicode": "ef74", + "unicode_decimal": 61300 + }, + { + "icon_id": "16430195", + "name": "laptop-error", + "font_class": "laptop-error", + "unicode": "ef78", + "unicode_decimal": 61304 + }, + { + "icon_id": "16623196", + "name": "laptop-check-fill", + "font_class": "laptop-check-fill", + "unicode": "efdf", + "unicode_decimal": 61407 + }, + { + "icon_id": "16623197", + "name": "laptop-error-fill", + "font_class": "laptop-error-fill", + "unicode": "efe0", + "unicode_decimal": 61408 + }, + { + "icon_id": "24342470", + "name": "statistical view pie chart -line", + "font_class": "a-statisticalviewpiechart-line", + "unicode": "ea56", + "unicode_decimal": 59990 + }, + { + "icon_id": "24342471", + "name": "statistical view pie chart 2-fill", + "font_class": "a-statisticalviewpiechart2-fill", + "unicode": "ea57", + "unicode_decimal": 59991 + }, + { + "icon_id": "17103358", + "name": "hard-drive-2-fill", + "font_class": "hard-drive-2-fill", + "unicode": "e99f", + "unicode_decimal": 59807 + }, + { + "icon_id": "17103359", + "name": "hard-drive-2-line", + "font_class": "hard-drive-2-line", + "unicode": "e9a0", + "unicode_decimal": 59808 + }, + { + "icon_id": "17342936", + "name": "spot", + "font_class": "spot", + "unicode": "f02e", + "unicode_decimal": 61486 + }, + { + "icon_id": "17105085", + "name": "question-fill", + "font_class": "question-fill1", + "unicode": "e86a", + "unicode_decimal": 59498 + }, + { + "icon_id": "17105086", + "name": "question-line", + "font_class": "question-line1", + "unicode": "e86b", + "unicode_decimal": 59499 + }, + { + "icon_id": "16497507", + "name": "table-fire", + "font_class": "table-fire", + "unicode": "efc2", + "unicode_decimal": 61378 + }, + { + "icon_id": "16497508", + "name": "table-fire-fill", + "font_class": "table-fire-fill", + "unicode": "efc3", + "unicode_decimal": 61379 + }, + { + "icon_id": "16497509", + "name": "table-imperative-fill", + "font_class": "table-imperative-fill", + "unicode": "efc4", + "unicode_decimal": 61380 + }, + { + "icon_id": "16497510", + "name": "table-lightning", + "font_class": "table-lightning", + "unicode": "efc5", + "unicode_decimal": 61381 + }, + { + "icon_id": "16497513", + "name": "table-water", + "font_class": "table-water", + "unicode": "efc8", + "unicode_decimal": 61384 + }, + { + "icon_id": "16497514", + "name": "table-imperative", + "font_class": "table-imperative", + "unicode": "efc9", + "unicode_decimal": 61385 + }, + { + "icon_id": "16497515", + "name": "table-lightning-fill", + "font_class": "table-lightning-fill", + "unicode": "efca", + "unicode_decimal": 61386 + }, + { + "icon_id": "16497518", + "name": "table-water-fill", + "font_class": "table-water-fill", + "unicode": "efcd", + "unicode_decimal": 61389 + }, + { + "icon_id": "16497521", + "name": "exclamation-circle", + "font_class": "exclamation-circle", + "unicode": "efd0", + "unicode_decimal": 61392 + }, + { + "icon_id": "16497522", + "name": "info-circle-fill", + "font_class": "info-circle-fill", + "unicode": "efd1", + "unicode_decimal": 61393 + }, + { + "icon_id": "16497523", + "name": "info-circle", + "font_class": "info-circle", + "unicode": "efd2", + "unicode_decimal": 61394 + }, + { + "icon_id": "16497524", + "name": "exclamationcircle-f", + "font_class": "exclamationcircle-f", + "unicode": "efd3", + "unicode_decimal": 61395 + }, + { + "icon_id": "16498182", + "name": "table-condition-fill", + "font_class": "table-condition-fill", + "unicode": "efcf", + "unicode_decimal": 61391 + }, + { + "icon_id": "16498183", + "name": "table-condition", + "font_class": "table-condition", + "unicode": "efd4", + "unicode_decimal": 61396 + }, + { + "icon_id": "18334001", + "name": "details-distributed", + "font_class": "details-distributed", + "unicode": "f055", + "unicode_decimal": 61525 + }, + { + "icon_id": "18334002", + "name": "details-change", + "font_class": "details-change", + "unicode": "f056", + "unicode_decimal": 61526 + }, + { + "icon_id": "18334003", + "name": "database-save-fill", + "font_class": "database-save-fill", + "unicode": "f057", + "unicode_decimal": 61527 + }, + { + "icon_id": "18334004", + "name": "details-router", + "font_class": "details-router", + "unicode": "f058", + "unicode_decimal": 61528 + }, + { + "icon_id": "18334005", + "name": "details-nic", + "font_class": "details-nic", + "unicode": "f059", + "unicode_decimal": 61529 + }, + { + "icon_id": "18334006", + "name": "details-sdn", + "font_class": "details-sdn", + "unicode": "f05a", + "unicode_decimal": 61530 + }, + { + "icon_id": "18334007", + "name": "details-monitor", + "font_class": "details-monitor", + "unicode": "f05b", + "unicode_decimal": 61531 + }, + { + "icon_id": "18334008", + "name": "save-set-fill", + "font_class": "save-set-fill", + "unicode": "f05c", + "unicode_decimal": 61532 + }, + { + "icon_id": "18334009", + "name": "details-store", + "font_class": "details-store", + "unicode": "f05d", + "unicode_decimal": 61533 + }, + { + "icon_id": "18336120", + "name": "details-3d", + "font_class": "details-3d", + "unicode": "f060", + "unicode_decimal": 61536 + }, + { + "icon_id": "18336121", + "name": "details-rule", + "font_class": "details-rule", + "unicode": "f061", + "unicode_decimal": 61537 + }, + { + "icon_id": "18336122", + "name": "details-building", + "font_class": "details-building", + "unicode": "f062", + "unicode_decimal": 61538 + }, + { + "icon_id": "18336123", + "name": "details-ips", + "font_class": "details-ips", + "unicode": "f063", + "unicode_decimal": 61539 + }, + { + "icon_id": "17102806", + "name": "mail-fill", + "font_class": "mail-fill", + "unicode": "e6dc", + "unicode_decimal": 59100 + }, + { + "icon_id": "17102808", + "name": "mail-line", + "font_class": "mail-line", + "unicode": "e6dd", + "unicode_decimal": 59101 + }, + { + "icon_id": "17104950", + "name": "checkbox-circle-line", + "font_class": "checkbox-circle-line", + "unicode": "e8ca", + "unicode_decimal": 59594 + }, + { + "icon_id": "17104951", + "name": "checkbox-circle-fill", + "font_class": "checkbox-circle-fill", + "unicode": "e8cb", + "unicode_decimal": 59595 + }, + { + "icon_id": "17104952", + "name": "checkbox-fill", + "font_class": "checkbox-fill", + "unicode": "e8cc", + "unicode_decimal": 59596 + }, + { + "icon_id": "17104953", + "name": "checkbox-indeterminate-fill", + "font_class": "checkbox-indeterminate-fill", + "unicode": "e8cd", + "unicode_decimal": 59597 + }, + { + "icon_id": "17104954", + "name": "checkbox-line", + "font_class": "checkbox-line", + "unicode": "e8ce", + "unicode_decimal": 59598 + }, + { + "icon_id": "17104955", + "name": "checkbox-multiple-blank-fill", + "font_class": "checkbox-multiple-blank-fill", + "unicode": "e8cf", + "unicode_decimal": 59599 + }, + { + "icon_id": "17104956", + "name": "checkbox-indeterminate-line", + "font_class": "checkbox-indeterminate-line", + "unicode": "e8d0", + "unicode_decimal": 59600 + }, + { + "icon_id": "17104957", + "name": "checkbox-multiple-blank-line", + "font_class": "checkbox-multiple-blank-line", + "unicode": "e8d1", + "unicode_decimal": 59601 + }, + { + "icon_id": "17104958", + "name": "checkbox-multiple-line", + "font_class": "checkbox-multiple-line", + "unicode": "e8d2", + "unicode_decimal": 59602 + }, + { + "icon_id": "17104959", + "name": "close-circle-fill", + "font_class": "close-circle-fill", + "unicode": "e8d3", + "unicode_decimal": 59603 + }, + { + "icon_id": "17104960", + "name": "checkbox-multiple-fill", + "font_class": "checkbox-multiple-fill", + "unicode": "e8d4", + "unicode_decimal": 59604 + }, + { + "icon_id": "17104962", + "name": "close-circle-line", + "font_class": "close-circle-line", + "unicode": "e8d5", + "unicode_decimal": 59605 + }, + { + "icon_id": "16452482", + "name": "train-fill", + "font_class": "train-fill", + "unicode": "ef97", + "unicode_decimal": 61335 + }, + { + "icon_id": "16452483", + "name": "train", + "font_class": "train", + "unicode": "ef98", + "unicode_decimal": 61336 + }, + { + "icon_id": "17102850", + "name": "reply-fill", + "font_class": "reply-fill", + "unicode": "e981", + "unicode_decimal": 59777 + }, + { + "icon_id": "17102851", + "name": "reply-line", + "font_class": "reply-line", + "unicode": "e982", + "unicode_decimal": 59778 + }, + { + "icon_id": "17104899", + "name": "arrow-down-s-fill", + "font_class": "arrow-down-s-fill", + "unicode": "e94d", + "unicode_decimal": 59725 + }, + { + "icon_id": "17104901", + "name": "arrow-down-s-line", + "font_class": "arrow-down-s-line", + "unicode": "e94e", + "unicode_decimal": 59726 + }, + { + "icon_id": "17104924", + "name": "arrow-left-s-line", + "font_class": "arrow-left-s-line", + "unicode": "e962", + "unicode_decimal": 59746 + }, + { + "icon_id": "17104934", + "name": "arrow-right-s-line", + "font_class": "arrow-right-s-line", + "unicode": "e96c", + "unicode_decimal": 59756 + }, + { + "icon_id": "17105001", + "name": "arrow-up-s-fill", + "font_class": "arrow-up-s-fill", + "unicode": "e97a", + "unicode_decimal": 59770 + }, + { + "icon_id": "17105011", + "name": "arrow-up-s-line", + "font_class": "arrow-up-s-line", + "unicode": "e97c", + "unicode_decimal": 59772 + }, + { + "icon_id": "17104909", + "name": "arrow-go-back-fill", + "font_class": "arrow-go-back-fill", + "unicode": "e955", + "unicode_decimal": 59733 + }, + { + "icon_id": "17104914", + "name": "arrow-go-forward-fill", + "font_class": "arrow-go-forward-fill", + "unicode": "e958", + "unicode_decimal": 59736 + }, + { + "icon_id": "17997480", + "name": "checkbox-plus-fill", + "font_class": "checkbox-plus-fill", + "unicode": "eff4", + "unicode_decimal": 61428 + }, + { + "icon_id": "17997481", + "name": "checkbox-plus-line", + "font_class": "checkbox-plus-line", + "unicode": "f04a", + "unicode_decimal": 61514 + }, + { + "icon_id": "17105088", + "name": "refresh-fill", + "font_class": "refresh-fill", + "unicode": "e86c", + "unicode_decimal": 59500 + }, + { + "icon_id": "17105089", + "name": "refresh-line", + "font_class": "refresh-line", + "unicode": "e86d", + "unicode_decimal": 59501 + }, + { + "icon_id": "24341500", + "name": "documentation upload-fill", + "font_class": "a-documentationupload-fill", + "unicode": "ea18", + "unicode_decimal": 59928 + }, + { + "icon_id": "24341518", + "name": "documentation upload-line", + "font_class": "a-documentationupload-line", + "unicode": "ea55", + "unicode_decimal": 59989 + }, + { + "icon_id": "24341529", + "name": "eraser-fill", + "font_class": "eraser-fill1", + "unicode": "ea17", + "unicode_decimal": 59927 + }, + { + "icon_id": "24342565", + "name": "text editor eraser-line", + "font_class": "a-texteditoreraser-line", + "unicode": "ea54", + "unicode_decimal": 59988 + }, + { + "icon_id": "17103042", + "name": "edit-2-fill", + "font_class": "edit-2-fill", + "unicode": "e70b", + "unicode_decimal": 59147 + }, + { + "icon_id": "17103045", + "name": "edit-2-line", + "font_class": "edit-2-line", + "unicode": "e70c", + "unicode_decimal": 59148 + }, + { + "icon_id": "24341119", + "name": "article-line", + "font_class": "article-line", + "unicode": "ea11", + "unicode_decimal": 59921 + }, + { + "icon_id": "24342505", + "name": "sweep-line", + "font_class": "sweep-line", + "unicode": "ea52", + "unicode_decimal": 59986 + }, + { + "icon_id": "24342519", + "name": "sweep-fill", + "font_class": "sweep-fill", + "unicode": "ea53", + "unicode_decimal": 59987 + }, + { + "icon_id": "24342169", + "name": "refresh 1-line", + "font_class": "a-refresh1-line", + "unicode": "ea10", + "unicode_decimal": 59920 + }, + { + "icon_id": "24342419", + "name": "shift-fill", + "font_class": "shift-fill", + "unicode": "ea50", + "unicode_decimal": 59984 + }, + { + "icon_id": "24342420", + "name": "shift-line", + "font_class": "shift-line", + "unicode": "ea51", + "unicode_decimal": 59985 + }, + { + "icon_id": "24341659", + "name": "file security-line", + "font_class": "a-filesecurity-line", + "unicode": "ea16", + "unicode_decimal": 59926 + }, + { + "icon_id": "24342297", + "name": "router 5-line", + "font_class": "a-router5-line", + "unicode": "ea19", + "unicode_decimal": 59929 + }, + { + "icon_id": "24342301", + "name": "router 5-fill", + "font_class": "a-router5-fill", + "unicode": "ea4f", + "unicode_decimal": 59983 + }, + { + "icon_id": "24341595", + "name": "file remind-fill", + "font_class": "a-fileremind-fill", + "unicode": "ea0e", + "unicode_decimal": 59918 + }, + { + "icon_id": "24341613", + "name": "file remind-line", + "font_class": "a-fileremind-line", + "unicode": "ea0f", + "unicode_decimal": 59919 + }, + { + "icon_id": "24342201", + "name": "remind-line", + "font_class": "remind-line", + "unicode": "ea14", + "unicode_decimal": 59924 + }, + { + "icon_id": "24342202", + "name": "remind-fill", + "font_class": "remind-fill", + "unicode": "ea15", + "unicode_decimal": 59925 + }, + { + "icon_id": "24341742", + "name": "hand Heart-fill", + "font_class": "a-handHeart-fill", + "unicode": "ea12", + "unicode_decimal": 59922 + }, + { + "icon_id": "24341749", + "name": "hand Heart-line", + "font_class": "a-handHeart-line", + "unicode": "ea13", + "unicode_decimal": 59923 + }, + { + "icon_id": "24341630", + "name": "file management-fill", + "font_class": "a-filemanagement-fill", + "unicode": "ea0c", + "unicode_decimal": 59916 + }, + { + "icon_id": "24341712", + "name": "file management-line", + "font_class": "a-filemanagement-line", + "unicode": "ea0d", + "unicode_decimal": 59917 + }, + { + "icon_id": "24341226", + "name": "cash-fill", + "font_class": "cash-fill", + "unicode": "ea04", + "unicode_decimal": 59908 + }, + { + "icon_id": "24341269", + "name": "cash-line", + "font_class": "cash-line", + "unicode": "ea0b", + "unicode_decimal": 59915 + }, + { + "icon_id": "24341583", + "name": "file draft text-fill", + "font_class": "a-filedrafttext-fill", + "unicode": "e9ea", + "unicode_decimal": 59882 + }, + { + "icon_id": "24341591", + "name": "file draft text-line", + "font_class": "a-filedrafttext-line", + "unicode": "e9f1", + "unicode_decimal": 59889 + }, + { + "icon_id": "24341617", + "name": "file history-fill", + "font_class": "a-filehistory-fill", + "unicode": "e9f2", + "unicode_decimal": 59890 + }, + { + "icon_id": "24341618", + "name": "file history-line", + "font_class": "a-filehistory-line", + "unicode": "e9ff", + "unicode_decimal": 59903 + }, + { + "icon_id": "24341633", + "name": "file text-line", + "font_class": "a-filetext-line", + "unicode": "ea02", + "unicode_decimal": 59906 + }, + { + "icon_id": "24341647", + "name": "file text-fill", + "font_class": "a-filetext-fill", + "unicode": "ea03", + "unicode_decimal": 59907 + }, + { + "icon_id": "24342009", + "name": "news-fill", + "font_class": "news-fill", + "unicode": "e9fc", + "unicode_decimal": 59900 + }, + { + "icon_id": "24342014", + "name": "news-line", + "font_class": "news-line", + "unicode": "e9fe", + "unicode_decimal": 59902 + }, + { + "icon_id": "24342056", + "name": "package 1-fill", + "font_class": "a-package1-fill", + "unicode": "ea00", + "unicode_decimal": 59904 + }, + { + "icon_id": "24342058", + "name": "package 1-line", + "font_class": "a-package1-line", + "unicode": "ea01", + "unicode_decimal": 59905 + }, + { + "icon_id": "24342653", + "name": "user set-line", + "font_class": "a-userset-line", + "unicode": "ea4d", + "unicode_decimal": 59981 + }, + { + "icon_id": "24342655", + "name": "user set-fill", + "font_class": "a-userset-fill", + "unicode": "ea4e", + "unicode_decimal": 59982 + }, + { + "icon_id": "24341100", + "name": "annal upload-line", + "font_class": "a-annalupload-line", + "unicode": "e9dc", + "unicode_decimal": 59868 + }, + { + "icon_id": "24341104", + "name": "annal upload-fill", + "font_class": "a-annalupload-fill", + "unicode": "e9e9", + "unicode_decimal": 59881 + }, + { + "icon_id": "17103985", + "name": "currency-line", + "font_class": "currency-line", + "unicode": "e7af", + "unicode_decimal": 59311 + }, + { + "icon_id": "17103988", + "name": "currency-fill", + "font_class": "currency-fill", + "unicode": "e7b1", + "unicode_decimal": 59313 + }, + { + "icon_id": "24342472", + "name": "statistical view pie chart 3-fill", + "font_class": "a-statisticalviewpiechart3-fill", + "unicode": "ea48", + "unicode_decimal": 59976 + }, + { + "icon_id": "24342473", + "name": "statistical view pie chart 3-line", + "font_class": "a-statisticalviewpiechart3-line", + "unicode": "ea49", + "unicode_decimal": 59977 + }, + { + "icon_id": "24342494", + "name": "structure 6-fill", + "font_class": "a-structure6-fill", + "unicode": "ea4a", + "unicode_decimal": 59978 + }, + { + "icon_id": "24342495", + "name": "structure 6-line", + "font_class": "a-structure6-line", + "unicode": "ea4c", + "unicode_decimal": 59980 + }, + { + "icon_id": "17102855", + "name": "service-fill", + "font_class": "service-fill", + "unicode": "e7b9", + "unicode_decimal": 59321 + }, + { + "icon_id": "17102861", + "name": "service-line", + "font_class": "service-line", + "unicode": "e7ba", + "unicode_decimal": 59322 + }, + { + "icon_id": "24341980", + "name": "mobile hard drive-line", + "font_class": "mobileharddrive-line", + "unicode": "e9f7", + "unicode_decimal": 59895 + }, + { + "icon_id": "24341986", + "name": "mobile hard drive-fill", + "font_class": "mobileharddrive-fill", + "unicode": "e9fa", + "unicode_decimal": 59898 + }, + { + "icon_id": "17102785", + "name": "global-fill", + "font_class": "global-fill", + "unicode": "e6d3", + "unicode_decimal": 59091 + }, + { + "icon_id": "17102789", + "name": "global-line", + "font_class": "global-line", + "unicode": "e6d4", + "unicode_decimal": 59092 + }, + { + "icon_id": "17104585", + "name": "camera-fill", + "font_class": "camera-fill", + "unicode": "e7fe", + "unicode_decimal": 59390 + }, + { + "icon_id": "17104586", + "name": "camera-line", + "font_class": "camera-line", + "unicode": "e7ff", + "unicode_decimal": 59391 + }, + { + "icon_id": "17104602", + "name": "equalizer-fill", + "font_class": "equalizer-fill", + "unicode": "e802", + "unicode_decimal": 59394 + }, + { + "icon_id": "17104603", + "name": "equalizer-line", + "font_class": "equalizer-line", + "unicode": "e803", + "unicode_decimal": 59395 + }, + { + "icon_id": "17104647", + "name": "notification-4-fill", + "font_class": "notification-4-fill", + "unicode": "e80b", + "unicode_decimal": 59403 + }, + { + "icon_id": "17104648", + "name": "notification-4-line", + "font_class": "notification-4-line", + "unicode": "e80c", + "unicode_decimal": 59404 + }, + { + "icon_id": "17104649", + "name": "notification-off-line", + "font_class": "notification-off-line", + "unicode": "e80d", + "unicode_decimal": 59405 + }, + { + "icon_id": "17104650", + "name": "notification-off-fill", + "font_class": "notification-off-fill", + "unicode": "e80e", + "unicode_decimal": 59406 + }, + { + "icon_id": "17104449", + "name": "earth-fill", + "font_class": "earth-fill", + "unicode": "e7eb", + "unicode_decimal": 59371 + }, + { + "icon_id": "17104450", + "name": "earth-line", + "font_class": "earth-line", + "unicode": "e7ec", + "unicode_decimal": 59372 + }, + { + "icon_id": "16498414", + "name": "3D", + "font_class": "a3D", + "unicode": "efd7", + "unicode_decimal": 61399 + }, + { + "icon_id": "17103046", + "name": "eraser-fill", + "font_class": "eraser-fill", + "unicode": "e70d", + "unicode_decimal": 59149 + }, + { + "icon_id": "17103048", + "name": "eraser-line", + "font_class": "eraser-line", + "unicode": "e70e", + "unicode_decimal": 59150 + }, + { + "icon_id": "16452612", + "name": "playcircle-fill", + "font_class": "playcircle-fill", + "unicode": "ef99", + "unicode_decimal": 61337 + }, + { + "icon_id": "16452614", + "name": "pausecircle-fill", + "font_class": "pausecircle-fill", + "unicode": "ef9b", + "unicode_decimal": 61339 + }, + { + "icon_id": "16452616", + "name": "playcircle", + "font_class": "playcircle", + "unicode": "ef9d", + "unicode_decimal": 61341 + }, + { + "icon_id": "16452617", + "name": "pausecircle", + "font_class": "pausecircle", + "unicode": "ef9e", + "unicode_decimal": 61342 + }, + { + "icon_id": "17104786", + "name": "door-closed-fill", + "font_class": "door-closed-fill", + "unicode": "e82b", + "unicode_decimal": 59435 + }, + { + "icon_id": "17104787", + "name": "door-closed-line", + "font_class": "door-closed-line", + "unicode": "e82c", + "unicode_decimal": 59436 + }, + { + "icon_id": "17104788", + "name": "door-line", + "font_class": "door-line", + "unicode": "e82d", + "unicode_decimal": 59437 + }, + { + "icon_id": "17104792", + "name": "door-open-fill", + "font_class": "door-open-fill", + "unicode": "e82e", + "unicode_decimal": 59438 + }, + { + "icon_id": "17104796", + "name": "door-open-line", + "font_class": "door-open-line", + "unicode": "e82f", + "unicode_decimal": 59439 + }, + { + "icon_id": "17104824", + "name": "plug-2-fill", + "font_class": "plug-2-fill", + "unicode": "e831", + "unicode_decimal": 59441 + }, + { + "icon_id": "17104825", + "name": "plug-2-line", + "font_class": "plug-2-line", + "unicode": "e832", + "unicode_decimal": 59442 + }, + { + "icon_id": "17104826", + "name": "plug-fill", + "font_class": "plug-fill", + "unicode": "e833", + "unicode_decimal": 59443 + }, + { + "icon_id": "17104827", + "name": "plug-line", + "font_class": "plug-line", + "unicode": "e834", + "unicode_decimal": 59444 + }, + { + "icon_id": "17104884", + "name": "add-line", + "font_class": "add-line", + "unicode": "e839", + "unicode_decimal": 59449 + }, + { + "icon_id": "17104885", + "name": "add-fill", + "font_class": "add-fill", + "unicode": "e83a", + "unicode_decimal": 59450 + }, + { + "icon_id": "17104893", + "name": "apps-2-line", + "font_class": "apps-2-line", + "unicode": "e83c", + "unicode_decimal": 59452 + }, + { + "icon_id": "17104894", + "name": "apps-2-fill", + "font_class": "apps-2-fill", + "unicode": "e83d", + "unicode_decimal": 59453 + }, + { + "icon_id": "17104895", + "name": "apps-fill", + "font_class": "apps-fill", + "unicode": "e83e", + "unicode_decimal": 59454 + }, + { + "icon_id": "17104902", + "name": "apps-line", + "font_class": "apps-line", + "unicode": "e83f", + "unicode_decimal": 59455 + }, + { + "icon_id": "17104943", + "name": "check-line", + "font_class": "check-line", + "unicode": "e847", + "unicode_decimal": 59463 + }, + { + "icon_id": "17104947", + "name": "check-fill", + "font_class": "check-fill", + "unicode": "e848", + "unicode_decimal": 59464 + }, + { + "icon_id": "17104978", + "name": "delete-bin-6-line", + "font_class": "delete-bin-6-line", + "unicode": "e84f", + "unicode_decimal": 59471 + }, + { + "icon_id": "17104979", + "name": "delete-bin-6-fill", + "font_class": "delete-bin-6-fill", + "unicode": "e850", + "unicode_decimal": 59472 + }, + { + "icon_id": "17105117", + "name": "share-forward-fill", + "font_class": "share-forward-fill", + "unicode": "e874", + "unicode_decimal": 59508 + }, + { + "icon_id": "17105118", + "name": "share-forward-line", + "font_class": "share-forward-line", + "unicode": "e875", + "unicode_decimal": 59509 + }, + { + "icon_id": "17105165", + "name": "toggle-fill", + "font_class": "toggle-fill", + "unicode": "e87c", + "unicode_decimal": 59516 + }, + { + "icon_id": "17105167", + "name": "toggle-line", + "font_class": "toggle-line", + "unicode": "e87d", + "unicode_decimal": 59517 + }, + { + "icon_id": "17105331", + "name": "celsius-line", + "font_class": "celsius-line", + "unicode": "e895", + "unicode_decimal": 59541 + }, + { + "icon_id": "24342027", + "name": "notice-fill", + "font_class": "notice-fill", + "unicode": "e9fb", + "unicode_decimal": 59899 + }, + { + "icon_id": "24342033", + "name": "notice-line", + "font_class": "notice-line", + "unicode": "e9fd", + "unicode_decimal": 59901 + }, + { + "icon_id": "16642546", + "name": "network-fill", + "font_class": "network-fill", + "unicode": "f018", + "unicode_decimal": 61464 + }, + { + "icon_id": "16642547", + "name": "network", + "font_class": "network", + "unicode": "f019", + "unicode_decimal": 61465 + }, + { + "icon_id": "17105026", + "name": "indeterminate-circle-fill", + "font_class": "indeterminate-circle-fill", + "unicode": "e85b", + "unicode_decimal": 59483 + }, + { + "icon_id": "17105027", + "name": "indeterminate-circle-line", + "font_class": "indeterminate-circle-line", + "unicode": "e85c", + "unicode_decimal": 59484 + }, + { + "icon_id": "17105028", + "name": "information-fill", + "font_class": "information-fill", + "unicode": "e85d", + "unicode_decimal": 59485 + }, + { + "icon_id": "17105044", + "name": "information-line", + "font_class": "information-line", + "unicode": "e85f", + "unicode_decimal": 59487 + }, + { + "icon_id": "17104990", + "name": "error-warning-fill", + "font_class": "error-warning-fill", + "unicode": "ea47", + "unicode_decimal": 59975 + }, + { + "icon_id": "17104991", + "name": "error-warning-line", + "font_class": "error-warning-line", + "unicode": "e853", + "unicode_decimal": 59475 + }, + { + "icon_id": "17104730", + "name": "stop-circle-fill", + "font_class": "stop-circle-fill", + "unicode": "e9f8", + "unicode_decimal": 59896 + }, + { + "icon_id": "17104731", + "name": "stop-circle-line", + "font_class": "stop-circle-line", + "unicode": "e9f9", + "unicode_decimal": 59897 + }, + { + "icon_id": "24067994", + "name": "signal", + "font_class": "signal", + "unicode": "e621", + "unicode_decimal": 58913 + }, + { + "icon_id": "24068145", + "name": "4G", + "font_class": "a-4G", + "unicode": "e61e", + "unicode_decimal": 58910 + }, + { + "icon_id": "24068146", + "name": "5g", + "font_class": "a-5g", + "unicode": "e61f", + "unicode_decimal": 58911 + }, + { + "icon_id": "24068147", + "name": "2G", + "font_class": "a-2G", + "unicode": "e620", + "unicode_decimal": 58912 + }, + { + "icon_id": "24068148", + "name": "3G", + "font_class": "a-3G", + "unicode": "e622", + "unicode_decimal": 58914 + }, + { + "icon_id": "17104890", + "name": "alert-line", + "font_class": "alert-line", + "unicode": "ea09", + "unicode_decimal": 59913 + }, + { + "icon_id": "17104892", + "name": "alert-fill", + "font_class": "alert-fill", + "unicode": "ea0a", + "unicode_decimal": 59914 + }, + { + "icon_id": "24341189", + "name": "bills other 1-fill", + "font_class": "a-billsother1-fill", + "unicode": "e9da", + "unicode_decimal": 59866 + }, + { + "icon_id": "24341247", + "name": "bills other 1-line", + "font_class": "a-billsother1-line", + "unicode": "e9db", + "unicode_decimal": 59867 + }, + { + "icon_id": "24341141", + "name": "bills 5-fill", + "font_class": "a-bills5-fill", + "unicode": "e9d8", + "unicode_decimal": 59864 + }, + { + "icon_id": "24341147", + "name": "bills 4-line", + "font_class": "a-bills4-line", + "unicode": "e9d9", + "unicode_decimal": 59865 + }, + { + "icon_id": "17102752", + "name": "calendar-todo-fill", + "font_class": "calendar-todo-fill", + "unicode": "e6cb", + "unicode_decimal": 59083 + }, + { + "icon_id": "17102753", + "name": "calendar-todo-line", + "font_class": "calendar-todo-line", + "unicode": "e6cc", + "unicode_decimal": 59084 + }, + { + "icon_id": "17105099", + "name": "settings-3-line", + "font_class": "settings-3-line", + "unicode": "ea45", + "unicode_decimal": 59973 + }, + { + "icon_id": "17105104", + "name": "settings-5-fill", + "font_class": "settings-5-fill", + "unicode": "ea46", + "unicode_decimal": 59974 + }, + { + "icon_id": "16417854", + "name": "dashboard", + "font_class": "dashboard", + "unicode": "e72b", + "unicode_decimal": 59179 + }, + { + "icon_id": "16417855", + "name": "dashboard-fill", + "font_class": "dashboard-fill", + "unicode": "e72c", + "unicode_decimal": 59180 + }, + { + "icon_id": "16417911", + "name": "message", + "font_class": "message", + "unicode": "e73a", + "unicode_decimal": 59194 + }, + { + "icon_id": "16417912", + "name": "message-fill", + "font_class": "message-fill", + "unicode": "e73b", + "unicode_decimal": 59195 + }, + { + "icon_id": "16435727", + "name": "chat-group-fill", + "font_class": "chat-group-fill", + "unicode": "ef7d", + "unicode_decimal": 61309 + }, + { + "icon_id": "16435728", + "name": "chat-group", + "font_class": "chat-group", + "unicode": "ef7e", + "unicode_decimal": 61310 + }, + { + "icon_id": "17104888", + "name": "alarm-warning-fill", + "font_class": "alarm-warning-fill", + "unicode": "e941", + "unicode_decimal": 59713 + }, + { + "icon_id": "17104891", + "name": "alarm-warning-line", + "font_class": "alarm-warning-line", + "unicode": "e947", + "unicode_decimal": 59719 + }, + { + "icon_id": "24342134", + "name": "projection screen-line", + "font_class": "a-projectionscreen-line", + "unicode": "ea07", + "unicode_decimal": 59911 + }, + { + "icon_id": "24342139", + "name": "projection screen-fill", + "font_class": "a-projectionscreen-fill", + "unicode": "ea08", + "unicode_decimal": 59912 + }, + { + "icon_id": "24341080", + "name": "admonish-fill", + "font_class": "admonish-fill", + "unicode": "e9d6", + "unicode_decimal": 59862 + }, + { + "icon_id": "24341085", + "name": "admonish-line", + "font_class": "admonish-line", + "unicode": "e9d7", + "unicode_decimal": 59863 + }, + { + "icon_id": "24341409", + "name": "computer proportion-fill", + "font_class": "a-computerproportion-fill", + "unicode": "e9e7", + "unicode_decimal": 59879 + }, + { + "icon_id": "24341410", + "name": "computer proportion-line", + "font_class": "a-computerproportion-line", + "unicode": "e9e8", + "unicode_decimal": 59880 + }, + { + "icon_id": "24342451", + "name": "star-fill", + "font_class": "star-fill", + "unicode": "ea43", + "unicode_decimal": 59971 + }, + { + "icon_id": "24342460", + "name": "star-line", + "font_class": "star-line", + "unicode": "ea44", + "unicode_decimal": 59972 + }, + { + "icon_id": "24342667", + "name": "voice playing-fill", + "font_class": "a-voiceplaying-fill", + "unicode": "ea3d", + "unicode_decimal": 59965 + }, + { + "icon_id": "24342673", + "name": "voice playing-line", + "font_class": "a-voiceplaying-line", + "unicode": "ea3e", + "unicode_decimal": 59966 + }, + { + "icon_id": "24342680", + "name": "volume close-fill", + "font_class": "a-volumeclose-fill", + "unicode": "ea3f", + "unicode_decimal": 59967 + }, + { + "icon_id": "24342683", + "name": "volume-line", + "font_class": "volume-line", + "unicode": "ea40", + "unicode_decimal": 59968 + }, + { + "icon_id": "24342684", + "name": "volume-fill", + "font_class": "volume-fill", + "unicode": "ea41", + "unicode_decimal": 59969 + }, + { + "icon_id": "24342685", + "name": "volume close-line", + "font_class": "a-volumeclose-line", + "unicode": "ea42", + "unicode_decimal": 59970 + }, + { + "icon_id": "24342358", + "name": "server arrange-line", + "font_class": "a-serverarrange-line", + "unicode": "ea1d", + "unicode_decimal": 59933 + }, + { + "icon_id": "24342363", + "name": "server cloud-fill", + "font_class": "a-servercloud-fill", + "unicode": "ea20", + "unicode_decimal": 59936 + }, + { + "icon_id": "24342368", + "name": "server cloud-line", + "font_class": "a-servercloud-line", + "unicode": "ea21", + "unicode_decimal": 59937 + }, + { + "icon_id": "24342369", + "name": "server arrange-fill", + "font_class": "a-serverarrange-fill", + "unicode": "ea22", + "unicode_decimal": 59938 + }, + { + "icon_id": "24342372", + "name": "server connect-fill", + "font_class": "a-serverconnect-fill", + "unicode": "ea23", + "unicode_decimal": 59939 + }, + { + "icon_id": "24342373", + "name": "server concatenate-line", + "font_class": "a-serverconcatenate-line", + "unicode": "ea24", + "unicode_decimal": 59940 + }, + { + "icon_id": "24342374", + "name": "server concatenate-fill", + "font_class": "a-serverconcatenate-fill", + "unicode": "ea25", + "unicode_decimal": 59941 + }, + { + "icon_id": "24342375", + "name": "server crowd-fill", + "font_class": "a-servercrowd-fill", + "unicode": "ea26", + "unicode_decimal": 59942 + }, + { + "icon_id": "24342376", + "name": "server dish-fill", + "font_class": "a-serverdish-fill", + "unicode": "ea27", + "unicode_decimal": 59943 + }, + { + "icon_id": "24342377", + "name": "server crowd-line", + "font_class": "a-servercrowd-line", + "unicode": "ea28", + "unicode_decimal": 59944 + }, + { + "icon_id": "24342380", + "name": "server connect-line", + "font_class": "a-serverconnect-line", + "unicode": "ea29", + "unicode_decimal": 59945 + }, + { + "icon_id": "24342381", + "name": "server dish-line", + "font_class": "a-serverdish-line", + "unicode": "ea2a", + "unicode_decimal": 59946 + }, + { + "icon_id": "24342382", + "name": "server group-line", + "font_class": "a-servergroup-line", + "unicode": "ea2b", + "unicode_decimal": 59947 + }, + { + "icon_id": "24342383", + "name": "server group-fill", + "font_class": "a-servergroup-fill", + "unicode": "ea2c", + "unicode_decimal": 59948 + }, + { + "icon_id": "24342384", + "name": "server hdd-fill", + "font_class": "a-serverhdd-fill", + "unicode": "ea2d", + "unicode_decimal": 59949 + }, + { + "icon_id": "24342385", + "name": "server hdd-line", + "font_class": "a-serverhdd-line", + "unicode": "ea2e", + "unicode_decimal": 59950 + }, + { + "icon_id": "24342386", + "name": "server herd-fill", + "font_class": "a-serverherd-fill", + "unicode": "ea2f", + "unicode_decimal": 59951 + }, + { + "icon_id": "24342387", + "name": "server herd-line", + "font_class": "a-serverherd-line", + "unicode": "ea30", + "unicode_decimal": 59952 + }, + { + "icon_id": "24342388", + "name": "server host-fill", + "font_class": "a-serverhost-fill", + "unicode": "ea31", + "unicode_decimal": 59953 + }, + { + "icon_id": "24342389", + "name": "server host computer-fill", + "font_class": "a-serverhostcomputer-fill", + "unicode": "ea32", + "unicode_decimal": 59954 + }, + { + "icon_id": "24342390", + "name": "server interconnection-line", + "font_class": "a-serverinterconnection-line", + "unicode": "ea33", + "unicode_decimal": 59955 + }, + { + "icon_id": "24342391", + "name": "server host-line", + "font_class": "a-serverhost-line", + "unicode": "ea34", + "unicode_decimal": 59956 + }, + { + "icon_id": "24342392", + "name": "server interconnection-fill", + "font_class": "a-serverinterconnection-fill", + "unicode": "ea35", + "unicode_decimal": 59957 + }, + { + "icon_id": "24342393", + "name": "server joint-line", + "font_class": "a-serverjoint-line", + "unicode": "ea36", + "unicode_decimal": 59958 + }, + { + "icon_id": "24342394", + "name": "server link-line", + "font_class": "a-serverlink-line", + "unicode": "ea37", + "unicode_decimal": 59959 + }, + { + "icon_id": "24342395", + "name": "server joint-fill", + "font_class": "a-serverjoint-fill", + "unicode": "ea38", + "unicode_decimal": 59960 + }, + { + "icon_id": "24342396", + "name": "server paralleling-fill", + "font_class": "a-serverparalleling-fill", + "unicode": "ea39", + "unicode_decimal": 59961 + }, + { + "icon_id": "24342397", + "name": "server link-fill", + "font_class": "a-serverlink-fill", + "unicode": "ea3a", + "unicode_decimal": 59962 + }, + { + "icon_id": "24342398", + "name": "server paralleling-line", + "font_class": "a-serverparalleling-line", + "unicode": "ea3b", + "unicode_decimal": 59963 + }, + { + "icon_id": "24342400", + "name": "server host computer-line", + "font_class": "a-serverhostcomputer-line", + "unicode": "ea3c", + "unicode_decimal": 59964 + }, + { + "icon_id": "24341973", + "name": "message 2-fill", + "font_class": "a-message2-fill", + "unicode": "e9f3", + "unicode_decimal": 59891 + }, + { + "icon_id": "24341985", + "name": "message 2-line", + "font_class": "a-message2-line", + "unicode": "e9f6", + "unicode_decimal": 59894 + }, + { + "icon_id": "24341827", + "name": "guardian-fill", + "font_class": "guardian-fill", + "unicode": "e9ef", + "unicode_decimal": 59887 + }, + { + "icon_id": "24341885", + "name": "guardian-line", + "font_class": "guardian-line", + "unicode": "e9f0", + "unicode_decimal": 59888 + }, + { + "icon_id": "24342328", + "name": "screen list-fill", + "font_class": "a-screenlist-fill", + "unicode": "ea1a", + "unicode_decimal": 59930 + }, + { + "icon_id": "24342333", + "name": "screen list-line", + "font_class": "a-screenlist-line", + "unicode": "ea1b", + "unicode_decimal": 59931 + }, + { + "icon_id": "24342342", + "name": "search-line", + "font_class": "search-line", + "unicode": "ea1c", + "unicode_decimal": 59932 + }, + { + "icon_id": "24341769", + "name": "hierarchy-fill", + "font_class": "hierarchy-fill", + "unicode": "e9ed", + "unicode_decimal": 59885 + }, + { + "icon_id": "24341790", + "name": "hierarchy-line", + "font_class": "hierarchy-line", + "unicode": "e9ee", + "unicode_decimal": 59886 + }, + { + "icon_id": "24341982", + "name": "model-fill", + "font_class": "model-fill", + "unicode": "e9f4", + "unicode_decimal": 59892 + }, + { + "icon_id": "24341984", + "name": "model-line", + "font_class": "model-line", + "unicode": "e9f5", + "unicode_decimal": 59893 + }, + { + "icon_id": "24341696", + "name": "firm-line", + "font_class": "firm-line", + "unicode": "e9eb", + "unicode_decimal": 59883 + }, + { + "icon_id": "24341711", + "name": "firm-fill", + "font_class": "firm-fill", + "unicode": "e9ec", + "unicode_decimal": 59884 + }, + { + "icon_id": "17102568", + "name": "home-5-line", + "font_class": "home-5-line", + "unicode": "e6b4", + "unicode_decimal": 59060 + }, + { + "icon_id": "17102570", + "name": "home-5-fill", + "font_class": "home-5-fill", + "unicode": "e6b5", + "unicode_decimal": 59061 + }, + { + "icon_id": "24341385", + "name": "computer control-line", + "font_class": "a-computercontrol-line", + "unicode": "e9e3", + "unicode_decimal": 59875 + }, + { + "icon_id": "24341402", + "name": "computer control-fill", + "font_class": "a-computercontrol-fill", + "unicode": "e9e4", + "unicode_decimal": 59876 + }, + { + "icon_id": "24341394", + "name": "computer information-fill", + "font_class": "a-computerinformation-fill", + "unicode": "e9e1", + "unicode_decimal": 59873 + }, + { + "icon_id": "24341408", + "name": "computer information-line", + "font_class": "a-computerinformation-line", + "unicode": "e9e2", + "unicode_decimal": 59874 + }, + { + "icon_id": "24341106", + "name": "architecture-fill", + "font_class": "architecture-fill", + "unicode": "e9d4", + "unicode_decimal": 59860 + }, + { + "icon_id": "24341118", + "name": "architecture-line", + "font_class": "architecture-line", + "unicode": "e9d5", + "unicode_decimal": 59861 + }, + { + "icon_id": "24341392", + "name": "company 6-line", + "font_class": "a-company6-line", + "unicode": "e9df", + "unicode_decimal": 59871 + }, + { + "icon_id": "24341411", + "name": "company 6-fill", + "font_class": "a-company6-fill", + "unicode": "e9e0", + "unicode_decimal": 59872 + }, + { + "icon_id": "24341390", + "name": "company 3-line", + "font_class": "a-company3-line", + "unicode": "e9de", + "unicode_decimal": 59870 + }, + { + "icon_id": "24341393", + "name": "company 3-fill", + "font_class": "a-company3-fill", + "unicode": "e9dd", + "unicode_decimal": 59869 + }, + { + "icon_id": "24342378", + "name": "server flock-fill", + "font_class": "a-serverflock-fill", + "unicode": "ea1e", + "unicode_decimal": 59934 + }, + { + "icon_id": "24342379", + "name": "server flock-line", + "font_class": "a-serverflock-line", + "unicode": "ea1f", + "unicode_decimal": 59935 + }, + { + "icon_id": "24341087", + "name": "amount 3-line", + "font_class": "a-amount3-line", + "unicode": "ea4b", + "unicode_decimal": 59979 + }, + { + "icon_id": "24341088", + "name": "amount 3-fill", + "font_class": "a-amount3-fill", + "unicode": "e9d3", + "unicode_decimal": 59859 + } + ] +} diff --git a/InManageBoot-ui/public/font/iconnew/iconfont.svg b/InManageBoot-ui/public/font/iconnew/iconfont.svg new file mode 100644 index 0000000000000000000000000000000000000000..263a12975c4b00afd2aba2e0cfe3f8a9243c3462 --- /dev/null +++ b/InManageBoot-ui/public/font/iconnew/iconfont.svg @@ -0,0 +1,1649 @@ + + + + Created by iconfont + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/InManageBoot-ui/public/font/iconnew/iconfont.ttf b/InManageBoot-ui/public/font/iconnew/iconfont.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5946e2ecd98c40170c0c6baea329e48c26b615f3 Binary files /dev/null and b/InManageBoot-ui/public/font/iconnew/iconfont.ttf differ diff --git a/InManageBoot-ui/public/font/iconnew/iconfont.woff b/InManageBoot-ui/public/font/iconnew/iconfont.woff new file mode 100644 index 0000000000000000000000000000000000000000..520c80a15e3da2ad7d22cd906865bcadc38a110e Binary files /dev/null and b/InManageBoot-ui/public/font/iconnew/iconfont.woff differ diff --git a/InManageBoot-ui/public/font/iconnew/iconfont.woff2 b/InManageBoot-ui/public/font/iconnew/iconfont.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..c7cc40413968f9524f1ca9425b51489542edb99c Binary files /dev/null and b/InManageBoot-ui/public/font/iconnew/iconfont.woff2 differ diff --git a/InManageBoot-ui/public/h5.html b/InManageBoot-ui/public/h5.html new file mode 100644 index 0000000000000000000000000000000000000000..d3efbac1703433616824af0ae7391de2fcb5bfbc --- /dev/null +++ b/InManageBoot-ui/public/h5.html @@ -0,0 +1,54 @@ + + + + + + + + + MegaRAC SPX + + + + + + + + + + + + + + +
+ + + + + + diff --git a/InManageBoot-ui/public/h55270m6.html b/InManageBoot-ui/public/h55270m6.html new file mode 100644 index 0000000000000000000000000000000000000000..ecffd6777450267f5ccd4ef5c5719e14039f5170 --- /dev/null +++ b/InManageBoot-ui/public/h55270m6.html @@ -0,0 +1,54 @@ + + + + + + + + + MegaRAC SPX + + + + + + + + + + + + + + +
+ + + + + + diff --git a/InManageBoot-ui/public/h5m6.html b/InManageBoot-ui/public/h5m6.html new file mode 100644 index 0000000000000000000000000000000000000000..2e72a0eab6b13a30d6e721e74f0734679bd5fb7e --- /dev/null +++ b/InManageBoot-ui/public/h5m6.html @@ -0,0 +1,54 @@ + + + + + + + + + MegaRAC SPX + + + + + + + + + + + + + + +
+ + + + + + diff --git a/InManageBoot-ui/public/img/asset-relate/C7000/C7000-1-1.png b/InManageBoot-ui/public/img/asset-relate/C7000/C7000-1-1.png new file mode 100644 index 0000000000000000000000000000000000000000..2f13672add4d2499ca55e5c3811d1f2e4ef7b646 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/C7000/C7000-1-1.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/C7000/C7000-1-2.png b/InManageBoot-ui/public/img/asset-relate/C7000/C7000-1-2.png new file mode 100644 index 0000000000000000000000000000000000000000..896053efdee7987742e91669d032a78267c6d707 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/C7000/C7000-1-2.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/C7000/C7000-2-4.png b/InManageBoot-ui/public/img/asset-relate/C7000/C7000-2-4.png new file mode 100644 index 0000000000000000000000000000000000000000..cad26ae3801fec5502bd43cba65696d5535ba7f8 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/C7000/C7000-2-4.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/C7000/C7000-4-8.png b/InManageBoot-ui/public/img/asset-relate/C7000/C7000-4-8.png new file mode 100644 index 0000000000000000000000000000000000000000..5ded3d68471a782b447d05aa0f0ee95cdb321efa Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/C7000/C7000-4-8.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/E9000/E9000-1-1.png b/InManageBoot-ui/public/img/asset-relate/E9000/E9000-1-1.png new file mode 100644 index 0000000000000000000000000000000000000000..34ce487955a9185fb128dfb686a2fc65fe275265 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/E9000/E9000-1-1.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/E9000/E9000-1-2.png b/InManageBoot-ui/public/img/asset-relate/E9000/E9000-1-2.png new file mode 100644 index 0000000000000000000000000000000000000000..da70dc31d96c2c7698abed554da246185e283939 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/E9000/E9000-1-2.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/E9000/E9000-2-4.png b/InManageBoot-ui/public/img/asset-relate/E9000/E9000-2-4.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4980a0e633b93d0e449c0dbb1e43e161898688 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/E9000/E9000-2-4.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I24/I24.png b/InManageBoot-ui/public/img/asset-relate/I24/I24.png new file mode 100644 index 0000000000000000000000000000000000000000..9ec51cf66b279eebeddcf2d8102435e92c955094 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I24/I24.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I24LM6/I24LM6.png b/InManageBoot-ui/public/img/asset-relate/I24LM6/I24LM6.png new file mode 100644 index 0000000000000000000000000000000000000000..9ec51cf66b279eebeddcf2d8102435e92c955094 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I24LM6/I24LM6.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I24M6/I24M6.png b/InManageBoot-ui/public/img/asset-relate/I24M6/I24M6.png new file mode 100644 index 0000000000000000000000000000000000000000..9ec51cf66b279eebeddcf2d8102435e92c955094 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I24M6/I24M6.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I48/I48-2.png b/InManageBoot-ui/public/img/asset-relate/I48/I48-2.png new file mode 100644 index 0000000000000000000000000000000000000000..5e8226a9fa073161c0c4cfea71ac753a0355eec4 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I48/I48-2.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I48/I48-4.png b/InManageBoot-ui/public/img/asset-relate/I48/I48-4.png new file mode 100644 index 0000000000000000000000000000000000000000..2866d4e09ccb51f540035749ccc64c77c85e4be3 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I48/I48-4.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I48/I48-8.png b/InManageBoot-ui/public/img/asset-relate/I48/I48-8.png new file mode 100644 index 0000000000000000000000000000000000000000..857ac8a9a183f45ffda9fd6696c616aa16dcb7b9 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I48/I48-8.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I48M6/I48M6-2.png b/InManageBoot-ui/public/img/asset-relate/I48M6/I48M6-2.png new file mode 100644 index 0000000000000000000000000000000000000000..5e8226a9fa073161c0c4cfea71ac753a0355eec4 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I48M6/I48M6-2.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I48M6/I48M6-4.png b/InManageBoot-ui/public/img/asset-relate/I48M6/I48M6-4.png new file mode 100644 index 0000000000000000000000000000000000000000..2866d4e09ccb51f540035749ccc64c77c85e4be3 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I48M6/I48M6-4.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I48M6/I48M6-8.png b/InManageBoot-ui/public/img/asset-relate/I48M6/I48M6-8.png new file mode 100644 index 0000000000000000000000000000000000000000..857ac8a9a183f45ffda9fd6696c616aa16dcb7b9 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I48M6/I48M6-8.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I9000/I9000-1-1.png b/InManageBoot-ui/public/img/asset-relate/I9000/I9000-1-1.png new file mode 100644 index 0000000000000000000000000000000000000000..9ec514269b909f11a4887af2b3f6ac0602bbf971 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I9000/I9000-1-1.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I9000/I9000-1-2.png b/InManageBoot-ui/public/img/asset-relate/I9000/I9000-1-2.png new file mode 100644 index 0000000000000000000000000000000000000000..497410f660fbedf6f0d637e18f2f87cc58a2d9b5 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I9000/I9000-1-2.png differ diff --git a/InManageBoot-ui/public/img/asset-relate/I9000/I9000-2-4.png b/InManageBoot-ui/public/img/asset-relate/I9000/I9000-2-4.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4980a0e633b93d0e449c0dbb1e43e161898688 Binary files /dev/null and b/InManageBoot-ui/public/img/asset-relate/I9000/I9000-2-4.png differ diff --git a/InManageBoot-ui/public/img/en_logo.png b/InManageBoot-ui/public/img/en_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..3767661b7915a28ca4d92e7e1f9c71244b7a17d1 Binary files /dev/null and b/InManageBoot-ui/public/img/en_logo.png differ diff --git a/InManageBoot-ui/public/img/plan.png b/InManageBoot-ui/public/img/plan.png new file mode 100644 index 0000000000000000000000000000000000000000..990a924a963870ad5a2bc4abcec3a8915d4f3f24 Binary files /dev/null and b/InManageBoot-ui/public/img/plan.png differ diff --git a/InManageBoot-ui/public/img/process/deviceConfigModify.png b/InManageBoot-ui/public/img/process/deviceConfigModify.png new file mode 100644 index 0000000000000000000000000000000000000000..8110111cf479cb023907457277aa9f669195eebd Binary files /dev/null and b/InManageBoot-ui/public/img/process/deviceConfigModify.png differ diff --git a/InManageBoot-ui/public/img/process/deviceDown.png b/InManageBoot-ui/public/img/process/deviceDown.png new file mode 100644 index 0000000000000000000000000000000000000000..b6e64c3f8570aefcc1ecef2ef8eeeb5e8b550f1a Binary files /dev/null and b/InManageBoot-ui/public/img/process/deviceDown.png differ diff --git a/InManageBoot-ui/public/img/process/deviceEnvModify.png b/InManageBoot-ui/public/img/process/deviceEnvModify.png new file mode 100644 index 0000000000000000000000000000000000000000..dfcd2bf3db2067644241020ec20aad065cf3f875 Binary files /dev/null and b/InManageBoot-ui/public/img/process/deviceEnvModify.png differ diff --git a/InManageBoot-ui/public/img/process/devicePositionModify.png b/InManageBoot-ui/public/img/process/devicePositionModify.png new file mode 100644 index 0000000000000000000000000000000000000000..55c5950369dc06bc325a443202d670ded304ea76 Binary files /dev/null and b/InManageBoot-ui/public/img/process/devicePositionModify.png differ diff --git a/InManageBoot-ui/public/img/process/deviceProblemHandle.png b/InManageBoot-ui/public/img/process/deviceProblemHandle.png new file mode 100644 index 0000000000000000000000000000000000000000..73a2e6e9e94fb1de051af69815789c7bd7a51845 Binary files /dev/null and b/InManageBoot-ui/public/img/process/deviceProblemHandle.png differ diff --git a/InManageBoot-ui/public/img/process/deviceUp.png b/InManageBoot-ui/public/img/process/deviceUp.png new file mode 100644 index 0000000000000000000000000000000000000000..6683f19f638298cfed520703b8c56a29210f5dde Binary files /dev/null and b/InManageBoot-ui/public/img/process/deviceUp.png differ diff --git a/InManageBoot-ui/public/img/three/1.png b/InManageBoot-ui/public/img/three/1.png new file mode 100644 index 0000000000000000000000000000000000000000..17035574de50757c060e170ac58ab0028369f320 Binary files /dev/null and b/InManageBoot-ui/public/img/three/1.png differ diff --git a/InManageBoot-ui/public/img/three/1s.png b/InManageBoot-ui/public/img/three/1s.png new file mode 100644 index 0000000000000000000000000000000000000000..901c676e00e59f1fab57ee9cabb740616f89049d Binary files /dev/null and b/InManageBoot-ui/public/img/three/1s.png differ diff --git a/InManageBoot-ui/public/img/three/1u-green.gif b/InManageBoot-ui/public/img/three/1u-green.gif new file mode 100644 index 0000000000000000000000000000000000000000..5e88208cd8da9f1237f2ca277bc74aa11a042cda Binary files /dev/null and b/InManageBoot-ui/public/img/three/1u-green.gif differ diff --git a/InManageBoot-ui/public/img/three/1u-red.gif b/InManageBoot-ui/public/img/three/1u-red.gif new file mode 100644 index 0000000000000000000000000000000000000000..d1c12be0c61b62a8559c7c753bbbbf3aaae224ea Binary files /dev/null and b/InManageBoot-ui/public/img/three/1u-red.gif differ diff --git a/InManageBoot-ui/public/img/three/1u-yellow.gif b/InManageBoot-ui/public/img/three/1u-yellow.gif new file mode 100644 index 0000000000000000000000000000000000000000..63e28936fe2137512516d490d6db1959e5dfa19a Binary files /dev/null and b/InManageBoot-ui/public/img/three/1u-yellow.gif differ diff --git a/InManageBoot-ui/public/img/three/1userver.png b/InManageBoot-ui/public/img/three/1userver.png new file mode 100644 index 0000000000000000000000000000000000000000..22c7505f3a32bc6c3955dcd7ced7ebbb2245c314 Binary files /dev/null and b/InManageBoot-ui/public/img/three/1userver.png differ diff --git a/InManageBoot-ui/public/img/three/2.jpg b/InManageBoot-ui/public/img/three/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddcaa8846356c33229fa54195d261ce29f607749 Binary files /dev/null and b/InManageBoot-ui/public/img/three/2.jpg differ diff --git a/InManageBoot-ui/public/img/three/2.png b/InManageBoot-ui/public/img/three/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5749711e7e012dac969c967106906374a90416d5 Binary files /dev/null and b/InManageBoot-ui/public/img/three/2.png differ diff --git a/InManageBoot-ui/public/img/three/2s.png b/InManageBoot-ui/public/img/three/2s.png new file mode 100644 index 0000000000000000000000000000000000000000..2eede48aedd6687a42be047cd24d53d91c81b642 Binary files /dev/null and b/InManageBoot-ui/public/img/three/2s.png differ diff --git a/InManageBoot-ui/public/img/three/2u-green.gif b/InManageBoot-ui/public/img/three/2u-green.gif new file mode 100644 index 0000000000000000000000000000000000000000..58e063e6def280e650fc33534635cf2f379b7653 Binary files /dev/null and b/InManageBoot-ui/public/img/three/2u-green.gif differ diff --git a/InManageBoot-ui/public/img/three/2u-red.gif b/InManageBoot-ui/public/img/three/2u-red.gif new file mode 100644 index 0000000000000000000000000000000000000000..dcce43985be2abe0700ae870838c7e17b9ef14e3 Binary files /dev/null and b/InManageBoot-ui/public/img/three/2u-red.gif differ diff --git a/InManageBoot-ui/public/img/three/2u-yellow.gif b/InManageBoot-ui/public/img/three/2u-yellow.gif new file mode 100644 index 0000000000000000000000000000000000000000..acfd117854b06d43693b9c25f3839c9263ad7816 Binary files /dev/null and b/InManageBoot-ui/public/img/three/2u-yellow.gif differ diff --git a/InManageBoot-ui/public/img/three/2userver.png b/InManageBoot-ui/public/img/three/2userver.png new file mode 100644 index 0000000000000000000000000000000000000000..fbcf6a4b81b4cb7a339a1001226148ffa77fc3f4 Binary files /dev/null and b/InManageBoot-ui/public/img/three/2userver.png differ diff --git a/InManageBoot-ui/public/img/three/3.png b/InManageBoot-ui/public/img/three/3.png new file mode 100644 index 0000000000000000000000000000000000000000..584f3bda6c13d02bc18df9174b904ce2ad18856a Binary files /dev/null and b/InManageBoot-ui/public/img/three/3.png differ diff --git a/InManageBoot-ui/public/img/three/4.png b/InManageBoot-ui/public/img/three/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c1874b6e77e404510dc9be8c0c2838e438a45d57 Binary files /dev/null and b/InManageBoot-ui/public/img/three/4.png differ diff --git a/InManageBoot-ui/public/img/three/4u-green.gif b/InManageBoot-ui/public/img/three/4u-green.gif new file mode 100644 index 0000000000000000000000000000000000000000..5aeff8060d34e9368301d3314665999e0b8f19f5 Binary files /dev/null and b/InManageBoot-ui/public/img/three/4u-green.gif differ diff --git a/InManageBoot-ui/public/img/three/4u-red.gif b/InManageBoot-ui/public/img/three/4u-red.gif new file mode 100644 index 0000000000000000000000000000000000000000..1b478e9231505e60a05ab9b5be7063603a5c73d1 Binary files /dev/null and b/InManageBoot-ui/public/img/three/4u-red.gif differ diff --git a/InManageBoot-ui/public/img/three/4u-yellow.gif b/InManageBoot-ui/public/img/three/4u-yellow.gif new file mode 100644 index 0000000000000000000000000000000000000000..5a0b9792d022f15ea1aca5ed162b347cb17fc807 Binary files /dev/null and b/InManageBoot-ui/public/img/three/4u-yellow.gif differ diff --git a/InManageBoot-ui/public/img/three/4u.png b/InManageBoot-ui/public/img/three/4u.png new file mode 100644 index 0000000000000000000000000000000000000000..701c037dfede330973d962e1515133325f0785b2 Binary files /dev/null and b/InManageBoot-ui/public/img/three/4u.png differ diff --git a/InManageBoot-ui/public/img/three/4userver.png b/InManageBoot-ui/public/img/three/4userver.png new file mode 100644 index 0000000000000000000000000000000000000000..21f35c168b6795428dad1960c76ea06c018d1871 Binary files /dev/null and b/InManageBoot-ui/public/img/three/4userver.png differ diff --git a/InManageBoot-ui/public/img/three/5.png b/InManageBoot-ui/public/img/three/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6bf8b27e7921e578e4cc5a3582e738709a1e64fb Binary files /dev/null and b/InManageBoot-ui/public/img/three/5.png differ diff --git a/InManageBoot-ui/public/img/three/CE12808.png b/InManageBoot-ui/public/img/three/CE12808.png new file mode 100644 index 0000000000000000000000000000000000000000..10838533b2aca8a4b5c6e4c42c35875cbaca5849 Binary files /dev/null and b/InManageBoot-ui/public/img/three/CE12808.png differ diff --git a/InManageBoot-ui/public/img/three/Eudemon8000E-X16.png b/InManageBoot-ui/public/img/three/Eudemon8000E-X16.png new file mode 100644 index 0000000000000000000000000000000000000000..fe9182f11b8da7320a82f1166a231f86fe630314 Binary files /dev/null and b/InManageBoot-ui/public/img/three/Eudemon8000E-X16.png differ diff --git a/InManageBoot-ui/public/img/three/Eudemon8000E-X8.png b/InManageBoot-ui/public/img/three/Eudemon8000E-X8.png new file mode 100644 index 0000000000000000000000000000000000000000..a703bf831e9ed650e183cc4e4f6f45a7b8bed41e Binary files /dev/null and b/InManageBoot-ui/public/img/three/Eudemon8000E-X8.png differ diff --git a/InManageBoot-ui/public/img/three/NE3120M5.png b/InManageBoot-ui/public/img/three/NE3120M5.png new file mode 100644 index 0000000000000000000000000000000000000000..82fbe588017fc6e741899df60efd1b0fdd5c9bcd Binary files /dev/null and b/InManageBoot-ui/public/img/three/NE3120M5.png differ diff --git a/InManageBoot-ui/public/img/three/NE3160M5.png b/InManageBoot-ui/public/img/three/NE3160M5.png new file mode 100644 index 0000000000000000000000000000000000000000..7080c42d6fa92441728db5feae049e9e0f05387e Binary files /dev/null and b/InManageBoot-ui/public/img/three/NE3160M5.png differ diff --git a/InManageBoot-ui/public/img/three/NE40E-X16A.png b/InManageBoot-ui/public/img/three/NE40E-X16A.png new file mode 100644 index 0000000000000000000000000000000000000000..9d3fa8a5306beb1751031e6a3e6b2ab30bbacc45 Binary files /dev/null and b/InManageBoot-ui/public/img/three/NE40E-X16A.png differ diff --git a/InManageBoot-ui/public/img/three/NS5484M6.png b/InManageBoot-ui/public/img/three/NS5484M6.png new file mode 100644 index 0000000000000000000000000000000000000000..da17a9c330a861e758285c2240f724590eb394b6 Binary files /dev/null and b/InManageBoot-ui/public/img/three/NS5484M6.png differ diff --git a/InManageBoot-ui/public/img/three/ZXR10-9908.png b/InManageBoot-ui/public/img/three/ZXR10-9908.png new file mode 100644 index 0000000000000000000000000000000000000000..678916ce38c853b2299d7cfa566cf3df3e98dd81 Binary files /dev/null and b/InManageBoot-ui/public/img/three/ZXR10-9908.png differ diff --git a/InManageBoot-ui/public/img/three/ZXR10-M6000-18S.png b/InManageBoot-ui/public/img/three/ZXR10-M6000-18S.png new file mode 100644 index 0000000000000000000000000000000000000000..aa4758ed4e5795810b4ae0fbc9d74e62a565ec77 Binary files /dev/null and b/InManageBoot-ui/public/img/three/ZXR10-M6000-18S.png differ diff --git a/InManageBoot-ui/public/img/three/back-1.png b/InManageBoot-ui/public/img/three/back-1.png new file mode 100644 index 0000000000000000000000000000000000000000..d693348d376b15f676ee3fdcc213cf93cddeb939 Binary files /dev/null and b/InManageBoot-ui/public/img/three/back-1.png differ diff --git a/InManageBoot-ui/public/img/three/back-sr.png b/InManageBoot-ui/public/img/three/back-sr.png new file mode 100644 index 0000000000000000000000000000000000000000..cdfda546a169eac8a5ca99b47b24eda32b731be5 Binary files /dev/null and b/InManageBoot-ui/public/img/three/back-sr.png differ diff --git a/InManageBoot-ui/public/img/three/firewall-green.gif b/InManageBoot-ui/public/img/three/firewall-green.gif new file mode 100644 index 0000000000000000000000000000000000000000..f064a593c6c363a4a3a89685fc7fdc63c36bbe16 Binary files /dev/null and b/InManageBoot-ui/public/img/three/firewall-green.gif differ diff --git a/InManageBoot-ui/public/img/three/firewall-red.gif b/InManageBoot-ui/public/img/three/firewall-red.gif new file mode 100644 index 0000000000000000000000000000000000000000..c8bd358cedb3a153ffbc84bc0b249075cf70e20e Binary files /dev/null and b/InManageBoot-ui/public/img/three/firewall-red.gif differ diff --git a/InManageBoot-ui/public/img/three/firewall-yellow.gif b/InManageBoot-ui/public/img/three/firewall-yellow.gif new file mode 100644 index 0000000000000000000000000000000000000000..3f23f761afa6fd4ce4dc3b18bcf56b2fcd67c2e3 Binary files /dev/null and b/InManageBoot-ui/public/img/three/firewall-yellow.gif differ diff --git a/InManageBoot-ui/public/img/three/firewall.png b/InManageBoot-ui/public/img/three/firewall.png new file mode 100644 index 0000000000000000000000000000000000000000..80d0007a3e5509ff887e57a6c291e2897f5893ef Binary files /dev/null and b/InManageBoot-ui/public/img/three/firewall.png differ diff --git a/InManageBoot-ui/public/img/three/font-1.png b/InManageBoot-ui/public/img/three/font-1.png new file mode 100644 index 0000000000000000000000000000000000000000..8e70354b54acf4b25d56039af2dbe62bfa0b819c Binary files /dev/null and b/InManageBoot-ui/public/img/three/font-1.png differ diff --git a/InManageBoot-ui/public/img/three/font-sr.png b/InManageBoot-ui/public/img/three/font-sr.png new file mode 100644 index 0000000000000000000000000000000000000000..d055bd249c7177dd31ba106cf26a4cad1775b2e3 Binary files /dev/null and b/InManageBoot-ui/public/img/three/font-sr.png differ diff --git a/InManageBoot-ui/public/img/three/i24-back.png b/InManageBoot-ui/public/img/three/i24-back.png new file mode 100644 index 0000000000000000000000000000000000000000..e48b48c8aee450c6cfbdde59c4fc0f6c909882b4 Binary files /dev/null and b/InManageBoot-ui/public/img/three/i24-back.png differ diff --git a/InManageBoot-ui/public/img/three/i24.png b/InManageBoot-ui/public/img/three/i24.png new file mode 100644 index 0000000000000000000000000000000000000000..b7823255b8f8d4c80ff37eef10d7a771cda9b3e5 Binary files /dev/null and b/InManageBoot-ui/public/img/three/i24.png differ diff --git a/InManageBoot-ui/public/img/three/i48-4.png b/InManageBoot-ui/public/img/three/i48-4.png new file mode 100644 index 0000000000000000000000000000000000000000..7d21252f30f232c56ae1569a4f8e2e3a905dd5bd Binary files /dev/null and b/InManageBoot-ui/public/img/three/i48-4.png differ diff --git a/InManageBoot-ui/public/img/three/i48.png b/InManageBoot-ui/public/img/three/i48.png new file mode 100644 index 0000000000000000000000000000000000000000..a018a5073e340d9bff016ece3b87b942591e0b27 Binary files /dev/null and b/InManageBoot-ui/public/img/three/i48.png differ diff --git a/InManageBoot-ui/public/img/three/i9000.png b/InManageBoot-ui/public/img/three/i9000.png new file mode 100644 index 0000000000000000000000000000000000000000..e398963db283456eba406e9881786d4f49a8f555 Binary files /dev/null and b/InManageBoot-ui/public/img/three/i9000.png differ diff --git a/InManageBoot-ui/public/img/three/loadBalancer.png b/InManageBoot-ui/public/img/three/loadBalancer.png new file mode 100644 index 0000000000000000000000000000000000000000..3803c2c9d7bfb80c6fce2fb96d09cf26cfd68d24 Binary files /dev/null and b/InManageBoot-ui/public/img/three/loadBalancer.png differ diff --git a/InManageBoot-ui/public/img/three/s12508f-af.png b/InManageBoot-ui/public/img/three/s12508f-af.png new file mode 100644 index 0000000000000000000000000000000000000000..4bca443bfe2dca3d87910e19b113109bcd44e116 Binary files /dev/null and b/InManageBoot-ui/public/img/three/s12508f-af.png differ diff --git a/InManageBoot-ui/public/img/three/sg-6000-x1000.png b/InManageBoot-ui/public/img/three/sg-6000-x1000.png new file mode 100644 index 0000000000000000000000000000000000000000..b8ec047de24a19133fe1eafd8974f38ae453f0d7 Binary files /dev/null and b/InManageBoot-ui/public/img/three/sg-6000-x1000.png differ diff --git a/InManageBoot-ui/public/img/three/storage-green.gif b/InManageBoot-ui/public/img/three/storage-green.gif new file mode 100644 index 0000000000000000000000000000000000000000..c5dd6074a238fdef263443222012986ea1c6771b Binary files /dev/null and b/InManageBoot-ui/public/img/three/storage-green.gif differ diff --git a/InManageBoot-ui/public/img/three/storage-red.gif b/InManageBoot-ui/public/img/three/storage-red.gif new file mode 100644 index 0000000000000000000000000000000000000000..0b2f251c42ff94d3755aa9da6a3cbc1f123e2968 Binary files /dev/null and b/InManageBoot-ui/public/img/three/storage-red.gif differ diff --git a/InManageBoot-ui/public/img/three/storage-yellow.gif b/InManageBoot-ui/public/img/three/storage-yellow.gif new file mode 100644 index 0000000000000000000000000000000000000000..57763d61973c7d5125779909b5e7f15d547a90d9 Binary files /dev/null and b/InManageBoot-ui/public/img/three/storage-yellow.gif differ diff --git a/InManageBoot-ui/public/img/three/storage.png b/InManageBoot-ui/public/img/three/storage.png new file mode 100644 index 0000000000000000000000000000000000000000..831aab5fc42e8dc2d084e0676ee1c0a709ff621a Binary files /dev/null and b/InManageBoot-ui/public/img/three/storage.png differ diff --git a/InManageBoot-ui/public/img/three/switch-green.gif b/InManageBoot-ui/public/img/three/switch-green.gif new file mode 100644 index 0000000000000000000000000000000000000000..92e91b4f6d3617be39677cb54f3a702058a4ed4f Binary files /dev/null and b/InManageBoot-ui/public/img/three/switch-green.gif differ diff --git a/InManageBoot-ui/public/img/three/switch-red.gif b/InManageBoot-ui/public/img/three/switch-red.gif new file mode 100644 index 0000000000000000000000000000000000000000..cfb0ff87c33d3c4246291ea6ec3b91dadf5c47a2 Binary files /dev/null and b/InManageBoot-ui/public/img/three/switch-red.gif differ diff --git a/InManageBoot-ui/public/img/three/switch-yellow.gif b/InManageBoot-ui/public/img/three/switch-yellow.gif new file mode 100644 index 0000000000000000000000000000000000000000..348091356adc1b9791fcb05ad487378963a0bf86 Binary files /dev/null and b/InManageBoot-ui/public/img/three/switch-yellow.gif differ diff --git a/InManageBoot-ui/public/img/three/switch.png b/InManageBoot-ui/public/img/three/switch.png new file mode 100644 index 0000000000000000000000000000000000000000..c0f4c370541e2924999d29b523be432bd5df1353 Binary files /dev/null and b/InManageBoot-ui/public/img/three/switch.png differ diff --git a/InManageBoot-ui/public/img/three/t9008-s.png b/InManageBoot-ui/public/img/three/t9008-s.png new file mode 100644 index 0000000000000000000000000000000000000000..f283a0fec747ec0bb777c38bf914b603c798b7dc Binary files /dev/null and b/InManageBoot-ui/public/img/three/t9008-s.png differ diff --git a/InManageBoot-ui/public/img/three/zxr10M6000-8S-Plus.png b/InManageBoot-ui/public/img/three/zxr10M6000-8S-Plus.png new file mode 100644 index 0000000000000000000000000000000000000000..aa4758ed4e5795810b4ae0fbc9d74e62a565ec77 Binary files /dev/null and b/InManageBoot-ui/public/img/three/zxr10M6000-8S-Plus.png differ diff --git a/InManageBoot-ui/public/img/upgrade_1.png b/InManageBoot-ui/public/img/upgrade_1.png new file mode 100644 index 0000000000000000000000000000000000000000..3201830053ba522a42a75cfe3ebc88194d92aef8 Binary files /dev/null and b/InManageBoot-ui/public/img/upgrade_1.png differ diff --git a/InManageBoot-ui/public/index.html b/InManageBoot-ui/public/index.html new file mode 100644 index 0000000000000000000000000000000000000000..eed93a07fc468a6bbd58be9afeb4a4e01689af83 --- /dev/null +++ b/InManageBoot-ui/public/index.html @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + +
+ + diff --git a/InManageBoot-ui/public/kvm/5270m6.min.css b/InManageBoot-ui/public/kvm/5270m6.min.css new file mode 100644 index 0000000000000000000000000000000000000000..f3143e97ec0e7487dd29f5cab48f8a3d944ab21c --- /dev/null +++ b/InManageBoot-ui/public/kvm/5270m6.min.css @@ -0,0 +1,20086 @@ +@font-face { + font-family: 'open_sansregular'; + src: url('../fonts/OpenSans-Regular-webfont.eot'); + src: url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Regular-webfont.woff') format('woff'), url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg'); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'open_sanslight'; + src: url('../fonts/OpenSans-Light-webfont.eot'); + src: url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Light-webfont.woff') format('woff'), url('../fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('../fonts/OpenSans-Light-webfont.svg#open_sanslight') format('svg'); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'Source Sans Pro'; + font-style: normal; + font-weight: bolder; + src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(../fonts/toadOcfmlt9b38dHJxOBGNbE_oMaV8t2eFeISPpzbdE.woff) format('woff'); +} +@font-face { + font-family: 'Source Sans Pro'; + font-style: normal; + font-weight: bolder; + src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url(../fonts/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff) format('woff'); +} +@font-face { + font-family: 'Source Sans Pro'; + font-style: normal; + font-weight: bolder; + src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'), url(../fonts/toadOcfmlt9b38dHJxOBGJ6-ys_j0H4QL65VLqzI3wI.woff) format('woff'); +} +@font-face { + font-family: 'Source Sans Pro'; + font-style: italic; + font-weight: bolder; + src: local('Source Sans Pro Light Italic'), local('SourceSansPro-LightIt'), url(../fonts/fpTVHK8qsXbIeTHTrnQH6GGomRtBD2u8FwSY4jjlmeA.woff) format('woff'); +} +@font-face { + font-family: 'Source Sans Pro'; + font-style: italic; + font-weight: bolder; + src: local('Source Sans Pro Italic'), local('SourceSansPro-It'), url(../fonts/M2Jd71oPJhLKp0zdtTvoMzNrcjQuD0pTu1za2FULaMs.woff) format('woff'); +} +@font-face { + font-family: 'Source Sans Pro'; + font-style: italic; + font-weight: bolder; + src: local('Source Sans Pro Semibold Italic'), local('SourceSansPro-SemiboldIt'), url(../fonts/fpTVHK8qsXbIeTHTrnQH6PULlOK_XQENnt2ryrY843E.woff) format('woff'); +} +@font-face { + font-family: 'robotolight'; + src: url('../fonts/Roboto-Light-webfont.eot'); + src: url('../fonts/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Light-webfont.woff') format('woff'), url('../fonts/Roboto-Light-webfont.ttf') format('truetype'), url('../fonts/Roboto-Light-webfont.svg#robotolight') format('svg'); + font-weight: bolder; + font-style: normal; +} +@font-face { + font-family: 'robotothin'; + src: url('../fonts/Roboto-Thin-webfont.eot'); + src: url('../fonts/Roboto-Thin-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Thin-webfont.woff') format('woff'), url('../fonts/Roboto-Thin-webfont.ttf') format('truetype'), url('../fonts/Roboto-Thin-webfont.svg#robotothin') format('svg'); + font-weight: bolder; + font-style: normal; +} +/* iCheck plugin Square skin, blue +----------------------------------- */ +.icheckbox_square-blue, +.iradio_square-blue { + display: inline-block; + *display: inline; + vertical-align: middle; + margin: 0; + padding: 0; + width: 22px; + height: 22px; + background: url(blue.png) no-repeat; + border: none; + cursor: pointer; +} +.icheckbox_square-blue { + background-position: 0 0; +} +.icheckbox_square-blue.hover { + background-position: -24px 0; +} +.icheckbox_square-blue.checked { + background-position: -48px 0; +} +.icheckbox_square-blue.disabled { + background-position: -72px 0; + cursor: default; +} +.icheckbox_square-blue.checked.disabled { + background-position: -96px 0; +} +.iradio_square-blue { + background-position: -120px 0; +} +.iradio_square-blue.hover { + background-position: -144px 0; +} +.iradio_square-blue.checked { + background-position: -168px 0; +} +.iradio_square-blue.disabled { + background-position: -192px 0; + cursor: default; +} +.iradio_square-blue.checked.disabled { + background-position: -216px 0; +} +/* HiDPI support */ +@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) { + .icheckbox_square-blue, + .iradio_square-blue { + background-image: url(blue@2x.png); + -webkit-background-size: 240px 24px; + background-size: 240px 24px; + } +} +/*! normalize.css v3.0.1 | MIT License | git.io/normalize */ +html { + font-family: sans-serif; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} +body { + margin: 0; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], +template { + display: none; +} +a { + background: transparent; +} +a:active, +a:hover { + outline: 0; +} +abbr[title] { + border-bottom: 1px dotted; +} +b, +strong { + font-weight: bold; +} +dfn { + font-style: italic; +} +h1 { + font-size: 2em; + margin: 0.67em 0; +} +mark { + background: #ff0; + color: #000; +} +small { + font-size: 80%; +} +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +img { + border: 0; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} +pre { + overflow: auto; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +button, +input, +optgroup, +select, +textarea { + color: inherit; + font: inherit; + margin: 0; +} +button { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +button[disabled], +html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} +input { + line-height: normal; +} +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; + padding: 0; +} +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} +input[type="search"] { + -webkit-appearance: textfield; + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; +} +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} +legend { + border: 0; + padding: 0; +} +textarea { + overflow: auto; +} +optgroup { + font-weight: bold; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +td, +th { + padding: 0; +} +@media print { + * { + text-shadow: none !important; + color: #000 !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + select { + background: #fff !important; + } + .navbar { + display: none; + } + .table td, + .table th { + background-color: #fff !important; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} +@font-face { + font-family: 'Glyphicons Halflings'; + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); +} +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.glyphicon-asterisk:before { + content: "\2a"; +} +.glyphicon-plus:before { + content: "\2b"; +} +.glyphicon-euro:before { + content: "\20ac"; +} +.glyphicon-minus:before { + content: "\2212"; +} +.glyphicon-cloud:before { + content: "\2601"; +} +.glyphicon-envelope:before { + content: "\2709"; +} +.glyphicon-pencil:before { + content: "\270f"; +} +.glyphicon-glass:before { + content: "\e001"; +} +.glyphicon-music:before { + content: "\e002"; +} +.glyphicon-search:before { + content: "\e003"; +} +.glyphicon-heart:before { + content: "\e005"; +} +.glyphicon-star:before { + content: "\e006"; +} +.glyphicon-star-empty:before { + content: "\e007"; +} +.glyphicon-user:before { + content: "\e008"; +} +.glyphicon-film:before { + content: "\e009"; +} +.glyphicon-th-large:before { + content: "\e010"; +} +.glyphicon-th:before { + content: "\e011"; +} +.glyphicon-th-list:before { + content: "\e012"; +} +.glyphicon-ok:before { + content: "\e013"; +} +.glyphicon-remove:before { + content: "\e014"; +} +.glyphicon-zoom-in:before { + content: "\e015"; +} +.glyphicon-zoom-out:before { + content: "\e016"; +} +.glyphicon-off:before { + content: "\e017"; +} +.glyphicon-signal:before { + content: "\e018"; +} +.glyphicon-cog:before { + content: "\e019"; +} +.glyphicon-trash:before { + content: "\e020"; +} +.glyphicon-home:before { + content: "\e021"; +} +.glyphicon-file:before { + content: "\e022"; +} +.glyphicon-time:before { + content: "\e023"; +} +.glyphicon-road:before { + content: "\e024"; +} +.glyphicon-download-alt:before { + content: "\e025"; +} +.glyphicon-download:before { + content: "\e026"; +} +.glyphicon-upload:before { + content: "\e027"; +} +.glyphicon-inbox:before { + content: "\e028"; +} +.glyphicon-play-circle:before { + content: "\e029"; +} +.glyphicon-repeat:before { + content: "\e030"; +} +.glyphicon-refresh:before { + content: "\e031"; +} +.glyphicon-list-alt:before { + content: "\e032"; +} +.glyphicon-lock:before { + content: "\e033"; +} +.glyphicon-flag:before { + content: "\e034"; +} +.glyphicon-headphones:before { + content: "\e035"; +} +.glyphicon-volume-off:before { + content: "\e036"; +} +.glyphicon-volume-down:before { + content: "\e037"; +} +.glyphicon-volume-up:before { + content: "\e038"; +} +.glyphicon-qrcode:before { + content: "\e039"; +} +.glyphicon-barcode:before { + content: "\e040"; +} +.glyphicon-tag:before { + content: "\e041"; +} +.glyphicon-tags:before { + content: "\e042"; +} +.glyphicon-book:before { + content: "\e043"; +} +.glyphicon-bookmark:before { + content: "\e044"; +} +.glyphicon-print:before { + content: "\e045"; +} +.glyphicon-camera:before { + content: "\e046"; +} +.glyphicon-font:before { + content: "\e047"; +} +.glyphicon-bold:before { + content: "\e048"; +} +.glyphicon-italic:before { + content: "\e049"; +} +.glyphicon-text-height:before { + content: "\e050"; +} +.glyphicon-text-width:before { + content: "\e051"; +} +.glyphicon-align-left:before { + content: "\e052"; +} +.glyphicon-align-center:before { + content: "\e053"; +} +.glyphicon-align-right:before { + content: "\e054"; +} +.glyphicon-align-justify:before { + content: "\e055"; +} +.glyphicon-list:before { + content: "\e056"; +} +.glyphicon-indent-left:before { + content: "\e057"; +} +.glyphicon-indent-right:before { + content: "\e058"; +} +.glyphicon-facetime-video:before { + content: "\e059"; +} +.glyphicon-picture:before { + content: "\e060"; +} +.glyphicon-map-marker:before { + content: "\e062"; +} +.glyphicon-adjust:before { + content: "\e063"; +} +.glyphicon-tint:before { + content: "\e064"; +} +.glyphicon-edit:before { + content: "\e065"; +} +.glyphicon-share:before { + content: "\e066"; +} +.glyphicon-check:before { + content: "\e067"; +} +.glyphicon-move:before { + content: "\e068"; +} +.glyphicon-step-backward:before { + content: "\e069"; +} +.glyphicon-fast-backward:before { + content: "\e070"; +} +.glyphicon-backward:before { + content: "\e071"; +} +.glyphicon-play:before { + content: "\e072"; +} +.glyphicon-pause:before { + content: "\e073"; +} +.glyphicon-stop:before { + content: "\e074"; +} +.glyphicon-forward:before { + content: "\e075"; +} +.glyphicon-fast-forward:before { + content: "\e076"; +} +.glyphicon-step-forward:before { + content: "\e077"; +} +.glyphicon-eject:before { + content: "\e078"; +} +.glyphicon-chevron-left:before { + content: "\e079"; +} +.glyphicon-chevron-right:before { + content: "\e080"; +} +.glyphicon-plus-sign:before { + content: "\e081"; +} +.glyphicon-minus-sign:before { + content: "\e082"; +} +.glyphicon-remove-sign:before { + content: "\e083"; +} +.glyphicon-ok-sign:before { + content: "\e084"; +} +.glyphicon-question-sign:before { + content: "\e085"; +} +.glyphicon-info-sign:before { + content: "\e086"; +} +.glyphicon-screenshot:before { + content: "\e087"; +} +.glyphicon-remove-circle:before { + content: "\e088"; +} +.glyphicon-ok-circle:before { + content: "\e089"; +} +.glyphicon-ban-circle:before { + content: "\e090"; +} +.glyphicon-arrow-left:before { + content: "\e091"; +} +.glyphicon-arrow-right:before { + content: "\e092"; +} +.glyphicon-arrow-up:before { + content: "\e093"; +} +.glyphicon-arrow-down:before { + content: "\e094"; +} +.glyphicon-share-alt:before { + content: "\e095"; +} +.glyphicon-resize-full:before { + content: "\e096"; +} +.glyphicon-resize-small:before { + content: "\e097"; +} +.glyphicon-exclamation-sign:before { + content: "\e101"; +} +.glyphicon-gift:before { + content: "\e102"; +} +.glyphicon-leaf:before { + content: "\e103"; +} +.glyphicon-fire:before { + content: "\e104"; +} +.glyphicon-eye-open:before { + content: "\e105"; +} +.glyphicon-eye-close:before { + content: "\e106"; +} +.glyphicon-warning-sign:before { + content: "\e107"; +} +.glyphicon-plane:before { + content: "\e108"; +} +.glyphicon-calendar:before { + content: "\e109"; +} +.glyphicon-random:before { + content: "\e110"; +} +.glyphicon-comment:before { + content: "\e111"; +} +.glyphicon-magnet:before { + content: "\e112"; +} +.glyphicon-chevron-up:before { + content: "\e113"; +} +.glyphicon-chevron-down:before { + content: "\e114"; +} +.glyphicon-retweet:before { + content: "\e115"; +} +.glyphicon-shopping-cart:before { + content: "\e116"; +} +.glyphicon-folder-close:before { + content: "\e117"; +} +.glyphicon-folder-open:before { + content: "\e118"; +} +.glyphicon-resize-vertical:before { + content: "\e119"; +} +.glyphicon-resize-horizontal:before { + content: "\e120"; +} +.glyphicon-hdd:before { + content: "\e121"; +} +.glyphicon-bullhorn:before { + content: "\e122"; +} +.glyphicon-bell:before { + content: "\e123"; +} +.glyphicon-certificate:before { + content: "\e124"; +} +.glyphicon-thumbs-up:before { + content: "\e125"; +} +.glyphicon-thumbs-down:before { + content: "\e126"; +} +.glyphicon-hand-right:before { + content: "\e127"; +} +.glyphicon-hand-left:before { + content: "\e128"; +} +.glyphicon-hand-up:before { + content: "\e129"; +} +.glyphicon-hand-down:before { + content: "\e130"; +} +.glyphicon-circle-arrow-right:before { + content: "\e131"; +} +.glyphicon-circle-arrow-left:before { + content: "\e132"; +} +.glyphicon-circle-arrow-up:before { + content: "\e133"; +} +.glyphicon-circle-arrow-down:before { + content: "\e134"; +} +.glyphicon-globe:before { + content: "\e135"; +} +.glyphicon-wrench:before { + content: "\e136"; +} +.glyphicon-tasks:before { + content: "\e137"; +} +.glyphicon-filter:before { + content: "\e138"; +} +.glyphicon-briefcase:before { + content: "\e139"; +} +.glyphicon-fullscreen:before { + content: "\e140"; +} +.glyphicon-dashboard:before { + content: "\e141"; +} +.glyphicon-paperclip:before { + content: "\e142"; +} +.glyphicon-heart-empty:before { + content: "\e143"; +} +.glyphicon-link:before { + content: "\e144"; +} +.glyphicon-phone:before { + content: "\e145"; +} +.glyphicon-pushpin:before { + content: "\e146"; +} +.glyphicon-usd:before { + content: "\e148"; +} +.glyphicon-gbp:before { + content: "\e149"; +} +.glyphicon-sort:before { + content: "\e150"; +} +.glyphicon-sort-by-alphabet:before { + content: "\e151"; +} +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152"; +} +.glyphicon-sort-by-order:before { + content: "\e153"; +} +.glyphicon-sort-by-order-alt:before { + content: "\e154"; +} +.glyphicon-sort-by-attributes:before { + content: "\e155"; +} +.glyphicon-sort-by-attributes-alt:before { + content: "\e156"; +} +.glyphicon-unchecked:before { + content: "\e157"; +} +.glyphicon-expand:before { + content: "\e158"; +} +.glyphicon-collapse-down:before { + content: "\e159"; +} +.glyphicon-collapse-up:before { + content: "\e160"; +} +.glyphicon-log-in:before { + content: "\e161"; +} +.glyphicon-flash:before { + content: "\e162"; +} +.glyphicon-log-out:before { + content: "\e163"; +} +.glyphicon-new-window:before { + content: "\e164"; +} +.glyphicon-record:before { + content: "\e165"; +} +.glyphicon-save:before { + content: "\e166"; +} +.glyphicon-open:before { + content: "\e167"; +} +.glyphicon-saved:before { + content: "\e168"; +} +.glyphicon-import:before { + content: "\e169"; +} +.glyphicon-export:before { + content: "\e170"; +} +.glyphicon-send:before { + content: "\e171"; +} +.glyphicon-floppy-disk:before { + content: "\e172"; +} +.glyphicon-floppy-saved:before { + content: "\e173"; +} +.glyphicon-floppy-remove:before { + content: "\e174"; +} +.glyphicon-floppy-save:before { + content: "\e175"; +} +.glyphicon-floppy-open:before { + content: "\e176"; +} +.glyphicon-credit-card:before { + content: "\e177"; +} +.glyphicon-transfer:before { + content: "\e178"; +} +.glyphicon-cutlery:before { + content: "\e179"; +} +.glyphicon-header:before { + content: "\e180"; +} +.glyphicon-compressed:before { + content: "\e181"; +} +.glyphicon-earphone:before { + content: "\e182"; +} +.glyphicon-phone-alt:before { + content: "\e183"; +} +.glyphicon-tower:before { + content: "\e184"; +} +.glyphicon-stats:before { + content: "\e185"; +} +.glyphicon-sd-video:before { + content: "\e186"; +} +.glyphicon-hd-video:before { + content: "\e187"; +} +.glyphicon-subtitles:before { + content: "\e188"; +} +.glyphicon-sound-stereo:before { + content: "\e189"; +} +.glyphicon-sound-dolby:before { + content: "\e190"; +} +.glyphicon-sound-5-1:before { + content: "\e191"; +} +.glyphicon-sound-6-1:before { + content: "\e192"; +} +.glyphicon-sound-7-1:before { + content: "\e193"; +} +.glyphicon-copyright-mark:before { + content: "\e194"; +} +.glyphicon-registration-mark:before { + content: "\e195"; +} +.glyphicon-cloud-download:before { + content: "\e197"; +} +.glyphicon-cloud-upload:before { + content: "\e198"; +} +.glyphicon-tree-conifer:before { + content: "\e199"; +} +.glyphicon-tree-deciduous:before { + content: "\e200"; +} +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + font-size: 10px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.42857143; + color: #333333; + background-color: #f9f9f9; +} +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +a { + color: #3c8dbc; + text-decoration: none; +} +a:hover, +a:focus { + color: #72afd2; + text-decoration: underline; +} +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +figure { + margin: 0; +} +img { + vertical-align: middle; +} +.img-responsive, +.thumbnail > img, +.thumbnail a > img, +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + width: 100% \9; + max-width: 100%; + height: auto; +} +.img-rounded { + border-radius: 6px; +} +.img-thumbnail { + padding: 4px; + line-height: 1.42857143; + background-color: #f9f9f9; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + display: inline-block; + width: 100% \9; + max-width: 100%; + height: auto; +} +.img-circle { + border-radius: 50%; +} +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit; +} +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small, +.h1 small, +.h2 small, +.h3 small, +.h4 small, +.h5 small, +.h6 small, +h1 .small, +h2 .small, +h3 .small, +h4 .small, +h5 .small, +h6 .small, +.h1 .small, +.h2 .small, +.h3 .small, +.h4 .small, +.h5 .small, +.h6 .small { + font-weight: normal; + line-height: 1; + color: #777777; +} +h1, +.h1, +h2, +.h2, +h3, +.h3 { + margin-top: 20px; + margin-bottom: 10px; +} +h1 small, +.h1 small, +h2 small, +.h2 small, +h3 small, +.h3 small, +h1 .small, +.h1 .small, +h2 .small, +.h2 .small, +h3 .small, +.h3 .small { + font-size: 65%; +} +h4, +.h4, +h5, +.h5, +h6, +.h6 { + margin-top: 10px; + margin-bottom: 10px; +} +h4 small, +.h4 small, +h5 small, +.h5 small, +h6 small, +.h6 small, +h4 .small, +.h4 .small, +h5 .small, +.h5 .small, +h6 .small, +.h6 .small { + font-size: 75%; +} +h1, +.h1 { + font-size: 36px; +} +h2, +.h2 { + font-size: 30px; +} +h3, +.h3 { + font-size: 24px; +} +h4, +.h4 { + font-size: 18px; +} +h5, +.h5 { + font-size: 14px; +} +h6, +.h6 { + font-size: 12px; +} +p { + margin: 0 0 10px; +} +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4; +} +@media (min-width: 767px) { + .lead { + font-size: 21px; + } +} +small, +.small { + font-size: 85%; +} +cite { + font-style: normal; +} +mark, +.mark { + background-color: #fcf8e3; + padding: .2em; +} +.text-left { + text-align: left; +} +.text-right { + text-align: right; +} +.text-center { + text-align: center; +} +.text-justify { + text-align: justify; +} +.text-nowrap { + white-space: nowrap; +} +.text-lowercase { + text-transform: lowercase; +} +.text-uppercase { + text-transform: uppercase; +} +.text-capitalize { + text-transform: capitalize; +} +.text-muted { + color: #777777; +} +.text-primary { + color: #428bca; +} +a.text-primary:hover { + color: #3071a9; +} +.text-success { + color: #3c763d; +} +a.text-success:hover { + color: #2b542c; +} +.text-info { + color: #31708f; +} +a.text-info:hover { + color: #245269; +} +.text-warning { + color: #8a6d3b; +} +a.text-warning:hover { + color: #66512c; +} +.text-danger { + color: #a94442; +} +a.text-danger:hover { + color: #843534; +} +.bg-primary { + color: #fff; + background-color: #428bca; +} +a.bg-primary:hover { + background-color: #3071a9; +} +.bg-success { + background-color: #dff0d8; +} +a.bg-success:hover { + background-color: #c1e2b3; +} +.bg-info { + background-color: #d9edf7; +} +a.bg-info:hover { + background-color: #afd9ee; +} +.bg-warning { + background-color: #fcf8e3; +} +a.bg-warning:hover { + background-color: #f7ecb5; +} +.bg-danger { + background-color: #f2dede; +} +a.bg-danger:hover { + background-color: #e4b9b9; +} +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eeeeee; +} +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} +ul ul, +ol ul, +ul ol, +ol ol { + margin-bottom: 0; +} +.list-unstyled { + padding-left: 0; + list-style: none; +} +.list-inline { + padding-left: 0; + list-style: none; + margin-left: -5px; +} +.list-inline > li { + display: inline-block; + padding-left: 5px; + padding-right: 5px; +} +dl { + margin-top: 0; + margin-bottom: 20px; +} +dt, +dd { + line-height: 1.42857143; +} +dt { + font-weight: bold; +} +dd { + margin-left: 0; +} +@media (min-width: 767px) { + .dl-horizontal dt { + float: left; + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; + } +} +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #777777; +} +.initialism { + font-size: 90%; + text-transform: uppercase; +} +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #eeeeee; +} +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { + margin-bottom: 0; +} +blockquote footer, +blockquote small, +blockquote .small { + display: block; + font-size: 80%; + line-height: 1.42857143; + color: #777777; +} +blockquote footer:before, +blockquote small:before, +blockquote .small:before { + content: '\2014 \00A0'; +} +.blockquote-reverse, +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + border-left: 0; + text-align: right; +} +.blockquote-reverse footer:before, +blockquote.pull-right footer:before, +.blockquote-reverse small:before, +blockquote.pull-right small:before, +.blockquote-reverse .small:before, +blockquote.pull-right .small:before { + content: ''; +} +.blockquote-reverse footer:after, +blockquote.pull-right footer:after, +.blockquote-reverse small:after, +blockquote.pull-right small:after, +.blockquote-reverse .small:after, +blockquote.pull-right .small:after { + content: '\00A0 \2014'; +} +blockquote:before, +blockquote:after { + content: ""; +} +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.42857143; +} +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; +} +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 4px; +} +kbd { + padding: 2px 4px; + font-size: 90%; + color: #ffffff; + background-color: #333333; + border-radius: 3px; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); +} +kbd kbd { + padding: 0; + font-size: 100%; + box-shadow: none; +} +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.42857143; + word-break: break-all; + word-wrap: break-word; + color: #333333; + background-color: #f5f5f5; + border: 1px solid #cccccc; + border-radius: 4px; +} +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0; +} +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +.container { + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px; +} +@media (min-width: 767px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} +.container-fluid { + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px; +} +.row { + margin-left: -15px; + margin-right: -15px; +} +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { + position: relative; + min-height: 1px; + padding-left: 15px; + padding-right: 15px; +} +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left; +} +.col-xs-12 { + width: 100%; +} +.col-xs-11 { + width: 91.66666667%; +} +.col-xs-10 { + width: 83.33333333%; +} +.col-xs-9 { + width: 75%; +} +.col-xs-8 { + width: 66.66666667%; +} +.col-xs-7 { + width: 58.33333333%; +} +.col-xs-6 { + width: 50%; +} +.col-xs-5 { + width: 41.66666667%; +} +.col-xs-4 { + width: 33.33333333%; +} +.col-xs-3 { + width: 25%; +} +.col-xs-2 { + width: 16.66666667%; +} +.col-xs-1 { + width: 8.33333333%; +} +.col-xs-pull-12 { + right: 100%; +} +.col-xs-pull-11 { + right: 91.66666667%; +} +.col-xs-pull-10 { + right: 83.33333333%; +} +.col-xs-pull-9 { + right: 75%; +} +.col-xs-pull-8 { + right: 66.66666667%; +} +.col-xs-pull-7 { + right: 58.33333333%; +} +.col-xs-pull-6 { + right: 50%; +} +.col-xs-pull-5 { + right: 41.66666667%; +} +.col-xs-pull-4 { + right: 33.33333333%; +} +.col-xs-pull-3 { + right: 25%; +} +.col-xs-pull-2 { + right: 16.66666667%; +} +.col-xs-pull-1 { + right: 8.33333333%; +} +.col-xs-pull-0 { + right: auto; +} +.col-xs-push-12 { + left: 100%; +} +.col-xs-push-11 { + left: 91.66666667%; +} +.col-xs-push-10 { + left: 83.33333333%; +} +.col-xs-push-9 { + left: 75%; +} +.col-xs-push-8 { + left: 66.66666667%; +} +.col-xs-push-7 { + left: 58.33333333%; +} +.col-xs-push-6 { + left: 50%; +} +.col-xs-push-5 { + left: 41.66666667%; +} +.col-xs-push-4 { + left: 33.33333333%; +} +.col-xs-push-3 { + left: 25%; +} +.col-xs-push-2 { + left: 16.66666667%; +} +.col-xs-push-1 { + left: 8.33333333%; +} +.col-xs-push-0 { + left: auto; +} +.col-xs-offset-12 { + margin-left: 100%; +} +.col-xs-offset-11 { + margin-left: 91.66666667%; +} +.col-xs-offset-10 { + margin-left: 83.33333333%; +} +.col-xs-offset-9 { + margin-left: 75%; +} +.col-xs-offset-8 { + margin-left: 66.66666667%; +} +.col-xs-offset-7 { + margin-left: 58.33333333%; +} +.col-xs-offset-6 { + margin-left: 50%; +} +.col-xs-offset-5 { + margin-left: 41.66666667%; +} +.col-xs-offset-4 { + margin-left: 33.33333333%; +} +.col-xs-offset-3 { + margin-left: 25%; +} +.col-xs-offset-2 { + margin-left: 16.66666667%; +} +.col-xs-offset-1 { + margin-left: 8.33333333%; +} +.col-xs-offset-0 { + margin-left: 0%; +} +@media (min-width: 767px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left; + } + .col-sm-12 { + width: 100%; + } + .col-sm-11 { + width: 91.66666667%; + } + .col-sm-10 { + width: 83.33333333%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-8 { + width: 66.66666667%; + } + .col-sm-7 { + width: 58.33333333%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-5 { + width: 41.66666667%; + } + .col-sm-4 { + width: 33.33333333%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-2 { + width: 16.66666667%; + } + .col-sm-1 { + width: 8.33333333%; + } + .col-sm-pull-12 { + right: 100%; + } + .col-sm-pull-11 { + right: 91.66666667%; + } + .col-sm-pull-10 { + right: 83.33333333%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-8 { + right: 66.66666667%; + } + .col-sm-pull-7 { + right: 58.33333333%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-5 { + right: 41.66666667%; + } + .col-sm-pull-4 { + right: 33.33333333%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-2 { + right: 16.66666667%; + } + .col-sm-pull-1 { + right: 8.33333333%; + } + .col-sm-pull-0 { + right: auto; + } + .col-sm-push-12 { + left: 100%; + } + .col-sm-push-11 { + left: 91.66666667%; + } + .col-sm-push-10 { + left: 83.33333333%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-8 { + left: 66.66666667%; + } + .col-sm-push-7 { + left: 58.33333333%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-5 { + left: 41.66666667%; + } + .col-sm-push-4 { + left: 33.33333333%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-2 { + left: 16.66666667%; + } + .col-sm-push-1 { + left: 8.33333333%; + } + .col-sm-push-0 { + left: auto; + } + .col-sm-offset-12 { + margin-left: 100%; + } + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + .col-sm-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left; + } + .col-md-12 { + width: 100%; + } + .col-md-11 { + width: 91.66666667%; + } + .col-md-10 { + width: 83.33333333%; + } + .col-md-9 { + width: 75%; + } + .col-md-8 { + width: 66.66666667%; + } + .col-md-7 { + width: 58.33333333%; + } + .col-md-6 { + width: 50%; + } + .col-md-5 { + width: 41.66666667%; + } + .col-md-4 { + width: 33.33333333%; + } + .col-md-3 { + width: 25%; + } + .col-md-2 { + width: 16.66666667%; + } + .col-md-1 { + width: 8.33333333%; + } + .col-md-pull-12 { + right: 100%; + } + .col-md-pull-11 { + right: 91.66666667%; + } + .col-md-pull-10 { + right: 83.33333333%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-8 { + right: 66.66666667%; + } + .col-md-pull-7 { + right: 58.33333333%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-5 { + right: 41.66666667%; + } + .col-md-pull-4 { + right: 33.33333333%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-2 { + right: 16.66666667%; + } + .col-md-pull-1 { + right: 8.33333333%; + } + .col-md-pull-0 { + right: auto; + } + .col-md-push-12 { + left: 100%; + } + .col-md-push-11 { + left: 91.66666667%; + } + .col-md-push-10 { + left: 83.33333333%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-8 { + left: 66.66666667%; + } + .col-md-push-7 { + left: 58.33333333%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-5 { + left: 41.66666667%; + } + .col-md-push-4 { + left: 33.33333333%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-2 { + left: 16.66666667%; + } + .col-md-push-1 { + left: 8.33333333%; + } + .col-md-push-0 { + left: auto; + } + .col-md-offset-12 { + margin-left: 100%; + } + .col-md-offset-11 { + margin-left: 91.66666667%; + } + .col-md-offset-10 { + margin-left: 83.33333333%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-8 { + margin-left: 66.66666667%; + } + .col-md-offset-7 { + margin-left: 58.33333333%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-5 { + margin-left: 41.66666667%; + } + .col-md-offset-4 { + margin-left: 33.33333333%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-2 { + margin-left: 16.66666667%; + } + .col-md-offset-1 { + margin-left: 8.33333333%; + } + .col-md-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left; + } + .col-lg-12 { + width: 100%; + } + .col-lg-11 { + width: 91.66666667%; + } + .col-lg-10 { + width: 83.33333333%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-8 { + width: 66.66666667%; + } + .col-lg-7 { + width: 58.33333333%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-5 { + width: 41.66666667%; + } + .col-lg-4 { + width: 33.33333333%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-2 { + width: 16.66666667%; + } + .col-lg-1 { + width: 8.33333333%; + } + .col-lg-pull-12 { + right: 100%; + } + .col-lg-pull-11 { + right: 91.66666667%; + } + .col-lg-pull-10 { + right: 83.33333333%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-8 { + right: 66.66666667%; + } + .col-lg-pull-7 { + right: 58.33333333%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-5 { + right: 41.66666667%; + } + .col-lg-pull-4 { + right: 33.33333333%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-2 { + right: 16.66666667%; + } + .col-lg-pull-1 { + right: 8.33333333%; + } + .col-lg-pull-0 { + right: auto; + } + .col-lg-push-12 { + left: 100%; + } + .col-lg-push-11 { + left: 91.66666667%; + } + .col-lg-push-10 { + left: 83.33333333%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-8 { + left: 66.66666667%; + } + .col-lg-push-7 { + left: 58.33333333%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-5 { + left: 41.66666667%; + } + .col-lg-push-4 { + left: 33.33333333%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-2 { + left: 16.66666667%; + } + .col-lg-push-1 { + left: 8.33333333%; + } + .col-lg-push-0 { + left: auto; + } + .col-lg-offset-12 { + margin-left: 100%; + } + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + .col-lg-offset-0 { + margin-left: 0%; + } +} +table { + background-color: transparent; +} +th { + text-align: left; +} +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px; +} +.table > thead > tr > th, +.table > tbody > tr > th, +.table > tfoot > tr > th, +.table > thead > tr > td, +.table > tbody > tr > td, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.42857143; + vertical-align: top; + border-top: 1px solid #dddddd; +} +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #dddddd; +} +.table > caption + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > th, +.table > thead:first-child > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > td { + border-top: 0; +} +.table > tbody + tbody { + border-top: 2px solid #dddddd; +} +.table .table { + background-color: #f9f9f9; +} +.table-condensed > thead > tr > th, +.table-condensed > tbody > tr > th, +.table-condensed > tfoot > tr > th, +.table-condensed > thead > tr > td, +.table-condensed > tbody > tr > td, +.table-condensed > tfoot > tr > td { + padding: 5px; +} +.table-bordered { + border: 1px solid #dddddd; +} +.table-bordered > thead > tr > th, +.table-bordered > tbody > tr > th, +.table-bordered > tfoot > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > td { + border: 1px solid #dddddd; +} +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; +} +.table-striped > tbody > tr:nth-child(odd) > td, +.table-striped > tbody > tr:nth-child(odd) > th { + background-color: #f9f9f9; +} +.table-hover > tbody > tr:hover > td, +.table-hover > tbody > tr:hover > th { + background-color: #f5f5f5; +} +table col[class*="col-"] { + position: static; + float: none; + display: table-column; +} +table td[class*="col-"], +table th[class*="col-"] { + position: static; + float: none; + display: table-cell; +} +.table > thead > tr > td.active, +.table > tbody > tr > td.active, +.table > tfoot > tr > td.active, +.table > thead > tr > th.active, +.table > tbody > tr > th.active, +.table > tfoot > tr > th.active, +.table > thead > tr.active > td, +.table > tbody > tr.active > td, +.table > tfoot > tr.active > td, +.table > thead > tr.active > th, +.table > tbody > tr.active > th, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; +} +.table-hover > tbody > tr > td.active:hover, +.table-hover > tbody > tr > th.active:hover, +.table-hover > tbody > tr.active:hover > td, +.table-hover > tbody > tr:hover > .active, +.table-hover > tbody > tr.active:hover > th { + background-color: #e8e8e8; +} +.table > thead > tr > td.success, +.table > tbody > tr > td.success, +.table > tfoot > tr > td.success, +.table > thead > tr > th.success, +.table > tbody > tr > th.success, +.table > tfoot > tr > th.success, +.table > thead > tr.success > td, +.table > tbody > tr.success > td, +.table > tfoot > tr.success > td, +.table > thead > tr.success > th, +.table > tbody > tr.success > th, +.table > tfoot > tr.success > th { + background-color: #dff0d8; +} +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, +.table-hover > tbody > tr.success:hover > td, +.table-hover > tbody > tr:hover > .success, +.table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; +} +.table > thead > tr > td.info, +.table > tbody > tr > td.info, +.table > tfoot > tr > td.info, +.table > thead > tr > th.info, +.table > tbody > tr > th.info, +.table > tfoot > tr > th.info, +.table > thead > tr.info > td, +.table > tbody > tr.info > td, +.table > tfoot > tr.info > td, +.table > thead > tr.info > th, +.table > tbody > tr.info > th, +.table > tfoot > tr.info > th { + background-color: #d9edf7; +} +.table-hover > tbody > tr > td.info:hover, +.table-hover > tbody > tr > th.info:hover, +.table-hover > tbody > tr.info:hover > td, +.table-hover > tbody > tr:hover > .info, +.table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; +} +.table > thead > tr > td.warning, +.table > tbody > tr > td.warning, +.table > tfoot > tr > td.warning, +.table > thead > tr > th.warning, +.table > tbody > tr > th.warning, +.table > tfoot > tr > th.warning, +.table > thead > tr.warning > td, +.table > tbody > tr.warning > td, +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; +} +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, +.table-hover > tbody > tr.warning:hover > td, +.table-hover > tbody > tr:hover > .warning, +.table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; +} +.table > thead > tr > td.danger, +.table > tbody > tr > td.danger, +.table > tfoot > tr > td.danger, +.table > thead > tr > th.danger, +.table > tbody > tr > th.danger, +.table > tfoot > tr > th.danger, +.table > thead > tr.danger > td, +.table > tbody > tr.danger > td, +.table > tfoot > tr.danger > td, +.table > thead > tr.danger > th, +.table > tbody > tr.danger > th, +.table > tfoot > tr.danger > th { + background-color: #f2dede; +} +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, +.table-hover > tbody > tr.danger:hover > td, +.table-hover > tbody > tr:hover > .danger, +.table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; +} +@media screen and (max-width: 766px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + overflow-x: auto; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #dddddd; + -webkit-overflow-scrolling: touch; + } + .table-responsive > .table { + margin-bottom: 0; + } + .table-responsive > .table > thead > tr > th, + .table-responsive > .table > tbody > tr > th, + .table-responsive > .table > tfoot > tr > th, + .table-responsive > .table > thead > tr > td, + .table-responsive > .table > tbody > tr > td, + .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, + .table-responsive > .table-bordered > tbody > tr > th:first-child, + .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .table-responsive > .table-bordered > thead > tr > td:first-child, + .table-responsive > .table-bordered > tbody > tr > td:first-child, + .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, + .table-responsive > .table-bordered > tbody > tr > th:last-child, + .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .table-responsive > .table-bordered > thead > tr > td:last-child, + .table-responsive > .table-bordered > tbody > tr > td:last-child, + .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > tbody > tr:last-child > th, + .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .table-responsive > .table-bordered > tbody > tr:last-child > td, + .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} +fieldset { + padding: 0; + margin: 0; + border: 0; + min-width: 0; +} +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: bold; +} +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal; +} +input[type="file"] { + display: block; +} +input[type="range"] { + display: block; + width: 100%; +} +select[multiple], +select[size] { + height: auto; +} +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.42857143; + color: #eaeaec; +} +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + color: #eaeaec; + background-color: #ffffff; + background-image: none; + border: 1px solid #cccccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + -ms-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; +} +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); +} +.form-control::-moz-placeholder { + color: #777777; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #777777; +} +.form-control::-webkit-input-placeholder { + color: #777777; +} +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + cursor: not-allowed; + background-color: #eeeeee; + opacity: 1; +} +textarea.form-control { + height: auto; +} +input[type="search"] { + -webkit-appearance: none; +} +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + line-height: 34px; + line-height: 1.42857143 \0; +} +input[type="date"].input-sm, +input[type="time"].input-sm, +input[type="datetime-local"].input-sm, +input[type="month"].input-sm { + line-height: 30px; +} +input[type="date"].input-lg, +input[type="time"].input-lg, +input[type="datetime-local"].input-lg, +input[type="month"].input-lg { + line-height: 46px; +} +.form-group { + margin-bottom: 15px; +} +.radio, +.checkbox { + position: relative; + display: block; + min-height: 20px; + margin-top: 10px; + margin-bottom: 10px; +} +.radio label, +.checkbox label { + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + cursor: pointer; +} +.radio input[type="radio"], +.radio-inline input[type="radio"], +.checkbox input[type="checkbox"], +.checkbox-inline input[type="checkbox"] { + position: absolute; + margin-left: -20px; + margin-top: 4px \9; +} +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} +.radio-inline, +.checkbox-inline { + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + vertical-align: middle; + font-weight: normal; + cursor: pointer; +} +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"].disabled, +input[type="checkbox"].disabled, +fieldset[disabled] input[type="radio"], +fieldset[disabled] input[type="checkbox"] { + cursor: not-allowed; +} +.radio-inline.disabled, +.checkbox-inline.disabled, +fieldset[disabled] .radio-inline, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} +.radio.disabled label, +.checkbox.disabled label, +fieldset[disabled] .radio label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; +} +.form-control-static { + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; +} +.form-control-static.input-lg, +.form-control-static.input-sm { + padding-left: 0; + padding-right: 0; +} +.input-sm, +.form-horizontal .form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-sm { + height: 30px; + line-height: 30px; +} +textarea.input-sm, +select[multiple].input-sm { + height: auto; +} +.input-lg, +.form-horizontal .form-group-lg .form-control { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} +select.input-lg { + height: 46px; + line-height: 46px; +} +textarea.input-lg, +select[multiple].input-lg { + height: auto; +} +.has-feedback { + position: relative; +} +.has-feedback .form-control { + padding-right: 42.5px; +} +.form-control-feedback { + position: absolute; + top: 25px; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; +} +.input-lg + .form-control-feedback { + width: 46px; + height: 46px; + line-height: 46px; +} +.input-sm + .form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px; +} +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline { + color: #3c763d; +} +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; +} +.has-success .input-group-addon { + color: #3c763d; + border-color: #3c763d; + background-color: #dff0d8; +} +.has-success .form-control-feedback { + color: #3c763d; +} +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline { + color: #8a6d3b; +} +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; +} +.has-warning .input-group-addon { + color: #8a6d3b; + border-color: #8a6d3b; + background-color: #fcf8e3; +} +.has-warning .form-control-feedback { + color: #8a6d3b; +} +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline { + color: #a94442; +} +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; +} +.has-error .input-group-addon { + color: #a94442; + border-color: #a94442; + background-color: #f2dede; +} +.has-error .form-control-feedback { + color: #a94442; +} +.has-feedback label.sr-only ~ .form-control-feedback { + top: 0; +} +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} +@media (min-width: 767px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .input-group { + display: inline-table; + vertical-align: middle; + } + .form-inline .input-group .input-group-addon, + .form-inline .input-group .input-group-btn, + .form-inline .input-group .form-control { + width: auto; + } + .form-inline .input-group > .form-control { + width: 100%; + } + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio, + .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio label, + .form-inline .checkbox label { + padding-left: 0; + } + .form-inline .radio input[type="radio"], + .form-inline .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .form-inline .has-feedback .form-control-feedback { + top: 0; + } +} +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + margin-top: 0; + margin-bottom: 0; + padding-top: 7px; +} +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 27px; +} +.form-horizontal .form-group { + margin-left: -15px; + margin-right: -15px; +} +@media (min-width: 767px) { + .form-horizontal .control-label { + text-align: right; + margin-bottom: 0; + padding-top: 7px; + } +} +.form-horizontal .has-feedback .form-control-feedback { + top: 0; + right: 15px; +} +@media (min-width: 767px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 14.3px; + } +} +@media (min-width: 767px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px; + } +} +.btn { + display: inline-block; + margin-bottom: 0; + font-weight: normal; + text-align: center; + vertical-align: middle; + cursor: pointer; + background-image: none; + border: 1px solid transparent; + white-space: nowrap; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + border-radius: 4px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.btn:focus, +.btn:active:focus, +.btn.active:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn:hover, +.btn:focus { + color: #333333; + text-decoration: none; +} +.btn:active, +.btn.active { + outline: 0; + background-image: none; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + cursor: not-allowed; + pointer-events: none; + filter: alpha(opacity=65); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; + filter: alpha(opacity=(65)); + opacity: 0.65; + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-default { + color: #333333; + background-color: #ffffff; + border-color: #cccccc; +} +.btn-default:hover, +.btn-default:focus, +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + color: #333333; + background-color: #e6e6e6; + border-color: #adadad; +} +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + background-image: none; +} +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #ffffff; + border-color: #cccccc; +} +.btn-default .badge { + color: #ffffff; + background-color: #333333; +} +.btn-primary { + color: #ffffff; + background-color: #428bca; + border-color: #357ebd; +} +.btn-primary:hover, +.btn-primary:focus, +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + color: #ffffff; + background-color: #3071a9; + border-color: #285e8e; +} +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + background-image: none; +} +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #428bca; + border-color: #357ebd; +} +.btn-primary .badge { + color: #428bca; + background-color: #ffffff; +} +.btn-success { + color: #ffffff; + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + color: #ffffff; + background-color: #449d44; + border-color: #398439; +} +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + background-image: none; +} +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success .badge { + color: #5cb85c; + background-color: #ffffff; +} +.btn-info { + color: #ffffff; + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + color: #ffffff; + background-color: #31b0d5; + border-color: #269abc; +} +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + background-image: none; +} +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info .badge { + color: #5bc0de; + background-color: #ffffff; +} +.btn-warning { + color: #ffffff; + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + color: #ffffff; + background-color: #ec971f; + border-color: #d58512; +} +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + background-image: none; +} +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning .badge { + color: #f0ad4e; + background-color: #ffffff; +} +.btn-danger { + color: #ffffff; + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + color: #ffffff; + background-color: #c9302c; + border-color: #ac2925; +} +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + background-image: none; +} +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger .badge { + color: #d9534f; + background-color: #ffffff; +} +.btn-link { + color: #3c8dbc; + font-weight: normal; + cursor: pointer; + border-radius: 0; +} +.btn-link, +.btn-link:active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-link, +.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} +.btn-link:hover, +.btn-link:focus { + color: #72afd2; + text-decoration: underline; + background-color: transparent; +} +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #777777; + text-decoration: none; +} +.btn-lg, +.btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} +.btn-sm, +.btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-xs, +.btn-group-xs > .btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-block { + display: block; + width: 100%; +} +.btn-block + .btn-block { + margin-top: 5px; +} +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -moz-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + -ms-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} +.fade.in { + opacity: 1; +} +.collapse { + display: none; +} +.collapse.in { + display: block; +} +tr.collapse.in { + display: table-row; +} +tbody.collapse.in { + display: table-row-group; +} +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -moz-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + -ms-transition: height 0.35s ease; + transition: height 0.35s ease; +} +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px solid; + border-right: 4px solid transparent; + border-left: 4px solid transparent; +} +.dropdown { + position: relative; +} +.dropdown-toggle:focus { + outline: 0; +} +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + font-size: 14px; + text-align: left; + background-color: #ffffff; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + background-clip: padding-box; +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.42857143; + color: #333333; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + text-decoration: none; + color: #262626; + background-color: #f5f5f5; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #ffffff; + text-decoration: none; + outline: 0; + background-color: #428bca; +} +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #777777; +} +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + cursor: not-allowed; +} +.open > .dropdown-menu { + display: block; +} +.open > a { + outline: 0; +} +.dropdown-menu-right { + left: auto; + right: 0; +} +.dropdown-menu-left { + left: 0; + right: auto; +} +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.42857143; + color: #777777; + white-space: nowrap; +} +.dropdown-backdrop { + position: fixed; + left: 0; + right: 0; + bottom: 0; + top: 0; + z-index: 990; +} +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid; + content: ""; +} +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} +@media (min-width: 767px) { + .navbar-right .dropdown-menu { + left: auto; + right: 0; + } + .navbar-right .dropdown-menu-left { + left: 0; + right: auto; + } +} +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover, +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus, +.btn-group > .btn:active, +.btn-group-vertical > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn.active { + z-index: 2; +} +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus { + outline: 0; +} +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; +} +.btn-toolbar { + margin-left: -5px; +} +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left; +} +.btn-toolbar > .btn, +.btn-toolbar > .btn-group, +.btn-toolbar > .input-group { + margin-left: 5px; +} +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} +.btn-group > .btn:first-child { + margin-left: 0; +} +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.btn-group > .btn-group { + float: left; +} +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group > .btn-group:first-child > .btn:last-child, +.btn-group > .btn-group:first-child > .dropdown-toggle { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.btn-group > .btn-group:last-child > .btn:first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} +.btn-group > .btn + .dropdown-toggle { + padding-left: 8px; + padding-right: 8px; +} +.btn-group > .btn-lg + .dropdown-toggle { + padding-left: 12px; + padding-right: 12px; +} +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; +} +.btn .caret { + margin-left: 0; +} +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} +.dropup .btn-lg .caret { + border-width: 0 5px 5px; +} +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group, +.btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; +} +.btn-group-vertical > .btn-group > .btn { + float: none; +} +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-bottom-left-radius: 4px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate; +} +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + float: none; + display: table-cell; + width: 1%; +} +.btn-group-justified > .btn-group .btn { + width: 100%; +} +.btn-group-justified > .btn-group .dropdown-menu { + left: auto; +} +[data-toggle="buttons"] > .btn > input[type="radio"], +[data-toggle="buttons"] > .btn > input[type="checkbox"] { + position: absolute; + z-index: -1; + filter: alpha(opacity=0); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + filter: alpha(opacity=(0)); + opacity: 0; +} +.input-group { + position: relative; + display: table; + border-collapse: separate; +} +.input-group[class*="col-"] { + float: none; + padding-left: 0; + padding-right: 0; +} +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; +} +.input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} +select.input-group-lg > .form-control, +select.input-group-lg > .input-group-addon, +select.input-group-lg > .input-group-btn > .btn { + height: 46px; + line-height: 46px; +} +textarea.input-group-lg > .form-control, +textarea.input-group-lg > .input-group-addon, +textarea.input-group-lg > .input-group-btn > .btn, +select[multiple].input-group-lg > .form-control, +select[multiple].input-group-lg > .input-group-addon, +select[multiple].input-group-lg > .input-group-btn > .btn { + height: auto; +} +.input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-group-sm > .form-control, +select.input-group-sm > .input-group-addon, +select.input-group-sm > .input-group-btn > .btn { + height: 30px; + line-height: 30px; +} +textarea.input-group-sm > .form-control, +textarea.input-group-sm > .input-group-addon, +textarea.input-group-sm > .input-group-btn > .btn, +select[multiple].input-group-sm > .form-control, +select[multiple].input-group-sm > .input-group-addon, +select[multiple].input-group-sm > .input-group-btn > .btn { + height: auto; +} +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + color: #eaeaec; + text-align: center; + background-color: #eeeeee; + border: 1px solid #cccccc; + border-radius: 4px; +} +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} +.input-group-addon input[type="radio"], +.input-group-addon input[type="checkbox"] { + margin-top: 0; +} +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.input-group-addon:first-child { + border-right: 0; +} +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child), +.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.input-group-addon:last-child { + border-left: 0; +} +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap; +} +.input-group-btn > .btn { + position: relative; +} +.input-group-btn > .btn + .btn { + margin-left: -1px; +} +.input-group-btn > .btn:hover, +.input-group-btn > .btn:focus, +.input-group-btn > .btn:active { + z-index: 2; +} +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group { + margin-right: -1px; +} +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group { + margin-left: -1px; +} +.nav { + margin-bottom: 0; + padding-left: 0; + list-style: none; +} +.nav > li { + position: relative; + display: block; +} +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.nav > li.disabled > a { + color: #777777; +} +.nav > li.disabled > a:hover, +.nav > li.disabled > a:focus { + color: #777777; + text-decoration: none; + background-color: transparent; + cursor: not-allowed; +} +.nav .open > a, +.nav .open > a:hover, +.nav .open > a:focus { + background-color: #eeeeee; + border-color: #3c8dbc; +} +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.nav > li > a > img { + max-width: none; +} +.nav-tabs { + border-bottom: 1px solid #dddddd; +} +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.42857143; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} +.nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #dddddd; +} +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: #eaeaec; + background-color: #f9f9f9; + border: 1px solid #dddddd; + border-bottom-color: transparent; + cursor: default; +} +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} +.nav-tabs.nav-justified > li { + float: none; +} +.nav-tabs.nav-justified > li > a { + text-align: center; + margin-bottom: 5px; +} +.nav-tabs.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 767px) { + .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-tabs.nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs.nav-justified > .active > a, +.nav-tabs.nav-justified > .active > a:hover, +.nav-tabs.nav-justified > .active > a:focus { + border: 1px solid #dddddd; +} +@media (min-width: 767px) { + .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #dddddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs.nav-justified > .active > a, + .nav-tabs.nav-justified > .active > a:hover, + .nav-tabs.nav-justified > .active > a:focus { + border-bottom-color: #f9f9f9; + } +} +.nav-pills > li { + float: left; +} +.nav-pills > li > a { + border-radius: 4px; +} +.nav-pills > li + li { + margin-left: 2px; +} +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + color: #ffffff; + background-color: #428bca; +} +.nav-stacked > li { + float: none; +} +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} +.nav-justified { + width: 100%; +} +.nav-justified > li { + float: none; +} +.nav-justified > li > a { + text-align: center; + margin-bottom: 5px; +} +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 767px) { + .nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs-justified { + border-bottom: 0; +} +.nav-tabs-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #dddddd; +} +@media (min-width: 767px) { + .nav-tabs-justified > li > a { + border-bottom: 1px solid #dddddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs-justified > .active > a, + .nav-tabs-justified > .active > a:hover, + .nav-tabs-justified > .active > a:focus { + border-bottom-color: #f9f9f9; + } +} +.tab-content > .tab-pane { + display: none; +} +.tab-content > .active { + display: block; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; +} +@media (min-width: 767px) { + .navbar { + border-radius: 4px; + } +} +@media (min-width: 767px) { + .navbar-header { + float: left; + } +} +.navbar-collapse { + overflow-x: visible; + padding-right: 15px; + padding-left: 15px; + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch; +} +.navbar-collapse.in { + overflow-y: auto; +} +@media (min-width: 767px) { + .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, + .navbar-static-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + padding-left: 0; + padding-right: 0; + } +} +.navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 340px; +} +@media (max-width: 480px) and (orientation: landscape) { + .navbar-fixed-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + max-height: 200px; + } +} +.container > .navbar-header, +.container-fluid > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 767px) { + .container > .navbar-header, + .container-fluid > .navbar-header, + .container > .navbar-collapse, + .container-fluid > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px; +} +@media (min-width: 767px) { + .navbar-static-top { + border-radius: 0; + } +} +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + -o-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + transform: rotate(translate3d(0, 0, 0)); + -ms-transform: rotate(translate3d(0, 0, 0)); + /* IE 9 */ + -webkit-transform: rotate(translate3d(0, 0, 0)); + /* Safari and Chrome */ +} +@media (min-width: 767px) { + .navbar-fixed-top, + .navbar-fixed-bottom { + border-radius: 0; + } +} +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px; +} +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0; +} +.navbar-brand { + float: left; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; + height: 50px; +} +.navbar-brand:hover, +.navbar-brand:focus { + text-decoration: none; +} +@media (min-width: 767px) { + .navbar > .container .navbar-brand, + .navbar > .container-fluid .navbar-brand { + margin-left: -15px; + } +} +.navbar-toggle { + position: relative; + float: right; + margin-right: 15px; + padding: 9px 10px; + margin-top: 8px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} +.navbar-toggle:focus { + outline: 0; +} +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 767px) { + .navbar-toggle { + display: none; + } +} +.navbar-nav { + margin: 7.5px -15px; +} +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} +@media (max-width: 766px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, + .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} +@media (min-width: 767px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } + .navbar-nav.navbar-right:last-child { + margin-right: -15px; + } +} +@media (min-width: 767px) { + .navbar-left { + float: left !important; + float: left; + } + .navbar-right { + float: right !important; + float: right; + } +} +.navbar-form { + margin-left: -15px; + margin-right: -15px; + padding: 10px 15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + margin-top: 8px; + margin-bottom: 8px; +} +@media (min-width: 767px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle; + } + .navbar-form .input-group .input-group-addon, + .navbar-form .input-group .input-group-btn, + .navbar-form .input-group .form-control { + width: auto; + } + .navbar-form .input-group > .form-control { + width: 100%; + } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio, + .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio label, + .navbar-form .checkbox label { + padding-left: 0; + } + .navbar-form .radio input[type="radio"], + .navbar-form .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .navbar-form .has-feedback .form-control-feedback { + top: 0; + } +} +@media (max-width: 766px) { + .navbar-form .form-group { + margin-bottom: 5px; + } +} +@media (min-width: 767px) { + .navbar-form { + width: auto; + border: 0; + margin-left: 0; + margin-right: 0; + padding-top: 0; + padding-bottom: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-form.navbar-right:last-child { + margin-right: -15px; + } +} +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px; +} +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px; +} +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} +@media (min-width: 767px) { + .navbar-text { + float: left; + margin-left: 15px; + margin-right: 15px; + } + .navbar-text.navbar-right:last-child { + margin-right: 0; + } +} +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.navbar-default .navbar-brand { + color: #777777; +} +.navbar-default .navbar-brand:hover, +.navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.navbar-default .navbar-text { + color: #777777; +} +.navbar-default .navbar-nav > li > a { + color: #777777; +} +.navbar-default .navbar-nav > li > a:hover, +.navbar-default .navbar-nav > li > a:focus { + color: #333333; + background-color: transparent; +} +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #555555; + background-color: #e7e7e7; +} +.navbar-default .navbar-nav > .disabled > a, +.navbar-default .navbar-nav > .disabled > a:hover, +.navbar-default .navbar-nav > .disabled > a:focus { + color: #cccccc; + background-color: transparent; +} +.navbar-default .navbar-toggle { + border-color: #dddddd; +} +.navbar-default .navbar-toggle:hover, +.navbar-default .navbar-toggle:focus { + background-color: #dddddd; +} +.navbar-default .navbar-toggle .icon-bar { + background-color: #888888; +} +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .open > a:hover, +.navbar-default .navbar-nav > .open > a:focus { + background-color: #e7e7e7; + color: #555555; +} +@media (max-width: 766px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555555; + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #cccccc; + background-color: transparent; + } +} +.navbar-default .navbar-link { + color: #777777; +} +.navbar-default .navbar-link:hover { + color: #333333; +} +.navbar-default .btn-link { + color: #777777; +} +.navbar-default .btn-link:hover, +.navbar-default .btn-link:focus { + color: #333333; +} +.navbar-default .btn-link[disabled]:hover, +fieldset[disabled] .navbar-default .btn-link:hover, +.navbar-default .btn-link[disabled]:focus, +fieldset[disabled] .navbar-default .btn-link:focus { + color: #cccccc; +} +.navbar-inverse { + background-color: #222222; + border-color: #080808; +} +.navbar-inverse .navbar-brand { + color: #777777; +} +.navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-brand:focus { + color: #ffffff; + background-color: transparent; +} +.navbar-inverse .navbar-text { + color: #777777; +} +.navbar-inverse .navbar-nav > li > a { + color: #777777; +} +.navbar-inverse .navbar-nav > li > a:hover, +.navbar-inverse .navbar-nav > li > a:focus { + color: #ffffff; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .active > a, +.navbar-inverse .navbar-nav > .active > a:hover, +.navbar-inverse .navbar-nav > .active > a:focus { + color: #ffffff; + background-color: #080808; +} +.navbar-inverse .navbar-nav > .disabled > a, +.navbar-inverse .navbar-nav > .disabled > a:hover, +.navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444444; + background-color: transparent; +} +.navbar-inverse .navbar-toggle { + border-color: #333333; +} +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: #333333; +} +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #ffffff; +} +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .open > a:hover, +.navbar-inverse .navbar-nav > .open > a:focus { + background-color: #080808; + color: #ffffff; +} +@media (max-width: 766px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #777777; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #ffffff; + background-color: transparent; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #ffffff; + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444444; + background-color: transparent; + } +} +.navbar-inverse .navbar-link { + color: #777777; +} +.navbar-inverse .navbar-link:hover { + color: #ffffff; +} +.navbar-inverse .btn-link { + color: #777777; +} +.navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link:focus { + color: #ffffff; +} +.navbar-inverse .btn-link[disabled]:hover, +fieldset[disabled] .navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link[disabled]:focus, +fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444444; +} +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} +.breadcrumb > li { + display: inline-block; +} +.breadcrumb > li + li:before { + content: "/\00a0"; + padding: 0 5px; + color: #cccccc; +} +.breadcrumb > .active { + color: #777777; +} +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} +.pagination > li { + display: inline; +} +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + line-height: 1.42857143; + text-decoration: none; + color: #3c8dbc; + background-color: #ffffff; + border: 1px solid #dddddd; + margin-left: -1px; +} +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-bottom-left-radius: 4px; + border-top-left-radius: 4px; +} +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-bottom-right-radius: 4px; + border-top-right-radius: 4px; +} +.pagination > li > a:hover, +.pagination > li > span:hover, +.pagination > li > a:focus, +.pagination > li > span:focus { + color: #72afd2; + background-color: #eeeeee; + border-color: #dddddd; +} +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + z-index: 2; + color: #ffffff; + background-color: #428bca; + border-color: #428bca; + cursor: default; +} +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #777777; + background-color: #ffffff; + border-color: #dddddd; + cursor: not-allowed; +} +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; +} +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-bottom-left-radius: 6px; + border-top-left-radius: 6px; +} +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-bottom-right-radius: 6px; + border-top-right-radius: 6px; +} +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; +} +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; +} +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-bottom-right-radius: 3px; + border-top-right-radius: 3px; +} +.pager { + padding-left: 0; + margin: 20px 0; + list-style: none; + text-align: center; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 15px; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #777777; + background-color: #ffffff; + cursor: not-allowed; +} +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #ffffff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em; +} +a.label:hover, +a.label:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} +.label:empty { + display: none; +} +.btn .label { + position: relative; + top: -1px; +} +.label-default { + background-color: #777777; +} +.label-default[href]:hover, +.label-default[href]:focus { + background-color: #5e5e5e; +} +.label-primary { + background-color: #428bca; +} +.label-primary[href]:hover, +.label-primary[href]:focus { + background-color: #3071a9; +} +.label-success { + background-color: #5cb85c; +} +.label-success[href]:hover, +.label-success[href]:focus { + background-color: #449d44; +} +.label-info { + background-color: #5bc0de; +} +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} +.label-warning { + background-color: #f0ad4e; +} +.label-warning[href]:hover, +.label-warning[href]:focus { + background-color: #ec971f; +} +.label-danger { + background-color: #d9534f; +} +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; +} +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + color: #ffffff; + line-height: 1; + vertical-align: baseline; + white-space: nowrap; + text-align: center; + background-color: #777777; + border-radius: 10px; +} +.badge:empty { + display: none; +} +.btn .badge { + position: relative; + top: -1px; +} +.btn-xs .badge { + top: 0; + padding: 1px 5px; +} +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} +a.list-group-item.active > .badge, +.nav-pills > .active > a > .badge { + color: #3c8dbc; + background-color: #ffffff; +} +.nav-pills > li > a > .badge { + margin-left: 3px; +} +.jumbotron { + padding: 30px; + margin-bottom: 30px; + color: inherit; + background-color: #eeeeee; +} +.jumbotron h1, +.jumbotron .h1 { + color: inherit; +} +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200; +} +.jumbotron > hr { + border-top-color: #d5d5d5; +} +.container .jumbotron { + border-radius: 6px; +} +.jumbotron .container { + max-width: 100%; +} +@media screen and (min-width: 767px) { + .jumbotron { + padding-top: 48px; + padding-bottom: 48px; + } + .container .jumbotron { + padding-left: 60px; + padding-right: 60px; + } + .jumbotron h1, + .jumbotron .h1 { + font-size: 63px; + } +} +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.42857143; + background-color: #f9f9f9; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +.thumbnail > img, +.thumbnail a > img { + margin-left: auto; + margin-right: auto; +} +a.thumbnail:hover, +a.thumbnail:focus, +a.thumbnail.active { + border-color: #3c8dbc; +} +.thumbnail .caption { + padding: 9px; + color: #333333; +} +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; +} +.alert h4 { + margin-top: 0; + color: inherit; +} +.alert .alert-link { + font-weight: bold; +} +.alert > p, +.alert > ul { + margin-bottom: 0; +} +.alert > p + p { + margin-top: 5px; +} +.alert-dismissable, +.alert-dismissible { + padding-right: 35px; +} +.alert-dismissable .close, +.alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} +.alert-success { + background-color: #dff0d8; + border-color: #d6e9c6; + color: #3c763d; +} +.alert-success hr { + border-top-color: #c9e2b3; +} +.alert-success .alert-link { + color: #2b542c; +} +.alert-info { + background-color: #d9edf7; + border-color: #bce8f1; + color: #31708f; +} +.alert-info hr { + border-top-color: #a6e1ec; +} +.alert-info .alert-link { + color: #245269; +} +.alert-warning { + background-color: #fcf8e3; + border-color: #faebcc; + color: #8a6d3b; +} +.alert-warning hr { + border-top-color: #f7e1b5; +} +.alert-warning .alert-link { + color: #66512c; +} +.alert-danger { + background-color: #f2dede; + border-color: #ebccd1; + color: #a94442; +} +.alert-danger hr { + border-top-color: #e4b9c0; +} +.alert-danger .alert-link { + color: #843534; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.progress { + overflow: hidden; + height: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} +.progress-bar { + float: left; + width: 0%; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #ffffff; + text-align: center; + background-color: #428bca; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width 0.6s ease; + -moz-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + -ms-transition: width 0.6s ease; + transition: width 0.6s ease; +} +.progress-striped .progress-bar, +.progress-bar-striped { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px; +} +.progress.active .progress-bar, +.progress-bar.active { + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + -webkit-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} +.progress-bar[aria-valuenow="1"], +.progress-bar[aria-valuenow="2"] { + min-width: 30px; +} +.progress-bar[aria-valuenow="0"] { + color: #777777; + min-width: 30px; + background-color: transparent; + background-image: none; + box-shadow: none; +} +.progress-bar-success { + background-color: #5cb85c; +} +.progress-striped .progress-bar-success { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-striped .progress-bar-success { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-info { + background-color: #5bc0de; +} +.progress-striped .progress-bar-info { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-striped .progress-bar-info { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-warning { + background-color: #f0ad4e; +} +.progress-striped .progress-bar-warning { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-striped .progress-bar-warning { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-danger { + background-color: #d9534f; +} +.progress-striped .progress-bar-danger { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-striped .progress-bar-danger { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.media, +.media-body { + overflow: hidden; + zoom: 1; +} +.media, +.media .media { + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} +.media-object { + display: block; +} +.media-heading { + margin: 0 0 5px; +} +.media > .pull-left { + margin-right: 10px; +} +.media > .pull-right { + margin-left: 10px; +} +.media-list { + padding-left: 0; + list-style: none; +} +.list-group { + margin-bottom: 20px; + padding-left: 0; +} +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #ffffff; + border: 1px solid #dddddd; +} +.list-group-item:first-child { + border-top-right-radius: 4px; + border-top-left-radius: 4px; +} +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +.list-group-item > .badge { + float: right; +} +.list-group-item > .badge + .badge { + margin-right: 5px; +} +a.list-group-item { + color: #555555; +} +a.list-group-item .list-group-item-heading { + color: #333333; +} +a.list-group-item:hover, +a.list-group-item:focus { + text-decoration: none; + color: #555555; + background-color: #f5f5f5; +} +.list-group-item.disabled, +.list-group-item.disabled:hover, +.list-group-item.disabled:focus { + background-color: #eeeeee; + color: #777777; +} +.list-group-item.disabled .list-group-item-heading, +.list-group-item.disabled:hover .list-group-item-heading, +.list-group-item.disabled:focus .list-group-item-heading { + color: inherit; +} +.list-group-item.disabled .list-group-item-text, +.list-group-item.disabled:hover .list-group-item-text, +.list-group-item.disabled:focus .list-group-item-text { + color: #777777; +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + z-index: 2; + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} +.list-group-item.active .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading, +.list-group-item.active .list-group-item-heading > small, +.list-group-item.active:hover .list-group-item-heading > small, +.list-group-item.active:focus .list-group-item-heading > small, +.list-group-item.active .list-group-item-heading > .small, +.list-group-item.active:hover .list-group-item-heading > .small, +.list-group-item.active:focus .list-group-item-heading > .small { + color: inherit; +} +.list-group-item.active .list-group-item-text, +.list-group-item.active:hover .list-group-item-text, +.list-group-item.active:focus .list-group-item-text { + color: #e1edf7; +} +.list-group-item-success { + color: #3c763d; + background-color: #dff0d8; +} +a.list-group-item-success { + color: #3c763d; +} +a.list-group-item-success .list-group-item-heading { + color: inherit; +} +a.list-group-item-success:hover, +a.list-group-item-success:focus { + color: #3c763d; + background-color: #d0e9c6; +} +a.list-group-item-success.active, +a.list-group-item-success.active:hover, +a.list-group-item-success.active:focus { + color: #fff; + background-color: #3c763d; + border-color: #3c763d; +} +.list-group-item-info { + color: #31708f; + background-color: #d9edf7; +} +a.list-group-item-info { + color: #31708f; +} +a.list-group-item-info .list-group-item-heading { + color: inherit; +} +a.list-group-item-info:hover, +a.list-group-item-info:focus { + color: #31708f; + background-color: #c4e3f3; +} +a.list-group-item-info.active, +a.list-group-item-info.active:hover, +a.list-group-item-info.active:focus { + color: #fff; + background-color: #31708f; + border-color: #31708f; +} +.list-group-item-warning { + color: #8a6d3b; + background-color: #fcf8e3; +} +a.list-group-item-warning { + color: #8a6d3b; +} +a.list-group-item-warning .list-group-item-heading { + color: inherit; +} +a.list-group-item-warning:hover, +a.list-group-item-warning:focus { + color: #8a6d3b; + background-color: #faf2cc; +} +a.list-group-item-warning.active, +a.list-group-item-warning.active:hover, +a.list-group-item-warning.active:focus { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b; +} +.list-group-item-danger { + color: #a94442; + background-color: #f2dede; +} +a.list-group-item-danger { + color: #a94442; +} +a.list-group-item-danger .list-group-item-heading { + color: inherit; +} +a.list-group-item-danger:hover, +a.list-group-item-danger:focus { + color: #a94442; + background-color: #ebcccc; +} +a.list-group-item-danger.active, +a.list-group-item-danger.active:hover, +a.list-group-item-danger.active:focus { + color: #fff; + background-color: #a94442; + border-color: #a94442; +} +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} +.panel { + margin-bottom: 20px; + background-color: #ffffff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); +} +.panel-body { + padding: 15px; +} +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; +} +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit; +} +.panel-title > a { + color: inherit; +} +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #dddddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .list-group { + margin-bottom: 0; +} +.panel > .list-group .list-group-item { + border-width: 1px 0; + border-radius: 0; +} +.panel > .list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.panel > .list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; +} +.list-group + .panel-footer { + border-top-width: 0; +} +.panel > .table, +.panel > .table-responsive > .table, +.panel > .panel-collapse > .table { + margin-bottom: 0; +} +.panel > .table:first-child, +.panel > .table-responsive:first-child > .table:first-child { + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 3px; +} +.panel > .table:last-child, +.panel > .table-responsive:last-child > .table:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 3px; +} +.panel > .panel-body + .table, +.panel > .panel-body + .table-responsive { + border-top: 1px solid #dddddd; +} +.panel > .table > tbody:first-child > tr:first-child th, +.panel > .table > tbody:first-child > tr:first-child td { + border-top: 0; +} +.panel > .table-bordered, +.panel > .table-responsive > .table-bordered { + border: 0; +} +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; +} +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; +} +.panel > .table-bordered > thead > tr:first-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +.panel > .table-bordered > tbody > tr:first-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +.panel > .table-bordered > thead > tr:first-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +.panel > .table-bordered > tbody > tr:first-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0; +} +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0; +} +.panel > .table-responsive { + border: 0; + margin-bottom: 0; +} +.panel-group { + margin-bottom: 20px; +} +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px; +} +.panel-group .panel + .panel { + margin-top: 5px; +} +.panel-group .panel-heading { + border-bottom: 0; +} +.panel-group .panel-heading + .panel-collapse > .panel-body { + border-top: 1px solid #dddddd; +} +.panel-group .panel-footer { + border-top: 0; +} +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #dddddd; +} +.panel-default { + border-color: #dddddd; +} +.panel-default > .panel-heading { + color: #333333; + background-color: #f5f5f5; + border-color: #dddddd; +} +.panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #dddddd; +} +.panel-default > .panel-heading .badge { + color: #f5f5f5; + background-color: #333333; +} +.panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #dddddd; +} +.panel-primary { + border-color: #428bca; +} +.panel-primary > .panel-heading { + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} +.panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #428bca; +} +.panel-primary > .panel-heading .badge { + color: #428bca; + background-color: #ffffff; +} +.panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #428bca; +} +.panel-success { + border-color: #d6e9c6; +} +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; +} +.panel-success > .panel-heading .badge { + color: #dff0d8; + background-color: #3c763d; +} +.panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; +} +.panel-info { + border-color: #bce8f1; +} +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; +} +.panel-info > .panel-heading .badge { + color: #d9edf7; + background-color: #31708f; +} +.panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; +} +.panel-warning { + border-color: #faebcc; +} +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; +} +.panel-warning > .panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b; +} +.panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; +} +.panel-danger { + border-color: #ebccd1; +} +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; +} +.panel-danger > .panel-heading .badge { + color: #f2dede; + background-color: #a94442; +} +.panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; +} +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden; +} +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object { + position: absolute; + top: 0; + left: 0; + bottom: 0; + height: 100%; + width: 100%; + border: 0; +} +.embed-responsive.embed-responsive-16by9 { + padding-bottom: 56.25%; +} +.embed-responsive.embed-responsive-4by3 { + padding-bottom: 75%; +} +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} +.well-lg { + padding: 24px; + border-radius: 6px; +} +.well-sm { + padding: 9px; + border-radius: 3px; +} +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + filter: alpha(opacity=20); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; + filter: alpha(opacity=(20)); + opacity: 0.2; +} +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=(50)); + opacity: 0.5; +} +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} +.modal-open { + overflow: hidden; +} +.modal { + display: none; + overflow: hidden; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + -webkit-overflow-scrolling: touch; + outline: 0; +} +.modal.fade .modal-dialog { + -webkit-transform: translate3d(0, -25%, 0); + -moz-transform: translate3d(0, -25%, 0); + -ms-transform: translate3d(0, -25%, 0); + -o-transform: translate3d(0, -25%, 0); + transform: translate3d(0, -25%, 0); + transform: rotate(translate3d(0, -25%, 0)); + -ms-transform: rotate(translate3d(0, -25%, 0)); + /* IE 9 */ + -webkit-transform: rotate(translate3d(0, -25%, 0)); + /* Safari and Chrome */ + -webkit-transition: -webkit-transform 0.3s ease-out; + -moz-transition: -moz-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; +} +.modal.in .modal-dialog { + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + -o-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + transform: rotate(translate3d(0, 0, 0)); + -ms-transform: rotate(translate3d(0, 0, 0)); + /* IE 9 */ + -webkit-transform: rotate(translate3d(0, 0, 0)); + /* Safari and Chrome */ +} +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} +.modal-dialog { + position: relative; + width: auto; + margin: 10px; +} +.modal-content { + position: relative; + background-color: #ffffff; + border: 1px solid #999999; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + background-clip: padding-box; + outline: 0; +} +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000000; +} +.modal-backdrop.fade { + filter: alpha(opacity=0); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + filter: alpha(opacity=(0)); + opacity: 0; +} +.modal-backdrop.in { + filter: alpha(opacity=50); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=(50)); + opacity: 0.5; +} +.modal-header { + padding: 15px; + border-bottom: 1px solid #e5e5e5; + min-height: 16.42857143px; +} +.modal-header .close { + margin-top: -2px; +} +.modal-title { + margin: 0; + line-height: 1.42857143; +} +.modal-body { + position: relative; + padding: 15px; +} +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; +} +.modal-footer .btn + .btn { + margin-left: 5px; + margin-bottom: 0; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} +@media (min-width: 767px) { + .modal-dialog { + width: 600px; + margin: 30px auto; + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + } + .modal-sm { + width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg { + width: 900px; + } +} +.tooltip { + position: absolute; + z-index: 1070; + display: block; + visibility: visible; + font-size: 12px; + line-height: 1.4; + filter: alpha(opacity=0); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + filter: alpha(opacity=(0)); + opacity: 0; +} +.tooltip.in { + filter: alpha(opacity=90); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; + filter: alpha(opacity=(90)); + opacity: 0.9; +} +.tooltip.top { + margin-top: -3px; + padding: 5px 0; +} +.tooltip.right { + margin-left: 3px; + padding: 0 5px; +} +.tooltip.bottom { + margin-top: 3px; + padding: 5px 0; +} +.tooltip.left { + margin-left: -3px; + padding: 0 5px; +} +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + border-radius: 4px; +} +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.tooltip.top-left .tooltip-arrow { + bottom: 0; + left: 5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.tooltip.top-right .tooltip-arrow { + bottom: 0; + right: 5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000000; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000000; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.tooltip.bottom-left .tooltip-arrow { + top: 0; + left: 5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.tooltip.bottom-right .tooltip-arrow { + top: 0; + right: 5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + text-align: left; + background-color: #ffffff; + background-clip: padding-box; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + white-space: normal; +} +.popover.top { + margin-top: -10px; +} +.popover.right { + margin-left: 10px; +} +.popover.bottom { + margin-top: 10px; +} +.popover.left { + margin-left: -10px; +} +.popover-title { + margin: 0; + padding: 8px 14px; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} +.popover-content { + padding: 9px 14px; +} +.popover > .arrow, +.popover > .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover > .arrow { + border-width: 11px; +} +.popover > .arrow:after { + border-width: 10px; + content: ""; +} +.popover.top > .arrow { + left: 50%; + margin-left: -11px; + border-bottom-width: 0; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + bottom: -11px; +} +.popover.top > .arrow:after { + content: " "; + bottom: 1px; + margin-left: -10px; + border-bottom-width: 0; + border-top-color: #ffffff; +} +.popover.right > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-left-width: 0; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); +} +.popover.right > .arrow:after { + content: " "; + left: 1px; + bottom: -10px; + border-left-width: 0; + border-right-color: #ffffff; +} +.popover.bottom > .arrow { + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); + top: -11px; +} +.popover.bottom > .arrow:after { + content: " "; + top: 1px; + margin-left: -10px; + border-top-width: 0; + border-bottom-color: #ffffff; +} +.popover.left > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); +} +.popover.left > .arrow:after { + content: " "; + right: 1px; + border-right-width: 0; + border-left-color: #ffffff; + bottom: -10px; +} +.carousel { + position: relative; +} +.carousel-inner { + position: relative; + overflow: hidden; + width: 100%; +} +.carousel-inner > .item { + display: none; + position: relative; + -webkit-transition: 0.6s ease-in-out left; + -moz-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + -ms-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + line-height: 1; +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} +.carousel-control { + position: absolute; + top: 0; + left: 0; + bottom: 0; + width: 15%; + filter: alpha(opacity=50); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=(50)); + opacity: 0.5; + font-size: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); +} +.carousel-control.right { + left: auto; + right: 0; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); +} +.carousel-control:hover, +.carousel-control:focus { + outline: 0; + color: #ffffff; + text-decoration: none; + filter: alpha(opacity=90); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; + filter: alpha(opacity=(90)); + opacity: 0.9; +} +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; +} +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px; +} +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px; +} +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + margin-top: -10px; + font-family: serif; +} +.carousel-control .icon-prev:before { + content: '\2039'; +} +.carousel-control .icon-next:before { + content: '\203a'; +} +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + margin-left: -30%; + padding-left: 0; + list-style: none; + text-align: center; +} +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + border: 1px solid #ffffff; + border-radius: 10px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0); +} +.carousel-indicators .active { + margin: 0; + width: 12px; + height: 12px; + background-color: #ffffff; +} +.carousel-caption { + position: absolute; + left: 15%; + right: 15%; + bottom: 20px; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} +.carousel-caption .btn { + text-shadow: none; +} +@media screen and (min-width: 767px) { + .carousel-control .glyphicon-chevron-left, + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-prev, + .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + font-size: 30px; + } + .carousel-control .glyphicon-chevron-left, + .carousel-control .icon-prev { + margin-left: -15px; + } + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-next { + margin-right: -15px; + } + .carousel-caption { + left: 20%; + right: 20%; + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} +.clearfix:before, +.clearfix:after, +.dl-horizontal dd:before, +.dl-horizontal dd:after, +.container:before, +.container:after, +.container-fluid:before, +.container-fluid:after, +.row:before, +.row:after, +.form-horizontal .form-group:before, +.form-horizontal .form-group:after, +.btn-toolbar:before, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after, +.nav:before, +.nav:after, +.navbar:before, +.navbar:after, +.navbar-header:before, +.navbar-header:after, +.navbar-collapse:before, +.navbar-collapse:after, +.pager:before, +.pager:after, +.panel-body:before, +.panel-body:after, +.modal-footer:before, +.modal-footer:after, +ul.list:before, +ul.list:after, +ul.list li:before, +ul.list li:after, +#execution-list:before, +#execution-list:after, +#execution-list > div:before, +#execution-list > div:after { + content: " "; + display: table; +} +.clearfix:after, +.dl-horizontal dd:after, +.container:after, +.container-fluid:after, +.row:after, +.form-horizontal .form-group:after, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:after, +.nav:after, +.navbar:after, +.navbar-header:after, +.navbar-collapse:after, +.pager:after, +.panel-body:after, +.modal-footer:after, +ul.list:after, +ul.list li:after, +#execution-list:after, +#execution-list > div:after { + clear: both; +} +.clearfix:before, +.clearfix:after, +.dl-horizontal dd:before, +.dl-horizontal dd:after, +.container:before, +.container:after, +.container-fluid:before, +.container-fluid:after, +.row:before, +.row:after, +.form-horizontal .form-group:before, +.form-horizontal .form-group:after, +.btn-toolbar:before, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after, +.nav:before, +.nav:after, +.navbar:before, +.navbar:after, +.navbar-header:before, +.navbar-header:after, +.navbar-collapse:before, +.navbar-collapse:after, +.pager:before, +.pager:after, +.panel-body:before, +.panel-body:after, +.modal-footer:before, +.modal-footer:after, +ul.list:before, +ul.list:after, +ul.list li:before, +ul.list li:after, +#execution-list:before, +#execution-list:after, +#execution-list > div:before, +#execution-list > div:after { + display: table; + content: " "; +} +.clearfix:after, +.dl-horizontal dd:after, +.container:after, +.container-fluid:after, +.row:after, +.form-horizontal .form-group:after, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:after, +.nav:after, +.navbar:after, +.navbar-header:after, +.navbar-collapse:after, +.pager:after, +.panel-body:after, +.modal-footer:after, +ul.list:after, +ul.list li:after, +#execution-list:after, +#execution-list > div:after { + clear: both; +} +.center-block { + display: block; + margin-left: auto; + margin-right: auto; +} +.pull-right { + float: right !important; +} +.pull-left { + float: left !important; +} +.hide { + display: none !important; +} +.show { + display: block !important; +} +.invisible { + visibility: hidden; +} +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.hidden { + display: none !important; + visibility: hidden !important; +} +.affix { + position: fixed; + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + -o-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + transform: rotate(translate3d(0, 0, 0)); + -ms-transform: rotate(translate3d(0, 0, 0)); + /* IE 9 */ + -webkit-transform: rotate(translate3d(0, 0, 0)); + /* Safari and Chrome */ +} +@-ms-viewport { + width: device-width; +} +.visible-xs, +.visible-sm, +.visible-md, +.visible-lg { + display: none !important; +} +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; +} +@media (max-width: 766px) { + .visible-xs { + display: block !important; + } + table.visible-xs { + display: table; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} +@media (max-width: 766px) { + .visible-xs-block { + display: block !important; + } +} +@media (max-width: 766px) { + .visible-xs-inline { + display: inline !important; + } +} +@media (max-width: 766px) { + .visible-xs-inline-block { + display: inline-block !important; + } +} +@media (min-width: 767px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + table.visible-sm { + display: table; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 767px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } +} +@media (min-width: 767px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } +} +@media (min-width: 767px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + table.visible-md { + display: table; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; + } +} +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + table.visible-lg { + display: table; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; + } +} +@media (max-width: 766px) { + .hidden-xs { + display: none !important; + } +} +@media (min-width: 767px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } +} +.visible-print { + display: none !important; +} +@media print { + .visible-print { + display: block !important; + } + table.visible-print { + display: table; + } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } +} +.visible-print-block { + display: none !important; +} +@media print { + .visible-print-block { + display: block !important; + } +} +.visible-print-inline { + display: none !important; +} +@media print { + .visible-print-inline { + display: inline !important; + } +} +.visible-print-inline-block { + display: none !important; +} +@media print { + .visible-print-inline-block { + display: inline-block !important; + } +} +@media print { + .hidden-print { + display: none !important; + } +} +/*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.3.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal; +} +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + transform: translate(0, 0); +} +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.fa-2x { + font-size: 2em; +} +.fa-3x { + font-size: 3em; +} +.fa-4x { + font-size: 4em; +} +.fa-5x { + font-size: 5em; +} +.fa-fw { + width: 1.28571429em; + text-align: center; +} +.fa-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none; +} +.fa-ul > li { + position: relative; +} +.fa-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: 0.14285714em; + text-align: center; +} +.fa-li.fa-lg { + left: -1.85714286em; +} +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.fa.pull-left { + margin-right: .3em; +} +.fa.pull-right { + margin-left: .3em; +} +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +.fa-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} +.fa-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} +.fa-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} +.fa-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.fa-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); +} +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + filter: none; +} +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.fa-stack-1x, +.fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.fa-stack-1x { + line-height: inherit; +} +.fa-stack-2x { + font-size: 2em; +} +.fa-inverse { + color: #ffffff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: "\f000"; +} +.fa-music:before { + content: "\f001"; +} +.fa-search:before { + content: "\f002"; +} +.fa-envelope-o:before { + content: "\f003"; +} +.fa-heart:before { + content: "\f004"; +} +.fa-star:before { + content: "\f005"; +} +.fa-star-o:before { + content: "\f006"; +} +.fa-user:before { + content: "\f007"; +} +.fa-film:before { + content: "\f008"; +} +.fa-th-large:before { + content: "\f009"; +} +.fa-th:before { + content: "\f00a"; +} +.fa-th-list:before { + content: "\f00b"; +} +.fa-check:before { + content: "\f00c"; +} +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: "\f00d"; +} +.fa-search-plus:before { + content: "\f00e"; +} +.fa-search-minus:before { + content: "\f010"; +} +.fa-power-off:before { + content: "\f011"; +} +.fa-signal:before { + content: "\f012"; +} +.fa-gear:before, +.fa-cog:before { + content: "\f013"; +} +.fa-trash-o:before { + content: "\f014"; +} +.fa-home:before { + content: "\f015"; +} +.fa-file-o:before { + content: "\f016"; +} +.fa-clock-o:before { + content: "\f017"; +} +.fa-road:before { + content: "\f018"; +} +.fa-download:before { + content: "\f019"; +} +.fa-arrow-circle-o-down:before { + content: "\f01a"; +} +.fa-arrow-circle-o-up:before { + content: "\f01b"; +} +.fa-inbox:before { + content: "\f01c"; +} +.fa-play-circle-o:before { + content: "\f01d"; +} +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e"; +} +.fa-refresh:before { + content: "\f021"; +} +.fa-list-alt:before { + content: "\f022"; +} +.fa-lock:before { + content: "\f023"; +} +.fa-flag:before { + content: "\f024"; +} +.fa-headphones:before { + content: "\f025"; +} +.fa-volume-off:before { + content: "\f026"; +} +.fa-volume-down:before { + content: "\f027"; +} +.fa-volume-up:before { + content: "\f028"; +} +.fa-qrcode:before { + content: "\f029"; +} +.fa-barcode:before { + content: "\f02a"; +} +.fa-tag:before { + content: "\f02b"; +} +.fa-tags:before { + content: "\f02c"; +} +.fa-book:before { + content: "\f02d"; +} +.fa-bookmark:before { + content: "\f02e"; +} +.fa-print:before { + content: "\f02f"; +} +.fa-camera:before { + content: "\f030"; +} +.fa-font:before { + content: "\f031"; +} +.fa-bold:before { + content: "\f032"; +} +.fa-italic:before { + content: "\f033"; +} +.fa-text-height:before { + content: "\f034"; +} +.fa-text-width:before { + content: "\f035"; +} +.fa-align-left:before { + content: "\f036"; +} +.fa-align-center:before { + content: "\f037"; +} +.fa-align-right:before { + content: "\f038"; +} +.fa-align-justify:before { + content: "\f039"; +} +.fa-list:before { + content: "\f03a"; +} +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b"; +} +.fa-indent:before { + content: "\f03c"; +} +.fa-video-camera:before { + content: "\f03d"; +} +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: "\f03e"; +} +.fa-pencil:before { + content: "\f040"; +} +.fa-map-marker:before { + content: "\f041"; +} +.fa-adjust:before { + content: "\f042"; +} +.fa-tint:before { + content: "\f043"; +} +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044"; +} +.fa-share-square-o:before { + content: "\f045"; +} +.fa-check-square-o:before { + content: "\f046"; +} +.fa-arrows:before { + content: "\f047"; +} +.fa-step-backward:before { + content: "\f048"; +} +.fa-fast-backward:before { + content: "\f049"; +} +.fa-backward:before { + content: "\f04a"; +} +.fa-play:before { + content: "\f04b"; +} +.fa-pause:before { + content: "\f04c"; +} +.fa-stop:before { + content: "\f04d"; +} +.fa-forward:before { + content: "\f04e"; +} +.fa-fast-forward:before { + content: "\f050"; +} +.fa-step-forward:before { + content: "\f051"; +} +.fa-eject:before { + content: "\f052"; +} +.fa-chevron-left:before { + content: "\f053"; +} +.fa-chevron-right:before { + content: "\f054"; +} +.fa-plus-circle:before { + content: "\f055"; +} +.fa-minus-circle:before { + content: "\f056"; +} +.fa-times-circle:before { + content: "\f057"; +} +.fa-check-circle:before { + content: "\f058"; +} +.fa-question-circle:before { + content: "\f059"; +} +.fa-info-circle:before { + content: "\f05a"; +} +.fa-crosshairs:before { + content: "\f05b"; +} +.fa-times-circle-o:before { + content: "\f05c"; +} +.fa-check-circle-o:before { + content: "\f05d"; +} +.fa-ban:before { + content: "\f05e"; +} +.fa-arrow-left:before { + content: "\f060"; +} +.fa-arrow-right:before { + content: "\f061"; +} +.fa-arrow-up:before { + content: "\f062"; +} +.fa-arrow-down:before { + content: "\f063"; +} +.fa-mail-forward:before, +.fa-share:before { + content: "\f064"; +} +.fa-expand:before { + content: "\f065"; +} +.fa-compress:before { + content: "\f066"; +} +.fa-plus:before { + content: "\f067"; +} +.fa-minus:before { + content: "\f068"; +} +.fa-asterisk:before { + content: "\f069"; +} +.fa-exclamation-circle:before { + content: "\f06a"; +} +.fa-gift:before { + content: "\f06b"; +} +.fa-leaf:before { + content: "\f06c"; +} +.fa-fire:before { + content: "\f06d"; +} +.fa-eye:before { + content: "\f06e"; +} +.fa-eye-slash:before { + content: "\f070"; +} +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071"; +} +.fa-plane:before { + content: "\f072"; +} +.fa-calendar:before { + content: "\f073"; +} +.fa-random:before { + content: "\f074"; +} +.fa-comment:before { + content: "\f075"; +} +.fa-magnet:before { + content: "\f076"; +} +.fa-chevron-up:before { + content: "\f077"; +} +.fa-chevron-down:before { + content: "\f078"; +} +.fa-retweet:before { + content: "\f079"; +} +.fa-shopping-cart:before { + content: "\f07a"; +} +.fa-folder:before { + content: "\f07b"; +} +.fa-folder-open:before { + content: "\f07c"; +} +.fa-arrows-v:before { + content: "\f07d"; +} +.fa-arrows-h:before { + content: "\f07e"; +} +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: "\f080"; +} +.fa-twitter-square:before { + content: "\f081"; +} +.fa-facebook-square:before { + content: "\f082"; +} +.fa-camera-retro:before { + content: "\f083"; +} +.fa-key:before { + content: "\f084"; +} +.fa-gears:before, +.fa-cogs:before { + content: "\f085"; +} +.fa-comments:before { + content: "\f086"; +} +.fa-thumbs-o-up:before { + content: "\f087"; +} +.fa-thumbs-o-down:before { + content: "\f088"; +} +.fa-star-half:before { + content: "\f089"; +} +.fa-heart-o:before { + content: "\f08a"; +} +.fa-sign-out:before { + content: "\f08b"; +} +.fa-linkedin-square:before { + content: "\f08c"; +} +.fa-thumb-tack:before { + content: "\f08d"; +} +.fa-external-link:before { + content: "\f08e"; +} +.fa-sign-in:before { + content: "\f090"; +} +.fa-trophy:before { + content: "\f091"; +} +.fa-github-square:before { + content: "\f092"; +} +.fa-upload:before { + content: "\f093"; +} +.fa-lemon-o:before { + content: "\f094"; +} +.fa-phone:before { + content: "\f095"; +} +.fa-square-o:before { + content: "\f096"; +} +.fa-bookmark-o:before { + content: "\f097"; +} +.fa-phone-square:before { + content: "\f098"; +} +.fa-twitter:before { + content: "\f099"; +} +.fa-facebook-f:before, +.fa-facebook:before { + content: "\f09a"; +} +.fa-github:before { + content: "\f09b"; +} +.fa-unlock:before { + content: "\f09c"; +} +.fa-credit-card:before { + content: "\f09d"; +} +.fa-rss:before { + content: "\f09e"; +} +.fa-hdd-o:before { + content: "\f0a0"; +} +.fa-bullhorn:before { + content: "\f0a1"; +} +.fa-bell:before { + content: "\f0f3"; +} +.fa-certificate:before { + content: "\f0a3"; +} +.fa-hand-o-right:before { + content: "\f0a4"; +} +.fa-hand-o-left:before { + content: "\f0a5"; +} +.fa-hand-o-up:before { + content: "\f0a6"; +} +.fa-hand-o-down:before { + content: "\f0a7"; +} +.fa-arrow-circle-left:before { + content: "\f0a8"; +} +.fa-arrow-circle-right:before { + content: "\f0a9"; +} +.fa-arrow-circle-up:before { + content: "\f0aa"; +} +.fa-arrow-circle-down:before { + content: "\f0ab"; +} +.fa-globe:before { + content: "\f0ac"; +} +.fa-wrench:before { + content: "\f0ad"; +} +.fa-tasks:before { + content: "\f0ae"; +} +.fa-filter:before { + content: "\f0b0"; +} +.fa-briefcase:before { + content: "\f0b1"; +} +.fa-arrows-alt:before { + content: "\f0b2"; +} +.fa-group:before, +.fa-users:before { + content: "\f0c0"; +} +.fa-chain:before, +.fa-link:before { + content: "\f0c1"; +} +.fa-cloud:before { + content: "\f0c2"; +} +.fa-flask:before { + content: "\f0c3"; +} +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4"; +} +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5"; +} +.fa-paperclip:before { + content: "\f0c6"; +} +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7"; +} +.fa-square:before { + content: "\f0c8"; +} +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: "\f0c9"; +} +.fa-list-ul:before { + content: "\f0ca"; +} +.fa-list-ol:before { + content: "\f0cb"; +} +.fa-strikethrough:before { + content: "\f0cc"; +} +.fa-underline:before { + content: "\f0cd"; +} +.fa-table:before { + content: "\f0ce"; +} +.fa-magic:before { + content: "\f0d0"; +} +.fa-truck:before { + content: "\f0d1"; +} +.fa-pinterest:before { + content: "\f0d2"; +} +.fa-pinterest-square:before { + content: "\f0d3"; +} +.fa-google-plus-square:before { + content: "\f0d4"; +} +.fa-google-plus:before { + content: "\f0d5"; +} +.fa-money:before { + content: "\f0d6"; +} +.fa-caret-down:before { + content: "\f0d7"; +} +.fa-caret-up:before { + content: "\f0d8"; +} +.fa-caret-left:before { + content: "\f0d9"; +} +.fa-caret-right:before { + content: "\f0da"; +} +.fa-columns:before { + content: "\f0db"; +} +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc"; +} +.fa-sort-down:before, +.fa-sort-desc:before { + content: "\f0dd"; +} +.fa-sort-up:before, +.fa-sort-asc:before { + content: "\f0de"; +} +.fa-envelope:before { + content: "\f0e0"; +} +.fa-linkedin:before { + content: "\f0e1"; +} +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2"; +} +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3"; +} +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4"; +} +.fa-comment-o:before { + content: "\f0e5"; +} +.fa-comments-o:before { + content: "\f0e6"; +} +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7"; +} +.fa-sitemap:before { + content: "\f0e8"; +} +.fa-umbrella:before { + content: "\f0e9"; +} +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea"; +} +.fa-lightbulb-o:before { + content: "\f0eb"; +} +.fa-exchange:before { + content: "\f0ec"; +} +.fa-cloud-download:before { + content: "\f0ed"; +} +.fa-cloud-upload:before { + content: "\f0ee"; +} +.fa-user-md:before { + content: "\f0f0"; +} +.fa-stethoscope:before { + content: "\f0f1"; +} +.fa-suitcase:before { + content: "\f0f2"; +} +.fa-bell-o:before { + content: "\f0a2"; +} +.fa-coffee:before { + content: "\f0f4"; +} +.fa-cutlery:before { + content: "\f0f5"; +} +.fa-file-text-o:before { + content: "\f0f6"; +} +.fa-building-o:before { + content: "\f0f7"; +} +.fa-hospital-o:before { + content: "\f0f8"; +} +.fa-ambulance:before { + content: "\f0f9"; +} +.fa-medkit:before { + content: "\f0fa"; +} +.fa-fighter-jet:before { + content: "\f0fb"; +} +.fa-beer:before { + content: "\f0fc"; +} +.fa-h-square:before { + content: "\f0fd"; +} +.fa-plus-square:before { + content: "\f0fe"; +} +.fa-angle-double-left:before { + content: "\f100"; +} +.fa-angle-double-right:before { + content: "\f101"; +} +.fa-angle-double-up:before { + content: "\f102"; +} +.fa-angle-double-down:before { + content: "\f103"; +} +.fa-angle-left:before { + content: "\f104"; +} +.fa-angle-right:before { + content: "\f105"; +} +.fa-angle-up:before { + content: "\f106"; +} +.fa-angle-down:before { + content: "\f107"; +} +.fa-desktop:before { + content: "\f108"; +} +.fa-laptop:before { + content: "\f109"; +} +.fa-tablet:before { + content: "\f10a"; +} +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b"; +} +.fa-circle-o:before { + content: "\f10c"; +} +.fa-quote-left:before { + content: "\f10d"; +} +.fa-quote-right:before { + content: "\f10e"; +} +.fa-spinner:before { + content: "\f110"; +} +.fa-circle:before { + content: "\f111"; +} +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112"; +} +.fa-github-alt:before { + content: "\f113"; +} +.fa-folder-o:before { + content: "\f114"; +} +.fa-folder-open-o:before { + content: "\f115"; +} +.fa-smile-o:before { + content: "\f118"; +} +.fa-frown-o:before { + content: "\f119"; +} +.fa-meh-o:before { + content: "\f11a"; +} +.fa-gamepad:before { + content: "\f11b"; +} +.fa-keyboard-o:before { + content: "\f11c"; +} +.fa-flag-o:before { + content: "\f11d"; +} +.fa-flag-checkered:before { + content: "\f11e"; +} +.fa-terminal:before { + content: "\f120"; +} +.fa-code:before { + content: "\f121"; +} +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122"; +} +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123"; +} +.fa-location-arrow:before { + content: "\f124"; +} +.fa-crop:before { + content: "\f125"; +} +.fa-code-fork:before { + content: "\f126"; +} +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127"; +} +.fa-question:before { + content: "\f128"; +} +.fa-info:before { + content: "\f129"; +} +.fa-exclamation:before { + content: "\f12a"; +} +.fa-superscript:before { + content: "\f12b"; +} +.fa-subscript:before { + content: "\f12c"; +} +.fa-eraser:before { + content: "\f12d"; +} +.fa-puzzle-piece:before { + content: "\f12e"; +} +.fa-microphone:before { + content: "\f130"; +} +.fa-microphone-slash:before { + content: "\f131"; +} +.fa-shield:before { + content: "\f132"; +} +.fa-calendar-o:before { + content: "\f133"; +} +.fa-fire-extinguisher:before { + content: "\f134"; +} +.fa-rocket:before { + content: "\f135"; +} +.fa-maxcdn:before { + content: "\f136"; +} +.fa-chevron-circle-left:before { + content: "\f137"; +} +.fa-chevron-circle-right:before { + content: "\f138"; +} +.fa-chevron-circle-up:before { + content: "\f139"; +} +.fa-chevron-circle-down:before { + content: "\f13a"; +} +.fa-html5:before { + content: "\f13b"; +} +.fa-css3:before { + content: "\f13c"; +} +.fa-anchor:before { + content: "\f13d"; +} +.fa-unlock-alt:before { + content: "\f13e"; +} +.fa-bullseye:before { + content: "\f140"; +} +.fa-ellipsis-h:before { + content: "\f141"; +} +.fa-ellipsis-v:before { + content: "\f142"; +} +.fa-rss-square:before { + content: "\f143"; +} +.fa-play-circle:before { + content: "\f144"; +} +.fa-ticket:before { + content: "\f145"; +} +.fa-minus-square:before { + content: "\f146"; +} +.fa-minus-square-o:before { + content: "\f147"; +} +.fa-level-up:before { + content: "\f148"; +} +.fa-level-down:before { + content: "\f149"; +} +.fa-check-square:before { + content: "\f14a"; +} +.fa-pencil-square:before { + content: "\f14b"; +} +.fa-external-link-square:before { + content: "\f14c"; +} +.fa-share-square:before { + content: "\f14d"; +} +.fa-compass:before { + content: "\f14e"; +} +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150"; +} +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151"; +} +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152"; +} +.fa-euro:before, +.fa-eur:before { + content: "\f153"; +} +.fa-gbp:before { + content: "\f154"; +} +.fa-dollar:before, +.fa-usd:before { + content: "\f155"; +} +.fa-rupee:before, +.fa-inr:before { + content: "\f156"; +} +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157"; +} +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158"; +} +.fa-won:before, +.fa-krw:before { + content: "\f159"; +} +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a"; +} +.fa-file:before { + content: "\f15b"; +} +.fa-file-text:before { + content: "\f15c"; +} +.fa-sort-alpha-asc:before { + content: "\f15d"; +} +.fa-sort-alpha-desc:before { + content: "\f15e"; +} +.fa-sort-amount-asc:before { + content: "\f160"; +} +.fa-sort-amount-desc:before { + content: "\f161"; +} +.fa-sort-numeric-asc:before { + content: "\f162"; +} +.fa-sort-numeric-desc:before { + content: "\f163"; +} +.fa-thumbs-up:before { + content: "\f164"; +} +.fa-thumbs-down:before { + content: "\f165"; +} +.fa-youtube-square:before { + content: "\f166"; +} +.fa-youtube:before { + content: "\f167"; +} +.fa-xing:before { + content: "\f168"; +} +.fa-xing-square:before { + content: "\f169"; +} +.fa-youtube-play:before { + content: "\f16a"; +} +.fa-dropbox:before { + content: "\f16b"; +} +.fa-stack-overflow:before { + content: "\f16c"; +} +.fa-instagram:before { + content: "\f16d"; +} +.fa-flickr:before { + content: "\f16e"; +} +.fa-adn:before { + content: "\f170"; +} +.fa-bitbucket:before { + content: "\f171"; +} +.fa-bitbucket-square:before { + content: "\f172"; +} +.fa-tumblr:before { + content: "\f173"; +} +.fa-tumblr-square:before { + content: "\f174"; +} +.fa-long-arrow-down:before { + content: "\f175"; +} +.fa-long-arrow-up:before { + content: "\f176"; +} +.fa-long-arrow-left:before { + content: "\f177"; +} +.fa-long-arrow-right:before { + content: "\f178"; +} +.fa-apple:before { + content: "\f179"; +} +.fa-windows:before { + content: "\f17a"; +} +.fa-android:before { + content: "\f17b"; +} +.fa-linux:before { + content: "\f17c"; +} +.fa-dribbble:before { + content: "\f17d"; +} +.fa-skype:before { + content: "\f17e"; +} +.fa-foursquare:before { + content: "\f180"; +} +.fa-trello:before { + content: "\f181"; +} +.fa-female:before { + content: "\f182"; +} +.fa-male:before { + content: "\f183"; +} +.fa-gittip:before, +.fa-gratipay:before { + content: "\f184"; +} +.fa-sun-o:before { + content: "\f185"; +} +.fa-moon-o:before { + content: "\f186"; +} +.fa-archive:before { + content: "\f187"; +} +.fa-bug:before { + content: "\f188"; +} +.fa-vk:before { + content: "\f189"; +} +.fa-weibo:before { + content: "\f18a"; +} +.fa-renren:before { + content: "\f18b"; +} +.fa-pagelines:before { + content: "\f18c"; +} +.fa-stack-exchange:before { + content: "\f18d"; +} +.fa-arrow-circle-o-right:before { + content: "\f18e"; +} +.fa-arrow-circle-o-left:before { + content: "\f190"; +} +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191"; +} +.fa-dot-circle-o:before { + content: "\f192"; +} +.fa-wheelchair:before { + content: "\f193"; +} +.fa-vimeo-square:before { + content: "\f194"; +} +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195"; +} +.fa-plus-square-o:before { + content: "\f196"; +} +.fa-space-shuttle:before { + content: "\f197"; +} +.fa-slack:before { + content: "\f198"; +} +.fa-envelope-square:before { + content: "\f199"; +} +.fa-wordpress:before { + content: "\f19a"; +} +.fa-openid:before { + content: "\f19b"; +} +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: "\f19c"; +} +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: "\f19d"; +} +.fa-yahoo:before { + content: "\f19e"; +} +.fa-google:before { + content: "\f1a0"; +} +.fa-reddit:before { + content: "\f1a1"; +} +.fa-reddit-square:before { + content: "\f1a2"; +} +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} +.fa-stumbleupon:before { + content: "\f1a4"; +} +.fa-delicious:before { + content: "\f1a5"; +} +.fa-digg:before { + content: "\f1a6"; +} +.fa-pied-piper:before { + content: "\f1a7"; +} +.fa-pied-piper-alt:before { + content: "\f1a8"; +} +.fa-drupal:before { + content: "\f1a9"; +} +.fa-joomla:before { + content: "\f1aa"; +} +.fa-language:before { + content: "\f1ab"; +} +.fa-fax:before { + content: "\f1ac"; +} +.fa-building:before { + content: "\f1ad"; +} +.fa-child:before { + content: "\f1ae"; +} +.fa-paw:before { + content: "\f1b0"; +} +.fa-spoon:before { + content: "\f1b1"; +} +.fa-cube:before { + content: "\f1b2"; +} +.fa-cubes:before { + content: "\f1b3"; +} +.fa-behance:before { + content: "\f1b4"; +} +.fa-behance-square:before { + content: "\f1b5"; +} +.fa-steam:before { + content: "\f1b6"; +} +.fa-steam-square:before { + content: "\f1b7"; +} +.fa-recycle:before { + content: "\f1b8"; +} +.fa-automobile:before, +.fa-car:before { + content: "\f1b9"; +} +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba"; +} +.fa-tree:before { + content: "\f1bb"; +} +.fa-spotify:before { + content: "\f1bc"; +} +.fa-deviantart:before { + content: "\f1bd"; +} +.fa-soundcloud:before { + content: "\f1be"; +} +.fa-database:before { + content: "\f1c0"; +} +.fa-file-pdf-o:before { + content: "\f1c1"; +} +.fa-file-word-o:before { + content: "\f1c2"; +} +.fa-file-excel-o:before { + content: "\f1c3"; +} +.fa-file-powerpoint-o:before { + content: "\f1c4"; +} +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: "\f1c5"; +} +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: "\f1c6"; +} +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: "\f1c7"; +} +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8"; +} +.fa-file-code-o:before { + content: "\f1c9"; +} +.fa-vine:before { + content: "\f1ca"; +} +.fa-codepen:before { + content: "\f1cb"; +} +.fa-jsfiddle:before { + content: "\f1cc"; +} +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: "\f1cd"; +} +.fa-circle-o-notch:before { + content: "\f1ce"; +} +.fa-ra:before, +.fa-rebel:before { + content: "\f1d0"; +} +.fa-ge:before, +.fa-empire:before { + content: "\f1d1"; +} +.fa-git-square:before { + content: "\f1d2"; +} +.fa-git:before { + content: "\f1d3"; +} +.fa-hacker-news:before { + content: "\f1d4"; +} +.fa-tencent-weibo:before { + content: "\f1d5"; +} +.fa-qq:before { + content: "\f1d6"; +} +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7"; +} +.fa-send:before, +.fa-paper-plane:before { + content: "\f1d8"; +} +.fa-send-o:before, +.fa-paper-plane-o:before { + content: "\f1d9"; +} +.fa-history:before { + content: "\f1da"; +} +.fa-genderless:before, +.fa-circle-thin:before { + content: "\f1db"; +} +.fa-header:before { + content: "\f1dc"; +} +.fa-paragraph:before { + content: "\f1dd"; +} +.fa-sliders:before { + content: "\f1de"; +} +.fa-share-alt:before { + content: "\f1e0"; +} +.fa-share-alt-square:before { + content: "\f1e1"; +} +.fa-bomb:before { + content: "\f1e2"; +} +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: "\f1e3"; +} +.fa-tty:before { + content: "\f1e4"; +} +.fa-binoculars:before { + content: "\f1e5"; +} +.fa-plug:before { + content: "\f1e6"; +} +.fa-slideshare:before { + content: "\f1e7"; +} +.fa-twitch:before { + content: "\f1e8"; +} +.fa-yelp:before { + content: "\f1e9"; +} +.fa-newspaper-o:before { + content: "\f1ea"; +} +.fa-wifi:before { + content: "\f1eb"; +} +.fa-calculator:before { + content: "\f1ec"; +} +.fa-paypal:before { + content: "\f1ed"; +} +.fa-google-wallet:before { + content: "\f1ee"; +} +.fa-cc-visa:before { + content: "\f1f0"; +} +.fa-cc-mastercard:before { + content: "\f1f1"; +} +.fa-cc-discover:before { + content: "\f1f2"; +} +.fa-cc-amex:before { + content: "\f1f3"; +} +.fa-cc-paypal:before { + content: "\f1f4"; +} +.fa-cc-stripe:before { + content: "\f1f5"; +} +.fa-bell-slash:before { + content: "\f1f6"; +} +.fa-bell-slash-o:before { + content: "\f1f7"; +} +.fa-trash:before { + content: "\f1f8"; +} +.fa-copyright:before { + content: "\f1f9"; +} +.fa-at:before { + content: "\f1fa"; +} +.fa-eyedropper:before { + content: "\f1fb"; +} +.fa-paint-brush:before { + content: "\f1fc"; +} +.fa-birthday-cake:before { + content: "\f1fd"; +} +.fa-area-chart:before { + content: "\f1fe"; +} +.fa-pie-chart:before { + content: "\f200"; +} +.fa-line-chart:before { + content: "\f201"; +} +.fa-lastfm:before { + content: "\f202"; +} +.fa-lastfm-square:before { + content: "\f203"; +} +.fa-toggle-off:before { + content: "\f204"; +} +.fa-toggle-on:before { + content: "\f205"; +} +.fa-bicycle:before { + content: "\f206"; +} +.fa-bus:before { + content: "\f207"; +} +.fa-ioxhost:before { + content: "\f208"; +} +.fa-angellist:before { + content: "\f209"; +} +.fa-cc:before { + content: "\f20a"; +} +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: "\f20b"; +} +.fa-meanpath:before { + content: "\f20c"; +} +.fa-buysellads:before { + content: "\f20d"; +} +.fa-connectdevelop:before { + content: "\f20e"; +} +.fa-dashcube:before { + content: "\f210"; +} +.fa-forumbee:before { + content: "\f211"; +} +.fa-leanpub:before { + content: "\f212"; +} +.fa-sellsy:before { + content: "\f213"; +} +.fa-shirtsinbulk:before { + content: "\f214"; +} +.fa-simplybuilt:before { + content: "\f215"; +} +.fa-skyatlas:before { + content: "\f216"; +} +.fa-cart-plus:before { + content: "\f217"; +} +.fa-cart-arrow-down:before { + content: "\f218"; +} +.fa-diamond:before { + content: "\f219"; +} +.fa-ship:before { + content: "\f21a"; +} +.fa-user-secret:before { + content: "\f21b"; +} +.fa-motorcycle:before { + content: "\f21c"; +} +.fa-street-view:before { + content: "\f21d"; +} +.fa-heartbeat:before { + content: "\f21e"; +} +.fa-venus:before { + content: "\f221"; +} +.fa-mars:before { + content: "\f222"; +} +.fa-mercury:before { + content: "\f223"; +} +.fa-transgender:before { + content: "\f224"; +} +.fa-transgender-alt:before { + content: "\f225"; +} +.fa-venus-double:before { + content: "\f226"; +} +.fa-mars-double:before { + content: "\f227"; +} +.fa-venus-mars:before { + content: "\f228"; +} +.fa-mars-stroke:before { + content: "\f229"; +} +.fa-mars-stroke-v:before { + content: "\f22a"; +} +.fa-mars-stroke-h:before { + content: "\f22b"; +} +.fa-neuter:before { + content: "\f22c"; +} +.fa-facebook-official:before { + content: "\f230"; +} +.fa-pinterest-p:before { + content: "\f231"; +} +.fa-whatsapp:before { + content: "\f232"; +} +.fa-server:before { + content: "\f233"; +} +.fa-user-plus:before { + content: "\f234"; +} +.fa-user-times:before { + content: "\f235"; +} +.fa-hotel:before, +.fa-bed:before { + content: "\f236"; +} +.fa-viacoin:before { + content: "\f237"; +} +.fa-train:before { + content: "\f238"; +} +.fa-subway:before { + content: "\f239"; +} +.fa-medium:before { + content: "\f23a"; +} +@charset "UTF-8"; +/*! + Ionicons, v2.0.0 + Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ + https://twitter.com/benjsperry https://twitter.com/ionicframework + MIT License: https://github.com/driftyco/ionicons + + Android-style icons originally built by Google’s + Material Design Icons: https://github.com/google/material-design-icons + used under CC BY http://creativecommons.org/licenses/by/4.0/ + Modified icons to fit ionicon’s grid from original. +*/ +@font-face { + font-family: "Ionicons"; + src: url("../fonts/ionicons.eot?v=2.0.0"); + src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/ionicons.woff?v=2.0.0") format("woff"), url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg"); + font-weight: normal; + font-style: normal; +} +.ion, +.ionicons, +.ion-alert:before, +.ion-alert-circled:before, +.ion-android-add:before, +.ion-android-add-circle:before, +.ion-android-alarm-clock:before, +.ion-android-alert:before, +.ion-android-apps:before, +.ion-android-archive:before, +.ion-android-arrow-back:before, +.ion-android-arrow-down:before, +.ion-android-arrow-dropdown:before, +.ion-android-arrow-dropdown-circle:before, +.ion-android-arrow-dropleft:before, +.ion-android-arrow-dropleft-circle:before, +.ion-android-arrow-dropright:before, +.ion-android-arrow-dropright-circle:before, +.ion-android-arrow-dropup:before, +.ion-android-arrow-dropup-circle:before, +.ion-android-arrow-forward:before, +.ion-android-arrow-up:before, +.ion-android-attach:before, +.ion-android-bar:before, +.ion-android-bicycle:before, +.ion-android-boat:before, +.ion-android-bookmark:before, +.ion-android-bulb:before, +.ion-android-bus:before, +.ion-android-calendar:before, +.ion-android-call:before, +.ion-android-camera:before, +.ion-android-cancel:before, +.ion-android-car:before, +.ion-android-cart:before, +.ion-android-chat:before, +.ion-android-checkbox:before, +.ion-android-checkbox-blank:before, +.ion-android-checkbox-outline:before, +.ion-android-checkbox-outline-blank:before, +.ion-android-checkmark-circle:before, +.ion-android-clipboard:before, +.ion-android-close:before, +.ion-android-cloud:before, +.ion-android-cloud-circle:before, +.ion-android-cloud-done:before, +.ion-android-cloud-outline:before, +.ion-android-color-palette:before, +.ion-android-compass:before, +.ion-android-contact:before, +.ion-android-contacts:before, +.ion-android-contract:before, +.ion-android-create:before, +.ion-android-delete:before, +.ion-android-desktop:before, +.ion-android-document:before, +.ion-android-done:before, +.ion-android-done-all:before, +.ion-android-download:before, +.ion-android-drafts:before, +.ion-android-exit:before, +.ion-android-expand:before, +.ion-android-favorite:before, +.ion-android-favorite-outline:before, +.ion-android-film:before, +.ion-android-folder:before, +.ion-android-folder-open:before, +.ion-android-funnel:before, +.ion-android-globe:before, +.ion-android-hand:before, +.ion-android-hangout:before, +.ion-android-happy:before, +.ion-android-home:before, +.ion-android-image:before, +.ion-android-laptop:before, +.ion-android-list:before, +.ion-android-locate:before, +.ion-android-lock:before, +.ion-android-mail:before, +.ion-android-map:before, +.ion-android-menu:before, +.ion-android-microphone:before, +.ion-android-microphone-off:before, +.ion-android-more-horizontal:before, +.ion-android-more-vertical:before, +.ion-android-navigate:before, +.ion-android-notifications:before, +.ion-android-notifications-none:before, +.ion-android-notifications-off:before, +.ion-android-open:before, +.ion-android-options:before, +.ion-android-people:before, +.ion-android-person:before, +.ion-android-person-add:before, +.ion-android-phone-landscape:before, +.ion-android-phone-portrait:before, +.ion-android-pin:before, +.ion-android-plane:before, +.ion-android-playstore:before, +.ion-android-print:before, +.ion-android-radio-button-off:before, +.ion-android-radio-button-on:before, +.ion-android-refresh:before, +.ion-android-remove:before, +.ion-android-remove-circle:before, +.ion-android-restaurant:before, +.ion-android-sad:before, +.ion-android-search:before, +.ion-android-send:before, +.ion-android-settings:before, +.ion-android-share:before, +.ion-android-share-alt:before, +.ion-android-star:before, +.ion-android-star-half:before, +.ion-android-star-outline:before, +.ion-android-stopwatch:before, +.ion-android-subway:before, +.ion-android-sunny:before, +.ion-android-sync:before, +.ion-android-textsms:before, +.ion-android-time:before, +.ion-android-train:before, +.ion-android-unlock:before, +.ion-android-upload:before, +.ion-android-volume-down:before, +.ion-android-volume-mute:before, +.ion-android-volume-off:before, +.ion-android-volume-up:before, +.ion-android-walk:before, +.ion-android-warning:before, +.ion-android-watch:before, +.ion-android-wifi:before, +.ion-aperture:before, +.ion-archive:before, +.ion-arrow-down-a:before, +.ion-arrow-down-b:before, +.ion-arrow-down-c:before, +.ion-arrow-expand:before, +.ion-arrow-graph-down-left:before, +.ion-arrow-graph-down-right:before, +.ion-arrow-graph-up-left:before, +.ion-arrow-graph-up-right:before, +.ion-arrow-left-a:before, +.ion-arrow-left-b:before, +.ion-arrow-left-c:before, +.ion-arrow-move:before, +.ion-arrow-resize:before, +.ion-arrow-return-left:before, +.ion-arrow-return-right:before, +.ion-arrow-right-a:before, +.ion-arrow-right-b:before, +.ion-arrow-right-c:before, +.ion-arrow-shrink:before, +.ion-arrow-swap:before, +.ion-arrow-up-a:before, +.ion-arrow-up-b:before, +.ion-arrow-up-c:before, +.ion-asterisk:before, +.ion-at:before, +.ion-backspace:before, +.ion-backspace-outline:before, +.ion-bag:before, +.ion-battery-charging:before, +.ion-battery-empty:before, +.ion-battery-full:before, +.ion-battery-half:before, +.ion-battery-low:before, +.ion-beaker:before, +.ion-beer:before, +.ion-bluetooth:before, +.ion-bonfire:before, +.ion-bookmark:before, +.ion-bowtie:before, +.ion-briefcase:before, +.ion-bug:before, +.ion-calculator:before, +.ion-calendar:before, +.ion-camera:before, +.ion-card:before, +.ion-cash:before, +.ion-chatbox:before, +.ion-chatbox-working:before, +.ion-chatboxes:before, +.ion-chatbubble:before, +.ion-chatbubble-working:before, +.ion-chatbubbles:before, +.ion-checkmark:before, +.ion-checkmark-circled:before, +.ion-checkmark-round:before, +.ion-chevron-down:before, +.ion-chevron-left:before, +.ion-chevron-right:before, +.ion-chevron-up:before, +.ion-clipboard:before, +.ion-clock:before, +.ion-close:before, +.ion-close-circled:before, +.ion-close-round:before, +.ion-closed-captioning:before, +.ion-cloud:before, +.ion-code:before, +.ion-code-download:before, +.ion-code-working:before, +.ion-coffee:before, +.ion-compass:before, +.ion-compose:before, +.ion-connection-bars:before, +.ion-contrast:before, +.ion-crop:before, +.ion-cube:before, +.ion-disc:before, +.ion-document:before, +.ion-document-text:before, +.ion-drag:before, +.ion-earth:before, +.ion-easel:before, +.ion-edit:before, +.ion-egg:before, +.ion-eject:before, +.ion-email:before, +.ion-email-unread:before, +.ion-erlenmeyer-flask:before, +.ion-erlenmeyer-flask-bubbles:before, +.ion-eye:before, +.ion-eye-disabled:before, +.ion-female:before, +.ion-filing:before, +.ion-film-marker:before, +.ion-fireball:before, +.ion-flag:before, +.ion-flame:before, +.ion-flash:before, +.ion-flash-off:before, +.ion-folder:before, +.ion-fork:before, +.ion-fork-repo:before, +.ion-forward:before, +.ion-funnel:before, +.ion-gear-a:before, +.ion-gear-b:before, +.ion-grid:before, +.ion-hammer:before, +.ion-happy:before, +.ion-happy-outline:before, +.ion-headphone:before, +.ion-heart:before, +.ion-heart-broken:before, +.ion-help:before, +.ion-help-buoy:before, +.ion-help-circled:before, +.ion-home:before, +.ion-icecream:before, +.ion-image:before, +.ion-images:before, +.ion-information:before, +.ion-information-circled:before, +.ion-ionic:before, +.ion-ios-alarm:before, +.ion-ios-alarm-outline:before, +.ion-ios-albums:before, +.ion-ios-albums-outline:before, +.ion-ios-americanfootball:before, +.ion-ios-americanfootball-outline:before, +.ion-ios-analytics:before, +.ion-ios-analytics-outline:before, +.ion-ios-arrow-back:before, +.ion-ios-arrow-down:before, +.ion-ios-arrow-forward:before, +.ion-ios-arrow-left:before, +.ion-ios-arrow-right:before, +.ion-ios-arrow-thin-down:before, +.ion-ios-arrow-thin-left:before, +.ion-ios-arrow-thin-right:before, +.ion-ios-arrow-thin-up:before, +.ion-ios-arrow-up:before, +.ion-ios-at:before, +.ion-ios-at-outline:before, +.ion-ios-barcode:before, +.ion-ios-barcode-outline:before, +.ion-ios-baseball:before, +.ion-ios-baseball-outline:before, +.ion-ios-basketball:before, +.ion-ios-basketball-outline:before, +.ion-ios-bell:before, +.ion-ios-bell-outline:before, +.ion-ios-body:before, +.ion-ios-body-outline:before, +.ion-ios-bolt:before, +.ion-ios-bolt-outline:before, +.ion-ios-book:before, +.ion-ios-book-outline:before, +.ion-ios-bookmarks:before, +.ion-ios-bookmarks-outline:before, +.ion-ios-box:before, +.ion-ios-box-outline:before, +.ion-ios-briefcase:before, +.ion-ios-briefcase-outline:before, +.ion-ios-browsers:before, +.ion-ios-browsers-outline:before, +.ion-ios-calculator:before, +.ion-ios-calculator-outline:before, +.ion-ios-calendar:before, +.ion-ios-calendar-outline:before, +.ion-ios-camera:before, +.ion-ios-camera-outline:before, +.ion-ios-cart:before, +.ion-ios-cart-outline:before, +.ion-ios-chatboxes:before, +.ion-ios-chatboxes-outline:before, +.ion-ios-chatbubble:before, +.ion-ios-chatbubble-outline:before, +.ion-ios-checkmark:before, +.ion-ios-checkmark-empty:before, +.ion-ios-checkmark-outline:before, +.ion-ios-circle-filled:before, +.ion-ios-circle-outline:before, +.ion-ios-clock:before, +.ion-ios-clock-outline:before, +.ion-ios-close:before, +.ion-ios-close-empty:before, +.ion-ios-close-outline:before, +.ion-ios-cloud:before, +.ion-ios-cloud-download:before, +.ion-ios-cloud-download-outline:before, +.ion-ios-cloud-outline:before, +.ion-ios-cloud-upload:before, +.ion-ios-cloud-upload-outline:before, +.ion-ios-cloudy:before, +.ion-ios-cloudy-night:before, +.ion-ios-cloudy-night-outline:before, +.ion-ios-cloudy-outline:before, +.ion-ios-cog:before, +.ion-ios-cog-outline:before, +.ion-ios-color-filter:before, +.ion-ios-color-filter-outline:before, +.ion-ios-color-wand:before, +.ion-ios-color-wand-outline:before, +.ion-ios-compose:before, +.ion-ios-compose-outline:before, +.ion-ios-contact:before, +.ion-ios-contact-outline:before, +.ion-ios-copy:before, +.ion-ios-copy-outline:before, +.ion-ios-crop:before, +.ion-ios-crop-strong:before, +.ion-ios-download:before, +.ion-ios-download-outline:before, +.ion-ios-drag:before, +.ion-ios-email:before, +.ion-ios-email-outline:before, +.ion-ios-eye:before, +.ion-ios-eye-outline:before, +.ion-ios-fastforward:before, +.ion-ios-fastforward-outline:before, +.ion-ios-filing:before, +.ion-ios-filing-outline:before, +.ion-ios-film:before, +.ion-ios-film-outline:before, +.ion-ios-flag:before, +.ion-ios-flag-outline:before, +.ion-ios-flame:before, +.ion-ios-flame-outline:before, +.ion-ios-flask:before, +.ion-ios-flask-outline:before, +.ion-ios-flower:before, +.ion-ios-flower-outline:before, +.ion-ios-folder:before, +.ion-ios-folder-outline:before, +.ion-ios-football:before, +.ion-ios-football-outline:before, +.ion-ios-game-controller-a:before, +.ion-ios-game-controller-a-outline:before, +.ion-ios-game-controller-b:before, +.ion-ios-game-controller-b-outline:before, +.ion-ios-gear:before, +.ion-ios-gear-outline:before, +.ion-ios-glasses:before, +.ion-ios-glasses-outline:before, +.ion-ios-grid-view:before, +.ion-ios-grid-view-outline:before, +.ion-ios-heart:before, +.ion-ios-heart-outline:before, +.ion-ios-help:before, +.ion-ios-help-empty:before, +.ion-ios-help-outline:before, +.ion-ios-home:before, +.ion-ios-home-outline:before, +.ion-ios-infinite:before, +.ion-ios-infinite-outline:before, +.ion-ios-information:before, +.ion-ios-information-empty:before, +.ion-ios-information-outline:before, +.ion-ios-ionic-outline:before, +.ion-ios-keypad:before, +.ion-ios-keypad-outline:before, +.ion-ios-lightbulb:before, +.ion-ios-lightbulb-outline:before, +.ion-ios-list:before, +.ion-ios-list-outline:before, +.ion-ios-location:before, +.ion-ios-location-outline:before, +.ion-ios-locked:before, +.ion-ios-locked-outline:before, +.ion-ios-loop:before, +.ion-ios-loop-strong:before, +.ion-ios-medical:before, +.ion-ios-medical-outline:before, +.ion-ios-medkit:before, +.ion-ios-medkit-outline:before, +.ion-ios-mic:before, +.ion-ios-mic-off:before, +.ion-ios-mic-outline:before, +.ion-ios-minus:before, +.ion-ios-minus-empty:before, +.ion-ios-minus-outline:before, +.ion-ios-monitor:before, +.ion-ios-monitor-outline:before, +.ion-ios-moon:before, +.ion-ios-moon-outline:before, +.ion-ios-more:before, +.ion-ios-more-outline:before, +.ion-ios-musical-note:before, +.ion-ios-musical-notes:before, +.ion-ios-navigate:before, +.ion-ios-navigate-outline:before, +.ion-ios-nutrition:before, +.ion-ios-nutrition-outline:before, +.ion-ios-paper:before, +.ion-ios-paper-outline:before, +.ion-ios-paperplane:before, +.ion-ios-paperplane-outline:before, +.ion-ios-partlysunny:before, +.ion-ios-partlysunny-outline:before, +.ion-ios-pause:before, +.ion-ios-pause-outline:before, +.ion-ios-paw:before, +.ion-ios-paw-outline:before, +.ion-ios-people:before, +.ion-ios-people-outline:before, +.ion-ios-person:before, +.ion-ios-person-outline:before, +.ion-ios-personadd:before, +.ion-ios-personadd-outline:before, +.ion-ios-photos:before, +.ion-ios-photos-outline:before, +.ion-ios-pie:before, +.ion-ios-pie-outline:before, +.ion-ios-pint:before, +.ion-ios-pint-outline:before, +.ion-ios-play:before, +.ion-ios-play-outline:before, +.ion-ios-plus:before, +.ion-ios-plus-empty:before, +.ion-ios-plus-outline:before, +.ion-ios-pricetag:before, +.ion-ios-pricetag-outline:before, +.ion-ios-pricetags:before, +.ion-ios-pricetags-outline:before, +.ion-ios-printer:before, +.ion-ios-printer-outline:before, +.ion-ios-pulse:before, +.ion-ios-pulse-strong:before, +.ion-ios-rainy:before, +.ion-ios-rainy-outline:before, +.ion-ios-recording:before, +.ion-ios-recording-outline:before, +.ion-ios-redo:before, +.ion-ios-redo-outline:before, +.ion-ios-refresh:before, +.ion-ios-refresh-empty:before, +.ion-ios-refresh-outline:before, +.ion-ios-reload:before, +.ion-ios-reverse-camera:before, +.ion-ios-reverse-camera-outline:before, +.ion-ios-rewind:before, +.ion-ios-rewind-outline:before, +.ion-ios-rose:before, +.ion-ios-rose-outline:before, +.ion-ios-search:before, +.ion-ios-search-strong:before, +.ion-ios-settings:before, +.ion-ios-settings-strong:before, +.ion-ios-shuffle:before, +.ion-ios-shuffle-strong:before, +.ion-ios-skipbackward:before, +.ion-ios-skipbackward-outline:before, +.ion-ios-skipforward:before, +.ion-ios-skipforward-outline:before, +.ion-ios-snowy:before, +.ion-ios-speedometer:before, +.ion-ios-speedometer-outline:before, +.ion-ios-star:before, +.ion-ios-star-half:before, +.ion-ios-star-outline:before, +.ion-ios-stopwatch:before, +.ion-ios-stopwatch-outline:before, +.ion-ios-sunny:before, +.ion-ios-sunny-outline:before, +.ion-ios-telephone:before, +.ion-ios-telephone-outline:before, +.ion-ios-tennisball:before, +.ion-ios-tennisball-outline:before, +.ion-ios-thunderstorm:before, +.ion-ios-thunderstorm-outline:before, +.ion-ios-time:before, +.ion-ios-time-outline:before, +.ion-ios-timer:before, +.ion-ios-timer-outline:before, +.ion-ios-toggle:before, +.ion-ios-toggle-outline:before, +.ion-ios-trash:before, +.ion-ios-trash-outline:before, +.ion-ios-undo:before, +.ion-ios-undo-outline:before, +.ion-ios-unlocked:before, +.ion-ios-unlocked-outline:before, +.ion-ios-upload:before, +.ion-ios-upload-outline:before, +.ion-ios-videocam:before, +.ion-ios-videocam-outline:before, +.ion-ios-volume-high:before, +.ion-ios-volume-low:before, +.ion-ios-wineglass:before, +.ion-ios-wineglass-outline:before, +.ion-ios-world:before, +.ion-ios-world-outline:before, +.ion-ipad:before, +.ion-iphone:before, +.ion-ipod:before, +.ion-jet:before, +.ion-key:before, +.ion-knife:before, +.ion-laptop:before, +.ion-leaf:before, +.ion-levels:before, +.ion-lightbulb:before, +.ion-link:before, +.ion-load-a:before, +.ion-load-b:before, +.ion-load-c:before, +.ion-load-d:before, +.ion-location:before, +.ion-lock-combination:before, +.ion-locked:before, +.ion-log-in:before, +.ion-log-out:before, +.ion-loop:before, +.ion-magnet:before, +.ion-male:before, +.ion-man:before, +.ion-map:before, +.ion-medkit:before, +.ion-merge:before, +.ion-mic-a:before, +.ion-mic-b:before, +.ion-mic-c:before, +.ion-minus:before, +.ion-minus-circled:before, +.ion-minus-round:before, +.ion-model-s:before, +.ion-monitor:before, +.ion-more:before, +.ion-mouse:before, +.ion-music-note:before, +.ion-navicon:before, +.ion-navicon-round:before, +.ion-navigate:before, +.ion-network:before, +.ion-no-smoking:before, +.ion-nuclear:before, +.ion-outlet:before, +.ion-paintbrush:before, +.ion-paintbucket:before, +.ion-paper-airplane:before, +.ion-paperclip:before, +.ion-pause:before, +.ion-person:before, +.ion-person-add:before, +.ion-person-stalker:before, +.ion-pie-graph:before, +.ion-pin:before, +.ion-pinpoint:before, +.ion-pizza:before, +.ion-plane:before, +.ion-planet:before, +.ion-play:before, +.ion-playstation:before, +.ion-plus:before, +.ion-plus-circled:before, +.ion-plus-round:before, +.ion-podium:before, +.ion-pound:before, +.ion-power:before, +.ion-pricetag:before, +.ion-pricetags:before, +.ion-printer:before, +.ion-pull-request:before, +.ion-qr-scanner:before, +.ion-quote:before, +.ion-radio-waves:before, +.ion-record:before, +.ion-refresh:before, +.ion-reply:before, +.ion-reply-all:before, +.ion-ribbon-a:before, +.ion-ribbon-b:before, +.ion-sad:before, +.ion-sad-outline:before, +.ion-scissors:before, +.ion-search:before, +.ion-settings:before, +.ion-share:before, +.ion-shuffle:before, +.ion-skip-backward:before, +.ion-skip-forward:before, +.ion-social-android:before, +.ion-social-android-outline:before, +.ion-social-angular:before, +.ion-social-angular-outline:before, +.ion-social-apple:before, +.ion-social-apple-outline:before, +.ion-social-bitcoin:before, +.ion-social-bitcoin-outline:before, +.ion-social-buffer:before, +.ion-social-buffer-outline:before, +.ion-social-chrome:before, +.ion-social-chrome-outline:before, +.ion-social-codepen:before, +.ion-social-codepen-outline:before, +.ion-social-css3:before, +.ion-social-css3-outline:before, +.ion-social-designernews:before, +.ion-social-designernews-outline:before, +.ion-social-dribbble:before, +.ion-social-dribbble-outline:before, +.ion-social-dropbox:before, +.ion-social-dropbox-outline:before, +.ion-social-euro:before, +.ion-social-euro-outline:before, +.ion-social-facebook:before, +.ion-social-facebook-outline:before, +.ion-social-foursquare:before, +.ion-social-foursquare-outline:before, +.ion-social-freebsd-devil:before, +.ion-social-github:before, +.ion-social-github-outline:before, +.ion-social-google:before, +.ion-social-google-outline:before, +.ion-social-googleplus:before, +.ion-social-googleplus-outline:before, +.ion-social-hackernews:before, +.ion-social-hackernews-outline:before, +.ion-social-html5:before, +.ion-social-html5-outline:before, +.ion-social-instagram:before, +.ion-social-instagram-outline:before, +.ion-social-javascript:before, +.ion-social-javascript-outline:before, +.ion-social-linkedin:before, +.ion-social-linkedin-outline:before, +.ion-social-markdown:before, +.ion-social-nodejs:before, +.ion-social-octocat:before, +.ion-social-pinterest:before, +.ion-social-pinterest-outline:before, +.ion-social-python:before, +.ion-social-reddit:before, +.ion-social-reddit-outline:before, +.ion-social-rss:before, +.ion-social-rss-outline:before, +.ion-social-sass:before, +.ion-social-skype:before, +.ion-social-skype-outline:before, +.ion-social-snapchat:before, +.ion-social-snapchat-outline:before, +.ion-social-tumblr:before, +.ion-social-tumblr-outline:before, +.ion-social-tux:before, +.ion-social-twitch:before, +.ion-social-twitch-outline:before, +.ion-social-twitter:before, +.ion-social-twitter-outline:before, +.ion-social-usd:before, +.ion-social-usd-outline:before, +.ion-social-vimeo:before, +.ion-social-vimeo-outline:before, +.ion-social-whatsapp:before, +.ion-social-whatsapp-outline:before, +.ion-social-windows:before, +.ion-social-windows-outline:before, +.ion-social-wordpress:before, +.ion-social-wordpress-outline:before, +.ion-social-yahoo:before, +.ion-social-yahoo-outline:before, +.ion-social-yen:before, +.ion-social-yen-outline:before, +.ion-social-youtube:before, +.ion-social-youtube-outline:before, +.ion-soup-can:before, +.ion-soup-can-outline:before, +.ion-speakerphone:before, +.ion-speedometer:before, +.ion-spoon:before, +.ion-star:before, +.ion-stats-bars:before, +.ion-steam:before, +.ion-stop:before, +.ion-thermometer:before, +.ion-thumbsdown:before, +.ion-thumbsup:before, +.ion-toggle:before, +.ion-toggle-filled:before, +.ion-transgender:before, +.ion-trash-a:before, +.ion-trash-b:before, +.ion-trophy:before, +.ion-tshirt:before, +.ion-tshirt-outline:before, +.ion-umbrella:before, +.ion-university:before, +.ion-unlocked:before, +.ion-upload:before, +.ion-usb:before, +.ion-videocamera:before, +.ion-volume-high:before, +.ion-volume-low:before, +.ion-volume-medium:before, +.ion-volume-mute:before, +.ion-wand:before, +.ion-waterdrop:before, +.ion-wifi:before, +.ion-wineglass:before, +.ion-woman:before, +.ion-wrench:before, +.ion-xbox:before { + display: inline-block; + font-family: "Ionicons"; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + text-rendering: auto; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.ion-alert:before { + content: "\f101"; +} +.ion-alert-circled:before { + content: "\f100"; +} +.ion-android-add:before { + content: "\f2c7"; +} +.ion-android-add-circle:before { + content: "\f359"; +} +.ion-android-alarm-clock:before { + content: "\f35a"; +} +.ion-android-alert:before { + content: "\f35b"; +} +.ion-android-apps:before { + content: "\f35c"; +} +.ion-android-archive:before { + content: "\f2c9"; +} +.ion-android-arrow-back:before { + content: "\f2ca"; +} +.ion-android-arrow-down:before { + content: "\f35d"; +} +.ion-android-arrow-dropdown:before { + content: "\f35f"; +} +.ion-android-arrow-dropdown-circle:before { + content: "\f35e"; +} +.ion-android-arrow-dropleft:before { + content: "\f361"; +} +.ion-android-arrow-dropleft-circle:before { + content: "\f360"; +} +.ion-android-arrow-dropright:before { + content: "\f363"; +} +.ion-android-arrow-dropright-circle:before { + content: "\f362"; +} +.ion-android-arrow-dropup:before { + content: "\f365"; +} +.ion-android-arrow-dropup-circle:before { + content: "\f364"; +} +.ion-android-arrow-forward:before { + content: "\f30f"; +} +.ion-android-arrow-up:before { + content: "\f366"; +} +.ion-android-attach:before { + content: "\f367"; +} +.ion-android-bar:before { + content: "\f368"; +} +.ion-android-bicycle:before { + content: "\f369"; +} +.ion-android-boat:before { + content: "\f36a"; +} +.ion-android-bookmark:before { + content: "\f36b"; +} +.ion-android-bulb:before { + content: "\f36c"; +} +.ion-android-bus:before { + content: "\f36d"; +} +.ion-android-calendar:before { + content: "\f2d1"; +} +.ion-android-call:before { + content: "\f2d2"; +} +.ion-android-camera:before { + content: "\f2d3"; +} +.ion-android-cancel:before { + content: "\f36e"; +} +.ion-android-car:before { + content: "\f36f"; +} +.ion-android-cart:before { + content: "\f370"; +} +.ion-android-chat:before { + content: "\f2d4"; +} +.ion-android-checkbox:before { + content: "\f374"; +} +.ion-android-checkbox-blank:before { + content: "\f371"; +} +.ion-android-checkbox-outline:before { + content: "\f373"; +} +.ion-android-checkbox-outline-blank:before { + content: "\f372"; +} +.ion-android-checkmark-circle:before { + content: "\f375"; +} +.ion-android-clipboard:before { + content: "\f376"; +} +.ion-android-close:before { + content: "\f2d7"; +} +.ion-android-cloud:before { + content: "\f37a"; +} +.ion-android-cloud-circle:before { + content: "\f377"; +} +.ion-android-cloud-done:before { + content: "\f378"; +} +.ion-android-cloud-outline:before { + content: "\f379"; +} +.ion-android-color-palette:before { + content: "\f37b"; +} +.ion-android-compass:before { + content: "\f37c"; +} +.ion-android-contact:before { + content: "\f2d8"; +} +.ion-android-contacts:before { + content: "\f2d9"; +} +.ion-android-contract:before { + content: "\f37d"; +} +.ion-android-create:before { + content: "\f37e"; +} +.ion-android-delete:before { + content: "\f37f"; +} +.ion-android-desktop:before { + content: "\f380"; +} +.ion-android-document:before { + content: "\f381"; +} +.ion-android-done:before { + content: "\f383"; +} +.ion-android-done-all:before { + content: "\f382"; +} +.ion-android-download:before { + content: "\f2dd"; +} +.ion-android-drafts:before { + content: "\f384"; +} +.ion-android-exit:before { + content: "\f385"; +} +.ion-android-expand:before { + content: "\f386"; +} +.ion-android-favorite:before { + content: "\f388"; +} +.ion-android-favorite-outline:before { + content: "\f387"; +} +.ion-android-film:before { + content: "\f389"; +} +.ion-android-folder:before { + content: "\f2e0"; +} +.ion-android-folder-open:before { + content: "\f38a"; +} +.ion-android-funnel:before { + content: "\f38b"; +} +.ion-android-globe:before { + content: "\f38c"; +} +.ion-android-hand:before { + content: "\f2e3"; +} +.ion-android-hangout:before { + content: "\f38d"; +} +.ion-android-happy:before { + content: "\f38e"; +} +.ion-android-home:before { + content: "\f38f"; +} +.ion-android-image:before { + content: "\f2e4"; +} +.ion-android-laptop:before { + content: "\f390"; +} +.ion-android-list:before { + content: "\f391"; +} +.ion-android-locate:before { + content: "\f2e9"; +} +.ion-android-lock:before { + content: "\f392"; +} +.ion-android-mail:before { + content: "\f2eb"; +} +.ion-android-map:before { + content: "\f393"; +} +.ion-android-menu:before { + content: "\f394"; +} +.ion-android-microphone:before { + content: "\f2ec"; +} +.ion-android-microphone-off:before { + content: "\f395"; +} +.ion-android-more-horizontal:before { + content: "\f396"; +} +.ion-android-more-vertical:before { + content: "\f397"; +} +.ion-android-navigate:before { + content: "\f398"; +} +.ion-android-notifications:before { + content: "\f39b"; +} +.ion-android-notifications-none:before { + content: "\f399"; +} +.ion-android-notifications-off:before { + content: "\f39a"; +} +.ion-android-open:before { + content: "\f39c"; +} +.ion-android-options:before { + content: "\f39d"; +} +.ion-android-people:before { + content: "\f39e"; +} +.ion-android-person:before { + content: "\f3a0"; +} +.ion-android-person-add:before { + content: "\f39f"; +} +.ion-android-phone-landscape:before { + content: "\f3a1"; +} +.ion-android-phone-portrait:before { + content: "\f3a2"; +} +.ion-android-pin:before { + content: "\f3a3"; +} +.ion-android-plane:before { + content: "\f3a4"; +} +.ion-android-playstore:before { + content: "\f2f0"; +} +.ion-android-print:before { + content: "\f3a5"; +} +.ion-android-radio-button-off:before { + content: "\f3a6"; +} +.ion-android-radio-button-on:before { + content: "\f3a7"; +} +.ion-android-refresh:before { + content: "\f3a8"; +} +.ion-android-remove:before { + content: "\f2f4"; +} +.ion-android-remove-circle:before { + content: "\f3a9"; +} +.ion-android-restaurant:before { + content: "\f3aa"; +} +.ion-android-sad:before { + content: "\f3ab"; +} +.ion-android-search:before { + content: "\f2f5"; +} +.ion-android-send:before { + content: "\f2f6"; +} +.ion-android-settings:before { + content: "\f2f7"; +} +.ion-android-share:before { + content: "\f2f8"; +} +.ion-android-share-alt:before { + content: "\f3ac"; +} +.ion-android-star:before { + content: "\f2fc"; +} +.ion-android-star-half:before { + content: "\f3ad"; +} +.ion-android-star-outline:before { + content: "\f3ae"; +} +.ion-android-stopwatch:before { + content: "\f2fd"; +} +.ion-android-subway:before { + content: "\f3af"; +} +.ion-android-sunny:before { + content: "\f3b0"; +} +.ion-android-sync:before { + content: "\f3b1"; +} +.ion-android-textsms:before { + content: "\f3b2"; +} +.ion-android-time:before { + content: "\f3b3"; +} +.ion-android-train:before { + content: "\f3b4"; +} +.ion-android-unlock:before { + content: "\f3b5"; +} +.ion-android-upload:before { + content: "\f3b6"; +} +.ion-android-volume-down:before { + content: "\f3b7"; +} +.ion-android-volume-mute:before { + content: "\f3b8"; +} +.ion-android-volume-off:before { + content: "\f3b9"; +} +.ion-android-volume-up:before { + content: "\f3ba"; +} +.ion-android-walk:before { + content: "\f3bb"; +} +.ion-android-warning:before { + content: "\f3bc"; +} +.ion-android-watch:before { + content: "\f3bd"; +} +.ion-android-wifi:before { + content: "\f305"; +} +.ion-aperture:before { + content: "\f313"; +} +.ion-archive:before { + content: "\f102"; +} +.ion-arrow-down-a:before { + content: "\f103"; +} +.ion-arrow-down-b:before { + content: "\f104"; +} +.ion-arrow-down-c:before { + content: "\f105"; +} +.ion-arrow-expand:before { + content: "\f25e"; +} +.ion-arrow-graph-down-left:before { + content: "\f25f"; +} +.ion-arrow-graph-down-right:before { + content: "\f260"; +} +.ion-arrow-graph-up-left:before { + content: "\f261"; +} +.ion-arrow-graph-up-right:before { + content: "\f262"; +} +.ion-arrow-left-a:before { + content: "\f106"; +} +.ion-arrow-left-b:before { + content: "\f107"; +} +.ion-arrow-left-c:before { + content: "\f108"; +} +.ion-arrow-move:before { + content: "\f263"; +} +.ion-arrow-resize:before { + content: "\f264"; +} +.ion-arrow-return-left:before { + content: "\f265"; +} +.ion-arrow-return-right:before { + content: "\f266"; +} +.ion-arrow-right-a:before { + content: "\f109"; +} +.ion-arrow-right-b:before { + content: "\f10a"; +} +.ion-arrow-right-c:before { + content: "\f10b"; +} +.ion-arrow-shrink:before { + content: "\f267"; +} +.ion-arrow-swap:before { + content: "\f268"; +} +.ion-arrow-up-a:before { + content: "\f10c"; +} +.ion-arrow-up-b:before { + content: "\f10d"; +} +.ion-arrow-up-c:before { + content: "\f10e"; +} +.ion-asterisk:before { + content: "\f314"; +} +.ion-at:before { + content: "\f10f"; +} +.ion-backspace:before { + content: "\f3bf"; +} +.ion-backspace-outline:before { + content: "\f3be"; +} +.ion-bag:before { + content: "\f110"; +} +.ion-battery-charging:before { + content: "\f111"; +} +.ion-battery-empty:before { + content: "\f112"; +} +.ion-battery-full:before { + content: "\f113"; +} +.ion-battery-half:before { + content: "\f114"; +} +.ion-battery-low:before { + content: "\f115"; +} +.ion-beaker:before { + content: "\f269"; +} +.ion-beer:before { + content: "\f26a"; +} +.ion-bluetooth:before { + content: "\f116"; +} +.ion-bonfire:before { + content: "\f315"; +} +.ion-bookmark:before { + content: "\f26b"; +} +.ion-bowtie:before { + content: "\f3c0"; +} +.ion-briefcase:before { + content: "\f26c"; +} +.ion-bug:before { + content: "\f2be"; +} +.ion-calculator:before { + content: "\f26d"; +} +.ion-calendar:before { + content: "\f117"; +} +.ion-camera:before { + content: "\f118"; +} +.ion-card:before { + content: "\f119"; +} +.ion-cash:before { + content: "\f316"; +} +.ion-chatbox:before { + content: "\f11b"; +} +.ion-chatbox-working:before { + content: "\f11a"; +} +.ion-chatboxes:before { + content: "\f11c"; +} +.ion-chatbubble:before { + content: "\f11e"; +} +.ion-chatbubble-working:before { + content: "\f11d"; +} +.ion-chatbubbles:before { + content: "\f11f"; +} +.ion-checkmark:before { + content: "\f122"; +} +.ion-checkmark-circled:before { + content: "\f120"; +} +.ion-checkmark-round:before { + content: "\f121"; +} +.ion-chevron-down:before { + content: "\f123"; +} +.ion-chevron-left:before { + content: "\f124"; +} +.ion-chevron-right:before { + content: "\f125"; +} +.ion-chevron-up:before { + content: "\f126"; +} +.ion-clipboard:before { + content: "\f127"; +} +.ion-clock:before { + content: "\f26e"; +} +.ion-close:before { + content: "\f12a"; +} +.ion-close-circled:before { + content: "\f128"; +} +.ion-close-round:before { + content: "\f129"; +} +.ion-closed-captioning:before { + content: "\f317"; +} +.ion-cloud:before { + content: "\f12b"; +} +.ion-code:before { + content: "\f271"; +} +.ion-code-download:before { + content: "\f26f"; +} +.ion-code-working:before { + content: "\f270"; +} +.ion-coffee:before { + content: "\f272"; +} +.ion-compass:before { + content: "\f273"; +} +.ion-compose:before { + content: "\f12c"; +} +.ion-connection-bars:before { + content: "\f274"; +} +.ion-contrast:before { + content: "\f275"; +} +.ion-crop:before { + content: "\f3c1"; +} +.ion-cube:before { + content: "\f318"; +} +.ion-disc:before { + content: "\f12d"; +} +.ion-document:before { + content: "\f12f"; +} +.ion-document-text:before { + content: "\f12e"; +} +.ion-drag:before { + content: "\f130"; +} +.ion-earth:before { + content: "\f276"; +} +.ion-easel:before { + content: "\f3c2"; +} +.ion-edit:before { + content: "\f2bf"; +} +.ion-egg:before { + content: "\f277"; +} +.ion-eject:before { + content: "\f131"; +} +.ion-email:before { + content: "\f132"; +} +.ion-email-unread:before { + content: "\f3c3"; +} +.ion-erlenmeyer-flask:before { + content: "\f3c5"; +} +.ion-erlenmeyer-flask-bubbles:before { + content: "\f3c4"; +} +.ion-eye:before { + content: "\f133"; +} +.ion-eye-disabled:before { + content: "\f306"; +} +.ion-female:before { + content: "\f278"; +} +.ion-filing:before { + content: "\f134"; +} +.ion-film-marker:before { + content: "\f135"; +} +.ion-fireball:before { + content: "\f319"; +} +.ion-flag:before { + content: "\f279"; +} +.ion-flame:before { + content: "\f31a"; +} +.ion-flash:before { + content: "\f137"; +} +.ion-flash-off:before { + content: "\f136"; +} +.ion-folder:before { + content: "\f139"; +} +.ion-fork:before { + content: "\f27a"; +} +.ion-fork-repo:before { + content: "\f2c0"; +} +.ion-forward:before { + content: "\f13a"; +} +.ion-funnel:before { + content: "\f31b"; +} +.ion-gear-a:before { + content: "\f13d"; +} +.ion-gear-b:before { + content: "\f13e"; +} +.ion-grid:before { + content: "\f13f"; +} +.ion-hammer:before { + content: "\f27b"; +} +.ion-happy:before { + content: "\f31c"; +} +.ion-happy-outline:before { + content: "\f3c6"; +} +.ion-headphone:before { + content: "\f140"; +} +.ion-heart:before { + content: "\f141"; +} +.ion-heart-broken:before { + content: "\f31d"; +} +.ion-help:before { + content: "\f143"; +} +.ion-help-buoy:before { + content: "\f27c"; +} +.ion-help-circled:before { + content: "\f142"; +} +.ion-home:before { + content: "\f144"; +} +.ion-icecream:before { + content: "\f27d"; +} +.ion-image:before { + content: "\f147"; +} +.ion-images:before { + content: "\f148"; +} +.ion-information:before { + content: "\f14a"; +} +.ion-information-circled:before { + content: "\f149"; +} +.ion-ionic:before { + content: "\f14b"; +} +.ion-ios-alarm:before { + content: "\f3c8"; +} +.ion-ios-alarm-outline:before { + content: "\f3c7"; +} +.ion-ios-albums:before { + content: "\f3ca"; +} +.ion-ios-albums-outline:before { + content: "\f3c9"; +} +.ion-ios-americanfootball:before { + content: "\f3cc"; +} +.ion-ios-americanfootball-outline:before { + content: "\f3cb"; +} +.ion-ios-analytics:before { + content: "\f3ce"; +} +.ion-ios-analytics-outline:before { + content: "\f3cd"; +} +.ion-ios-arrow-back:before { + content: "\f3cf"; +} +.ion-ios-arrow-down:before { + content: "\f3d0"; +} +.ion-ios-arrow-forward:before { + content: "\f3d1"; +} +.ion-ios-arrow-left:before { + content: "\f3d2"; +} +.ion-ios-arrow-right:before { + content: "\f3d3"; +} +.ion-ios-arrow-thin-down:before { + content: "\f3d4"; +} +.ion-ios-arrow-thin-left:before { + content: "\f3d5"; +} +.ion-ios-arrow-thin-right:before { + content: "\f3d6"; +} +.ion-ios-arrow-thin-up:before { + content: "\f3d7"; +} +.ion-ios-arrow-up:before { + content: "\f3d8"; +} +.ion-ios-at:before { + content: "\f3da"; +} +.ion-ios-at-outline:before { + content: "\f3d9"; +} +.ion-ios-barcode:before { + content: "\f3dc"; +} +.ion-ios-barcode-outline:before { + content: "\f3db"; +} +.ion-ios-baseball:before { + content: "\f3de"; +} +.ion-ios-baseball-outline:before { + content: "\f3dd"; +} +.ion-ios-basketball:before { + content: "\f3e0"; +} +.ion-ios-basketball-outline:before { + content: "\f3df"; +} +.ion-ios-bell:before { + content: "\f3e2"; +} +.ion-ios-bell-outline:before { + content: "\f3e1"; +} +.ion-ios-body:before { + content: "\f3e4"; +} +.ion-ios-body-outline:before { + content: "\f3e3"; +} +.ion-ios-bolt:before { + content: "\f3e6"; +} +.ion-ios-bolt-outline:before { + content: "\f3e5"; +} +.ion-ios-book:before { + content: "\f3e8"; +} +.ion-ios-book-outline:before { + content: "\f3e7"; +} +.ion-ios-bookmarks:before { + content: "\f3ea"; +} +.ion-ios-bookmarks-outline:before { + content: "\f3e9"; +} +.ion-ios-box:before { + content: "\f3ec"; +} +.ion-ios-box-outline:before { + content: "\f3eb"; +} +.ion-ios-briefcase:before { + content: "\f3ee"; +} +.ion-ios-briefcase-outline:before { + content: "\f3ed"; +} +.ion-ios-browsers:before { + content: "\f3f0"; +} +.ion-ios-browsers-outline:before { + content: "\f3ef"; +} +.ion-ios-calculator:before { + content: "\f3f2"; +} +.ion-ios-calculator-outline:before { + content: "\f3f1"; +} +.ion-ios-calendar:before { + content: "\f3f4"; +} +.ion-ios-calendar-outline:before { + content: "\f3f3"; +} +.ion-ios-camera:before { + content: "\f3f6"; +} +.ion-ios-camera-outline:before { + content: "\f3f5"; +} +.ion-ios-cart:before { + content: "\f3f8"; +} +.ion-ios-cart-outline:before { + content: "\f3f7"; +} +.ion-ios-chatboxes:before { + content: "\f3fa"; +} +.ion-ios-chatboxes-outline:before { + content: "\f3f9"; +} +.ion-ios-chatbubble:before { + content: "\f3fc"; +} +.ion-ios-chatbubble-outline:before { + content: "\f3fb"; +} +.ion-ios-checkmark:before { + content: "\f3ff"; +} +.ion-ios-checkmark-empty:before { + content: "\f3fd"; +} +.ion-ios-checkmark-outline:before { + content: "\f3fe"; +} +.ion-ios-circle-filled:before { + content: "\f400"; +} +.ion-ios-circle-outline:before { + content: "\f401"; +} +.ion-ios-clock:before { + content: "\f403"; +} +.ion-ios-clock-outline:before { + content: "\f402"; +} +.ion-ios-close:before { + content: "\f406"; +} +.ion-ios-close-empty:before { + content: "\f404"; +} +.ion-ios-close-outline:before { + content: "\f405"; +} +.ion-ios-cloud:before { + content: "\f40c"; +} +.ion-ios-cloud-download:before { + content: "\f408"; +} +.ion-ios-cloud-download-outline:before { + content: "\f407"; +} +.ion-ios-cloud-outline:before { + content: "\f409"; +} +.ion-ios-cloud-upload:before { + content: "\f40b"; +} +.ion-ios-cloud-upload-outline:before { + content: "\f40a"; +} +.ion-ios-cloudy:before { + content: "\f410"; +} +.ion-ios-cloudy-night:before { + content: "\f40e"; +} +.ion-ios-cloudy-night-outline:before { + content: "\f40d"; +} +.ion-ios-cloudy-outline:before { + content: "\f40f"; +} +.ion-ios-cog:before { + content: "\f412"; +} +.ion-ios-cog-outline:before { + content: "\f411"; +} +.ion-ios-color-filter:before { + content: "\f414"; +} +.ion-ios-color-filter-outline:before { + content: "\f413"; +} +.ion-ios-color-wand:before { + content: "\f416"; +} +.ion-ios-color-wand-outline:before { + content: "\f415"; +} +.ion-ios-compose:before { + content: "\f418"; +} +.ion-ios-compose-outline:before { + content: "\f417"; +} +.ion-ios-contact:before { + content: "\f41a"; +} +.ion-ios-contact-outline:before { + content: "\f419"; +} +.ion-ios-copy:before { + content: "\f41c"; +} +.ion-ios-copy-outline:before { + content: "\f41b"; +} +.ion-ios-crop:before { + content: "\f41e"; +} +.ion-ios-crop-strong:before { + content: "\f41d"; +} +.ion-ios-download:before { + content: "\f420"; +} +.ion-ios-download-outline:before { + content: "\f41f"; +} +.ion-ios-drag:before { + content: "\f421"; +} +.ion-ios-email:before { + content: "\f423"; +} +.ion-ios-email-outline:before { + content: "\f422"; +} +.ion-ios-eye:before { + content: "\f425"; +} +.ion-ios-eye-outline:before { + content: "\f424"; +} +.ion-ios-fastforward:before { + content: "\f427"; +} +.ion-ios-fastforward-outline:before { + content: "\f426"; +} +.ion-ios-filing:before { + content: "\f429"; +} +.ion-ios-filing-outline:before { + content: "\f428"; +} +.ion-ios-film:before { + content: "\f42b"; +} +.ion-ios-film-outline:before { + content: "\f42a"; +} +.ion-ios-flag:before { + content: "\f42d"; +} +.ion-ios-flag-outline:before { + content: "\f42c"; +} +.ion-ios-flame:before { + content: "\f42f"; +} +.ion-ios-flame-outline:before { + content: "\f42e"; +} +.ion-ios-flask:before { + content: "\f431"; +} +.ion-ios-flask-outline:before { + content: "\f430"; +} +.ion-ios-flower:before { + content: "\f433"; +} +.ion-ios-flower-outline:before { + content: "\f432"; +} +.ion-ios-folder:before { + content: "\f435"; +} +.ion-ios-folder-outline:before { + content: "\f434"; +} +.ion-ios-football:before { + content: "\f437"; +} +.ion-ios-football-outline:before { + content: "\f436"; +} +.ion-ios-game-controller-a:before { + content: "\f439"; +} +.ion-ios-game-controller-a-outline:before { + content: "\f438"; +} +.ion-ios-game-controller-b:before { + content: "\f43b"; +} +.ion-ios-game-controller-b-outline:before { + content: "\f43a"; +} +.ion-ios-gear:before { + content: "\f43d"; +} +.ion-ios-gear-outline:before { + content: "\f43c"; +} +.ion-ios-glasses:before { + content: "\f43f"; +} +.ion-ios-glasses-outline:before { + content: "\f43e"; +} +.ion-ios-grid-view:before { + content: "\f441"; +} +.ion-ios-grid-view-outline:before { + content: "\f440"; +} +.ion-ios-heart:before { + content: "\f443"; +} +.ion-ios-heart-outline:before { + content: "\f442"; +} +.ion-ios-help:before { + content: "\f446"; +} +.ion-ios-help-empty:before { + content: "\f444"; +} +.ion-ios-help-outline:before { + content: "\f445"; +} +.ion-ios-home:before { + content: "\f448"; +} +.ion-ios-home-outline:before { + content: "\f447"; +} +.ion-ios-infinite:before { + content: "\f44a"; +} +.ion-ios-infinite-outline:before { + content: "\f449"; +} +.ion-ios-information:before { + content: "\f44d"; +} +.ion-ios-information-empty:before { + content: "\f44b"; +} +.ion-ios-information-outline:before { + content: "\f44c"; +} +.ion-ios-ionic-outline:before { + content: "\f44e"; +} +.ion-ios-keypad:before { + content: "\f450"; +} +.ion-ios-keypad-outline:before { + content: "\f44f"; +} +.ion-ios-lightbulb:before { + content: "\f452"; +} +.ion-ios-lightbulb-outline:before { + content: "\f451"; +} +.ion-ios-list:before { + content: "\f454"; +} +.ion-ios-list-outline:before { + content: "\f453"; +} +.ion-ios-location:before { + content: "\f456"; +} +.ion-ios-location-outline:before { + content: "\f455"; +} +.ion-ios-locked:before { + content: "\f458"; +} +.ion-ios-locked-outline:before { + content: "\f457"; +} +.ion-ios-loop:before { + content: "\f45a"; +} +.ion-ios-loop-strong:before { + content: "\f459"; +} +.ion-ios-medical:before { + content: "\f45c"; +} +.ion-ios-medical-outline:before { + content: "\f45b"; +} +.ion-ios-medkit:before { + content: "\f45e"; +} +.ion-ios-medkit-outline:before { + content: "\f45d"; +} +.ion-ios-mic:before { + content: "\f461"; +} +.ion-ios-mic-off:before { + content: "\f45f"; +} +.ion-ios-mic-outline:before { + content: "\f460"; +} +.ion-ios-minus:before { + content: "\f464"; +} +.ion-ios-minus-empty:before { + content: "\f462"; +} +.ion-ios-minus-outline:before { + content: "\f463"; +} +.ion-ios-monitor:before { + content: "\f466"; +} +.ion-ios-monitor-outline:before { + content: "\f465"; +} +.ion-ios-moon:before { + content: "\f468"; +} +.ion-ios-moon-outline:before { + content: "\f467"; +} +.ion-ios-more:before { + content: "\f46a"; +} +.ion-ios-more-outline:before { + content: "\f469"; +} +.ion-ios-musical-note:before { + content: "\f46b"; +} +.ion-ios-musical-notes:before { + content: "\f46c"; +} +.ion-ios-navigate:before { + content: "\f46e"; +} +.ion-ios-navigate-outline:before { + content: "\f46d"; +} +.ion-ios-nutrition:before { + content: "\f470"; +} +.ion-ios-nutrition-outline:before { + content: "\f46f"; +} +.ion-ios-paper:before { + content: "\f472"; +} +.ion-ios-paper-outline:before { + content: "\f471"; +} +.ion-ios-paperplane:before { + content: "\f474"; +} +.ion-ios-paperplane-outline:before { + content: "\f473"; +} +.ion-ios-partlysunny:before { + content: "\f476"; +} +.ion-ios-partlysunny-outline:before { + content: "\f475"; +} +.ion-ios-pause:before { + content: "\f478"; +} +.ion-ios-pause-outline:before { + content: "\f477"; +} +.ion-ios-paw:before { + content: "\f47a"; +} +.ion-ios-paw-outline:before { + content: "\f479"; +} +.ion-ios-people:before { + content: "\f47c"; +} +.ion-ios-people-outline:before { + content: "\f47b"; +} +.ion-ios-person:before { + content: "\f47e"; +} +.ion-ios-person-outline:before { + content: "\f47d"; +} +.ion-ios-personadd:before { + content: "\f480"; +} +.ion-ios-personadd-outline:before { + content: "\f47f"; +} +.ion-ios-photos:before { + content: "\f482"; +} +.ion-ios-photos-outline:before { + content: "\f481"; +} +.ion-ios-pie:before { + content: "\f484"; +} +.ion-ios-pie-outline:before { + content: "\f483"; +} +.ion-ios-pint:before { + content: "\f486"; +} +.ion-ios-pint-outline:before { + content: "\f485"; +} +.ion-ios-play:before { + content: "\f488"; +} +.ion-ios-play-outline:before { + content: "\f487"; +} +.ion-ios-plus:before { + content: "\f48b"; +} +.ion-ios-plus-empty:before { + content: "\f489"; +} +.ion-ios-plus-outline:before { + content: "\f48a"; +} +.ion-ios-pricetag:before { + content: "\f48d"; +} +.ion-ios-pricetag-outline:before { + content: "\f48c"; +} +.ion-ios-pricetags:before { + content: "\f48f"; +} +.ion-ios-pricetags-outline:before { + content: "\f48e"; +} +.ion-ios-printer:before { + content: "\f491"; +} +.ion-ios-printer-outline:before { + content: "\f490"; +} +.ion-ios-pulse:before { + content: "\f493"; +} +.ion-ios-pulse-strong:before { + content: "\f492"; +} +.ion-ios-rainy:before { + content: "\f495"; +} +.ion-ios-rainy-outline:before { + content: "\f494"; +} +.ion-ios-recording:before { + content: "\f497"; +} +.ion-ios-recording-outline:before { + content: "\f496"; +} +.ion-ios-redo:before { + content: "\f499"; +} +.ion-ios-redo-outline:before { + content: "\f498"; +} +.ion-ios-refresh:before { + content: "\f49c"; +} +.ion-ios-refresh-empty:before { + content: "\f49a"; +} +.ion-ios-refresh-outline:before { + content: "\f49b"; +} +.ion-ios-reload:before { + content: "\f49d"; +} +.ion-ios-reverse-camera:before { + content: "\f49f"; +} +.ion-ios-reverse-camera-outline:before { + content: "\f49e"; +} +.ion-ios-rewind:before { + content: "\f4a1"; +} +.ion-ios-rewind-outline:before { + content: "\f4a0"; +} +.ion-ios-rose:before { + content: "\f4a3"; +} +.ion-ios-rose-outline:before { + content: "\f4a2"; +} +.ion-ios-search:before { + content: "\f4a5"; +} +.ion-ios-search-strong:before { + content: "\f4a4"; +} +.ion-ios-settings:before { + content: "\f4a7"; +} +.ion-ios-settings-strong:before { + content: "\f4a6"; +} +.ion-ios-shuffle:before { + content: "\f4a9"; +} +.ion-ios-shuffle-strong:before { + content: "\f4a8"; +} +.ion-ios-skipbackward:before { + content: "\f4ab"; +} +.ion-ios-skipbackward-outline:before { + content: "\f4aa"; +} +.ion-ios-skipforward:before { + content: "\f4ad"; +} +.ion-ios-skipforward-outline:before { + content: "\f4ac"; +} +.ion-ios-snowy:before { + content: "\f4ae"; +} +.ion-ios-speedometer:before { + content: "\f4b0"; +} +.ion-ios-speedometer-outline:before { + content: "\f4af"; +} +.ion-ios-star:before { + content: "\f4b3"; +} +.ion-ios-star-half:before { + content: "\f4b1"; +} +.ion-ios-star-outline:before { + content: "\f4b2"; +} +.ion-ios-stopwatch:before { + content: "\f4b5"; +} +.ion-ios-stopwatch-outline:before { + content: "\f4b4"; +} +.ion-ios-sunny:before { + content: "\f4b7"; +} +.ion-ios-sunny-outline:before { + content: "\f4b6"; +} +.ion-ios-telephone:before { + content: "\f4b9"; +} +.ion-ios-telephone-outline:before { + content: "\f4b8"; +} +.ion-ios-tennisball:before { + content: "\f4bb"; +} +.ion-ios-tennisball-outline:before { + content: "\f4ba"; +} +.ion-ios-thunderstorm:before { + content: "\f4bd"; +} +.ion-ios-thunderstorm-outline:before { + content: "\f4bc"; +} +.ion-ios-time:before { + content: "\f4bf"; +} +.ion-ios-time-outline:before { + content: "\f4be"; +} +.ion-ios-timer:before { + content: "\f4c1"; +} +.ion-ios-timer-outline:before { + content: "\f4c0"; +} +.ion-ios-toggle:before { + content: "\f4c3"; +} +.ion-ios-toggle-outline:before { + content: "\f4c2"; +} +.ion-ios-trash:before { + content: "\f4c5"; +} +.ion-ios-trash-outline:before { + content: "\f4c4"; +} +.ion-ios-undo:before { + content: "\f4c7"; +} +.ion-ios-undo-outline:before { + content: "\f4c6"; +} +.ion-ios-unlocked:before { + content: "\f4c9"; +} +.ion-ios-unlocked-outline:before { + content: "\f4c8"; +} +.ion-ios-upload:before { + content: "\f4cb"; +} +.ion-ios-upload-outline:before { + content: "\f4ca"; +} +.ion-ios-videocam:before { + content: "\f4cd"; +} +.ion-ios-videocam-outline:before { + content: "\f4cc"; +} +.ion-ios-volume-high:before { + content: "\f4ce"; +} +.ion-ios-volume-low:before { + content: "\f4cf"; +} +.ion-ios-wineglass:before { + content: "\f4d1"; +} +.ion-ios-wineglass-outline:before { + content: "\f4d0"; +} +.ion-ios-world:before { + content: "\f4d3"; +} +.ion-ios-world-outline:before { + content: "\f4d2"; +} +.ion-ipad:before { + content: "\f1f9"; +} +.ion-iphone:before { + content: "\f1fa"; +} +.ion-ipod:before { + content: "\f1fb"; +} +.ion-jet:before { + content: "\f295"; +} +.ion-key:before { + content: "\f296"; +} +.ion-knife:before { + content: "\f297"; +} +.ion-laptop:before { + content: "\f1fc"; +} +.ion-leaf:before { + content: "\f1fd"; +} +.ion-levels:before { + content: "\f298"; +} +.ion-lightbulb:before { + content: "\f299"; +} +.ion-link:before { + content: "\f1fe"; +} +.ion-load-a:before { + content: "\f29a"; +} +.ion-load-b:before { + content: "\f29b"; +} +.ion-load-c:before { + content: "\f29c"; +} +.ion-load-d:before { + content: "\f29d"; +} +.ion-location:before { + content: "\f1ff"; +} +.ion-lock-combination:before { + content: "\f4d4"; +} +.ion-locked:before { + content: "\f200"; +} +.ion-log-in:before { + content: "\f29e"; +} +.ion-log-out:before { + content: "\f29f"; +} +.ion-loop:before { + content: "\f201"; +} +.ion-magnet:before { + content: "\f2a0"; +} +.ion-male:before { + content: "\f2a1"; +} +.ion-man:before { + content: "\f202"; +} +.ion-map:before { + content: "\f203"; +} +.ion-medkit:before { + content: "\f2a2"; +} +.ion-merge:before { + content: "\f33f"; +} +.ion-mic-a:before { + content: "\f204"; +} +.ion-mic-b:before { + content: "\f205"; +} +.ion-mic-c:before { + content: "\f206"; +} +.ion-minus:before { + content: "\f209"; +} +.ion-minus-circled:before { + content: "\f207"; +} +.ion-minus-round:before { + content: "\f208"; +} +.ion-model-s:before { + content: "\f2c1"; +} +.ion-monitor:before { + content: "\f20a"; +} +.ion-more:before { + content: "\f20b"; +} +.ion-mouse:before { + content: "\f340"; +} +.ion-music-note:before { + content: "\f20c"; +} +.ion-navicon:before { + content: "\f20e"; +} +.ion-navicon-round:before { + content: "\f20d"; +} +.ion-navigate:before { + content: "\f2a3"; +} +.ion-network:before { + content: "\f341"; +} +.ion-no-smoking:before { + content: "\f2c2"; +} +.ion-nuclear:before { + content: "\f2a4"; +} +.ion-outlet:before { + content: "\f342"; +} +.ion-paintbrush:before { + content: "\f4d5"; +} +.ion-paintbucket:before { + content: "\f4d6"; +} +.ion-paper-airplane:before { + content: "\f2c3"; +} +.ion-paperclip:before { + content: "\f20f"; +} +.ion-pause:before { + content: "\f210"; +} +.ion-person:before { + content: "\f213"; +} +.ion-person-add:before { + content: "\f211"; +} +.ion-person-stalker:before { + content: "\f212"; +} +.ion-pie-graph:before { + content: "\f2a5"; +} +.ion-pin:before { + content: "\f2a6"; +} +.ion-pinpoint:before { + content: "\f2a7"; +} +.ion-pizza:before { + content: "\f2a8"; +} +.ion-plane:before { + content: "\f214"; +} +.ion-planet:before { + content: "\f343"; +} +.ion-play:before { + content: "\f215"; +} +.ion-playstation:before { + content: "\f30a"; +} +.ion-plus:before { + content: "\f218"; +} +.ion-plus-circled:before { + content: "\f216"; +} +.ion-plus-round:before { + content: "\f217"; +} +.ion-podium:before { + content: "\f344"; +} +.ion-pound:before { + content: "\f219"; +} +.ion-power:before { + content: "\f2a9"; +} +.ion-pricetag:before { + content: "\f2aa"; +} +.ion-pricetags:before { + content: "\f2ab"; +} +.ion-printer:before { + content: "\f21a"; +} +.ion-pull-request:before { + content: "\f345"; +} +.ion-qr-scanner:before { + content: "\f346"; +} +.ion-quote:before { + content: "\f347"; +} +.ion-radio-waves:before { + content: "\f2ac"; +} +.ion-record:before { + content: "\f21b"; +} +.ion-refresh:before { + content: "\f21c"; +} +.ion-reply:before { + content: "\f21e"; +} +.ion-reply-all:before { + content: "\f21d"; +} +.ion-ribbon-a:before { + content: "\f348"; +} +.ion-ribbon-b:before { + content: "\f349"; +} +.ion-sad:before { + content: "\f34a"; +} +.ion-sad-outline:before { + content: "\f4d7"; +} +.ion-scissors:before { + content: "\f34b"; +} +.ion-search:before { + content: "\f21f"; +} +.ion-settings:before { + content: "\f2ad"; +} +.ion-share:before { + content: "\f220"; +} +.ion-shuffle:before { + content: "\f221"; +} +.ion-skip-backward:before { + content: "\f222"; +} +.ion-skip-forward:before { + content: "\f223"; +} +.ion-social-android:before { + content: "\f225"; +} +.ion-social-android-outline:before { + content: "\f224"; +} +.ion-social-angular:before { + content: "\f4d9"; +} +.ion-social-angular-outline:before { + content: "\f4d8"; +} +.ion-social-apple:before { + content: "\f227"; +} +.ion-social-apple-outline:before { + content: "\f226"; +} +.ion-social-bitcoin:before { + content: "\f2af"; +} +.ion-social-bitcoin-outline:before { + content: "\f2ae"; +} +.ion-social-buffer:before { + content: "\f229"; +} +.ion-social-buffer-outline:before { + content: "\f228"; +} +.ion-social-chrome:before { + content: "\f4db"; +} +.ion-social-chrome-outline:before { + content: "\f4da"; +} +.ion-social-codepen:before { + content: "\f4dd"; +} +.ion-social-codepen-outline:before { + content: "\f4dc"; +} +.ion-social-css3:before { + content: "\f4df"; +} +.ion-social-css3-outline:before { + content: "\f4de"; +} +.ion-social-designernews:before { + content: "\f22b"; +} +.ion-social-designernews-outline:before { + content: "\f22a"; +} +.ion-social-dribbble:before { + content: "\f22d"; +} +.ion-social-dribbble-outline:before { + content: "\f22c"; +} +.ion-social-dropbox:before { + content: "\f22f"; +} +.ion-social-dropbox-outline:before { + content: "\f22e"; +} +.ion-social-euro:before { + content: "\f4e1"; +} +.ion-social-euro-outline:before { + content: "\f4e0"; +} +.ion-social-facebook:before { + content: "\f231"; +} +.ion-social-facebook-outline:before { + content: "\f230"; +} +.ion-social-foursquare:before { + content: "\f34d"; +} +.ion-social-foursquare-outline:before { + content: "\f34c"; +} +.ion-social-freebsd-devil:before { + content: "\f2c4"; +} +.ion-social-github:before { + content: "\f233"; +} +.ion-social-github-outline:before { + content: "\f232"; +} +.ion-social-google:before { + content: "\f34f"; +} +.ion-social-google-outline:before { + content: "\f34e"; +} +.ion-social-googleplus:before { + content: "\f235"; +} +.ion-social-googleplus-outline:before { + content: "\f234"; +} +.ion-social-hackernews:before { + content: "\f237"; +} +.ion-social-hackernews-outline:before { + content: "\f236"; +} +.ion-social-html5:before { + content: "\f4e3"; +} +.ion-social-html5-outline:before { + content: "\f4e2"; +} +.ion-social-instagram:before { + content: "\f351"; +} +.ion-social-instagram-outline:before { + content: "\f350"; +} +.ion-social-javascript:before { + content: "\f4e5"; +} +.ion-social-javascript-outline:before { + content: "\f4e4"; +} +.ion-social-linkedin:before { + content: "\f239"; +} +.ion-social-linkedin-outline:before { + content: "\f238"; +} +.ion-social-markdown:before { + content: "\f4e6"; +} +.ion-social-nodejs:before { + content: "\f4e7"; +} +.ion-social-octocat:before { + content: "\f4e8"; +} +.ion-social-pinterest:before { + content: "\f2b1"; +} +.ion-social-pinterest-outline:before { + content: "\f2b0"; +} +.ion-social-python:before { + content: "\f4e9"; +} +.ion-social-reddit:before { + content: "\f23b"; +} +.ion-social-reddit-outline:before { + content: "\f23a"; +} +.ion-social-rss:before { + content: "\f23d"; +} +.ion-social-rss-outline:before { + content: "\f23c"; +} +.ion-social-sass:before { + content: "\f4ea"; +} +.ion-social-skype:before { + content: "\f23f"; +} +.ion-social-skype-outline:before { + content: "\f23e"; +} +.ion-social-snapchat:before { + content: "\f4ec"; +} +.ion-social-snapchat-outline:before { + content: "\f4eb"; +} +.ion-social-tumblr:before { + content: "\f241"; +} +.ion-social-tumblr-outline:before { + content: "\f240"; +} +.ion-social-tux:before { + content: "\f2c5"; +} +.ion-social-twitch:before { + content: "\f4ee"; +} +.ion-social-twitch-outline:before { + content: "\f4ed"; +} +.ion-social-twitter:before { + content: "\f243"; +} +.ion-social-twitter-outline:before { + content: "\f242"; +} +.ion-social-usd:before { + content: "\f353"; +} +.ion-social-usd-outline:before { + content: "\f352"; +} +.ion-social-vimeo:before { + content: "\f245"; +} +.ion-social-vimeo-outline:before { + content: "\f244"; +} +.ion-social-whatsapp:before { + content: "\f4f0"; +} +.ion-social-whatsapp-outline:before { + content: "\f4ef"; +} +.ion-social-windows:before { + content: "\f247"; +} +.ion-social-windows-outline:before { + content: "\f246"; +} +.ion-social-wordpress:before { + content: "\f249"; +} +.ion-social-wordpress-outline:before { + content: "\f248"; +} +.ion-social-yahoo:before { + content: "\f24b"; +} +.ion-social-yahoo-outline:before { + content: "\f24a"; +} +.ion-social-yen:before { + content: "\f4f2"; +} +.ion-social-yen-outline:before { + content: "\f4f1"; +} +.ion-social-youtube:before { + content: "\f24d"; +} +.ion-social-youtube-outline:before { + content: "\f24c"; +} +.ion-soup-can:before { + content: "\f4f4"; +} +.ion-soup-can-outline:before { + content: "\f4f3"; +} +.ion-speakerphone:before { + content: "\f2b2"; +} +.ion-speedometer:before { + content: "\f2b3"; +} +.ion-spoon:before { + content: "\f2b4"; +} +.ion-star:before { + content: "\f24e"; +} +.ion-stats-bars:before { + content: "\f2b5"; +} +.ion-steam:before { + content: "\f30b"; +} +.ion-stop:before { + content: "\f24f"; +} +.ion-thermometer:before { + content: "\f2b6"; +} +.ion-thumbsdown:before { + content: "\f250"; +} +.ion-thumbsup:before { + content: "\f251"; +} +.ion-toggle:before { + content: "\f355"; +} +.ion-toggle-filled:before { + content: "\f354"; +} +.ion-transgender:before { + content: "\f4f5"; +} +.ion-trash-a:before { + content: "\f252"; +} +.ion-trash-b:before { + content: "\f253"; +} +.ion-trophy:before { + content: "\f356"; +} +.ion-tshirt:before { + content: "\f4f7"; +} +.ion-tshirt-outline:before { + content: "\f4f6"; +} +.ion-umbrella:before { + content: "\f2b7"; +} +.ion-university:before { + content: "\f357"; +} +.ion-unlocked:before { + content: "\f254"; +} +.ion-upload:before { + content: "\f255"; +} +.ion-usb:before { + content: "\f2b8"; +} +.ion-videocamera:before { + content: "\f256"; +} +.ion-volume-high:before { + content: "\f257"; +} +.ion-volume-low:before { + content: "\f258"; +} +.ion-volume-medium:before { + content: "\f259"; +} +.ion-volume-mute:before { + content: "\f25a"; +} +.ion-wand:before { + content: "\f358"; +} +.ion-waterdrop:before { + content: "\f25b"; +} +.ion-wifi:before { + content: "\f25c"; +} +.ion-wineglass:before { + content: "\f2b9"; +} +.ion-woman:before { + content: "\f25d"; +} +.ion-wrench:before { + content: "\f2ba"; +} +.ion-xbox:before { + content: "\f30c"; +} +.morris-hover { + position: absolute; + z-index: 1000; +} +.morris-hover.morris-default-style { + border-radius: 10px; + padding: 6px; + color: #666; + background: rgba(255, 255, 255, 0.8); + border: solid 2px rgba(230, 230, 230, 0.8); + font-family: sans-serif; + font-size: 12px; + text-align: center; +} +.morris-hover.morris-default-style .morris-hover-row-label { + font-weight: bold; + margin: 0.25em 0; +} +.morris-hover.morris-default-style .morris-hover-point { + white-space: nowrap; + margin: 0.1em 0; +} +/*! + * FullCalendar v1.6.4 Stylesheet + * Docs & License: http://arshaw.com/fullcalendar/ + * (c) 2013 Adam Shaw + */ +.fc { + direction: ltr; + text-align: left; +} +.fc table { + border-collapse: collapse; + border-spacing: 0; +} +html .fc, +.fc table { + font-size: 1em; +} +.fc td, +.fc th { + padding: 0; + vertical-align: top; +} +/* Header +------------------------------------------------------------------------*/ +.fc-header td { + white-space: nowrap; +} +.fc-header-left { + width: 25%; + text-align: left; +} +.fc-header-center { + text-align: center; +} +.fc-header-right { + width: 25%; + text-align: right; +} +.fc-header-title { + display: inline-block; + vertical-align: top; +} +.fc-header-title h2 { + margin-top: 0; + white-space: nowrap; +} +.fc .fc-header-space { + padding-left: 10px; +} +.fc-header .fc-button { + margin-bottom: 1em; + vertical-align: top; +} +/* buttons edges butting together */ +.fc-header .fc-button { + margin-right: -1px; +} +.fc-header .fc-corner-right, +.fc-header .ui-corner-right { + /* theme */ + margin-right: 0; + /* back to normal */ +} +/* button layering (for border precedence) */ +.fc-header .fc-state-hover, +.fc-header .ui-state-hover { + z-index: 2; +} +.fc-header .fc-state-down { + z-index: 3; +} +.fc-header .fc-state-active, +.fc-header .ui-state-active { + z-index: 4; +} +/* Content +------------------------------------------------------------------------*/ +.fc-content { + clear: both; + zoom: 1; + /* for IE7, gives accurate coordinates for [un]freezeContentHeight */ +} +.fc-view { + width: 100%; + overflow: hidden; +} +/* Cell Styles +------------------------------------------------------------------------*/ +.fc-widget-header, +.fc-widget-content { + /* , usually */ + border: 1px solid #ddd; +} +.fc-state-highlight { + /* today cell */ + /* TODO: add .fc-today to */ + background: #fcf8e3; +} +.fc-cell-overlay { + /* semi-transparent rectangle while dragging */ + background: #bce8f1; + opacity: .3; + filter: alpha(opacity=30); + /* for IE */ +} +/* Buttons +------------------------------------------------------------------------*/ +.fc-button { + position: relative; + display: inline-block; + padding: 0 .6em; + overflow: hidden; + height: 1.9em; + line-height: 1.9em; + white-space: nowrap; + cursor: pointer; +} +.fc-state-default { + /* non-theme */ + border: 1px solid; +} +.fc-state-default.fc-corner-left { + /* non-theme */ + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.fc-state-default.fc-corner-right { + /* non-theme */ + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +/* + Our default prev/next buttons use HTML entities like ‹ › « » + and we'll try to make them look good cross-browser. +*/ +.fc-text-arrow { + margin: 0 .1em; + font-size: 2em; + font-family: "Courier New", Courier, monospace; + vertical-align: baseline; + /* for IE7 */ +} +.fc-button-prev .fc-text-arrow, +.fc-button-next .fc-text-arrow { + /* for ‹ › */ + font-weight: bold; +} +/* icon (for jquery ui) */ +.fc-button .fc-icon-wrap { + position: relative; + float: left; + top: 50%; +} +.fc-button .ui-icon { + position: relative; + float: left; + margin-top: -50%; + *margin-top: 0; + *top: -50%; +} +/* + button states + borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/) +*/ +.fc-state-default { + background-color: #f5f5f5; + background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); + background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); + background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); + background-repeat: repeat-x; + border-color: #e6e6e6 #e6e6e6 #bfbfbf; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + color: #333; + text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); +} +.fc-state-hover, +.fc-state-down, +.fc-state-active, +.fc-state-disabled { + color: #333333; + background-color: #e6e6e6; +} +.fc-state-hover { + color: #333333; + text-decoration: none; + background-position: 0 -15px; + -webkit-transition: background-position 0.1s linear; + -moz-transition: background-position 0.1s linear; + -o-transition: background-position 0.1s linear; + transition: background-position 0.1s linear; +} +.fc-state-down, +.fc-state-active { + background-color: #cccccc; + background-image: none; + outline: 0; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} +.fc-state-disabled { + cursor: default; + background-image: none; + opacity: 0.65; + filter: alpha(opacity=65); + box-shadow: none; +} +/* Global Event Styles +------------------------------------------------------------------------*/ +.fc-event-container > * { + z-index: 8; +} +.fc-event-container > .ui-draggable-dragging, +.fc-event-container > .ui-resizable-resizing { + z-index: 9; +} +.fc-event { + border: 1px solid #3a87ad; + /* default BORDER color */ + background-color: #3a87ad; + /* default BACKGROUND color */ + color: #fff; + /* default TEXT color */ + font-size: .85em; + cursor: default; +} +a.fc-event { + text-decoration: none; +} +a.fc-event, +.fc-event-draggable { + cursor: pointer; +} +.fc-rtl .fc-event { + text-align: right; +} +.fc-event-inner { + width: 100%; + height: 100%; + overflow: hidden; +} +.fc-event-time, +.fc-event-title { + padding: 0 1px; +} +.fc .ui-resizable-handle { + display: block; + position: absolute; + z-index: 99999; + overflow: hidden; + /* hacky spaces (IE6/7) */ + font-size: 300%; + /* */ + line-height: 50%; + /* */ +} +/* Horizontal Events +------------------------------------------------------------------------*/ +.fc-event-hori { + border-width: 1px 0; + margin-bottom: 1px; +} +.fc-ltr .fc-event-hori.fc-event-start, +.fc-rtl .fc-event-hori.fc-event-end { + border-left-width: 1px; + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +.fc-ltr .fc-event-hori.fc-event-end, +.fc-rtl .fc-event-hori.fc-event-start { + border-right-width: 1px; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} +/* resizable */ +.fc-event-hori .ui-resizable-e { + top: 0 !important; + /* importants override pre jquery ui 1.7 styles */ + right: -3px !important; + width: 7px !important; + height: 100% !important; + cursor: e-resize; +} +.fc-event-hori .ui-resizable-w { + top: 0 !important; + left: -3px !important; + width: 7px !important; + height: 100% !important; + cursor: w-resize; +} +.fc-event-hori .ui-resizable-handle { + _padding-bottom: 14px; + /* IE6 had 0 height */ +} +/* Reusable Separate-border Table +------------------------------------------------------------*/ +table.fc-border-separate { + border-collapse: separate; +} +.fc-border-separate th, +.fc-border-separate td { + border-width: 1px 0 0 1px; +} +.fc-border-separate th.fc-last, +.fc-border-separate td.fc-last { + border-right-width: 1px; +} +.fc-border-separate tr.fc-last th, +.fc-border-separate tr.fc-last td { + border-bottom-width: 1px; +} +.fc-border-separate tbody tr.fc-first td, +.fc-border-separate tbody tr.fc-first th { + border-top-width: 0; +} +/* Month View, Basic Week View, Basic Day View +------------------------------------------------------------------------*/ +.fc-grid th { + text-align: center; +} +.fc .fc-week-number { + width: 22px; + text-align: center; +} +.fc .fc-week-number div { + padding: 0 2px; +} +.fc-grid .fc-day-number { + float: right; + padding: 0 2px; +} +.fc-grid .fc-other-month .fc-day-number { + opacity: 0.3; + filter: alpha(opacity=30); + /* for IE */ + /* opacity with small font can sometimes look too faded + might want to set the 'color' property instead + making day-numbers bold also fixes the problem */ +} +.fc-grid .fc-day-content { + clear: both; + padding: 2px 2px 1px; + /* distance between events and day edges */ +} +/* event styles */ +.fc-grid .fc-event-time { + font-weight: bold; +} +/* right-to-left */ +.fc-rtl .fc-grid .fc-day-number { + float: left; +} +.fc-rtl .fc-grid .fc-event-time { + float: right; +} +/* Agenda Week View, Agenda Day View +------------------------------------------------------------------------*/ +.fc-agenda table { + border-collapse: separate; +} +.fc-agenda-days th { + text-align: center; +} +.fc-agenda .fc-agenda-axis { + width: 50px; + padding: 0 4px; + vertical-align: middle; + text-align: right; + white-space: nowrap; + font-weight: normal; +} +.fc-agenda .fc-week-number { + font-weight: bold; +} +.fc-agenda .fc-day-content { + padding: 2px 2px 1px; +} +/* make axis border take precedence */ +.fc-agenda-days .fc-agenda-axis { + border-right-width: 1px; +} +.fc-agenda-days .fc-col0 { + border-left-width: 0; +} +/* all-day area */ +.fc-agenda-allday th { + border-width: 0 1px; +} +.fc-agenda-allday .fc-day-content { + min-height: 34px; + /* TODO: doesnt work well in quirksmode */ + _height: 34px; +} +/* divider (between all-day and slots) */ +.fc-agenda-divider-inner { + height: 2px; + overflow: hidden; +} +.fc-widget-header .fc-agenda-divider-inner { + background: #eee; +} +/* slot rows */ +.fc-agenda-slots th { + border-width: 1px 1px 0; +} +.fc-agenda-slots td { + border-width: 1px 0 0; + background: none; +} +.fc-agenda-slots td div { + height: 20px; +} +.fc-agenda-slots tr.fc-slot0 th, +.fc-agenda-slots tr.fc-slot0 td { + border-top-width: 0; +} +.fc-agenda-slots tr.fc-minor th, +.fc-agenda-slots tr.fc-minor td { + border-top-style: dotted; +} +.fc-agenda-slots tr.fc-minor th.ui-widget-header { + *border-top-style: solid; + /* doesn't work with background in IE6/7 */ +} +/* Vertical Events +------------------------------------------------------------------------*/ +.fc-event-vert { + border-width: 0 1px; +} +.fc-event-vert.fc-event-start { + border-top-width: 1px; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.fc-event-vert.fc-event-end { + border-bottom-width: 1px; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; +} +.fc-event-vert .fc-event-time { + white-space: nowrap; + font-size: 10px; +} +.fc-event-vert .fc-event-inner { + position: relative; + z-index: 2; +} +.fc-event-vert .fc-event-bg { + /* makes the event lighter w/ a semi-transparent overlay */ + position: absolute; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: #fff; + opacity: .25; + filter: alpha(opacity=25); +} +.fc .ui-draggable-dragging .fc-event-bg, +.fc-select-helper .fc-event-bg { + display: none\9; + /* for IE6/7/8. nested opacity filters while dragging don't work */ +} +/* resizable */ +.fc-event-vert .ui-resizable-s { + bottom: 0 !important; + /* importants override pre jquery ui 1.7 styles */ + width: 100% !important; + height: 8px !important; + overflow: hidden !important; + line-height: 8px !important; + font-size: 11px !important; + font-family: monospace; + text-align: center; + cursor: s-resize; +} +.fc-agenda .ui-resizable-resizing { + /* TODO: better selector */ + _overflow: hidden; +} +/*! + * Datetimepicker for Bootstrap v3 +//! version : 3.1.1 + * https://github.com/Eonasdan/bootstrap-datetimepicker/ + */ +.bootstrap-datetimepicker-widget { + top: 0; + left: 0; + width: 250px; + padding: 4px; + margin-top: 1px; + z-index: 99999 !important; + border-radius: 4px; +} +.bootstrap-datetimepicker-widget.timepicker-sbs { + width: 600px; +} +.bootstrap-datetimepicker-widget.bottom:before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #ccc; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; + top: -7px; + left: 7px; +} +.bootstrap-datetimepicker-widget.bottom:after { + content: ''; + display: inline-block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid white; + position: absolute; + top: -6px; + left: 8px; +} +.bootstrap-datetimepicker-widget.top:before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-top: 7px solid #ccc; + border-top-color: rgba(0, 0, 0, 0.2); + position: absolute; + bottom: -7px; + left: 6px; +} +.bootstrap-datetimepicker-widget.top:after { + content: ''; + display: inline-block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-top: 6px solid white; + position: absolute; + bottom: -6px; + left: 7px; +} +.bootstrap-datetimepicker-widget .dow { + width: 14.2857%; +} +.bootstrap-datetimepicker-widget.pull-right:before { + left: auto; + right: 6px; +} +.bootstrap-datetimepicker-widget.pull-right:after { + left: auto; + right: 7px; +} +.bootstrap-datetimepicker-widget > ul { + list-style-type: none; + margin: 0; +} +.bootstrap-datetimepicker-widget a[data-action] { + padding: 6px 0; +} +.bootstrap-datetimepicker-widget .timepicker-hour, +.bootstrap-datetimepicker-widget .timepicker-minute, +.bootstrap-datetimepicker-widget .timepicker-second { + width: 54px; + font-weight: bold; + font-size: 1.2em; + margin: 0; +} +.bootstrap-datetimepicker-widget button[data-action] { + padding: 6px; +} +.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator { + width: 4px; + padding: 0; + margin: 0; +} +.bootstrap-datetimepicker-widget .datepicker > div { + display: none; +} +.bootstrap-datetimepicker-widget .picker-switch { + text-align: center; +} +.bootstrap-datetimepicker-widget table { + width: 100%; + margin: 0; +} +.bootstrap-datetimepicker-widget td, +.bootstrap-datetimepicker-widget th { + text-align: center; + border-radius: 4px; +} +.bootstrap-datetimepicker-widget td { + height: 54px; + line-height: 54px; + width: 54px; +} +.bootstrap-datetimepicker-widget td.cw { + font-size: 10px; + height: 20px; + line-height: 20px; + color: #777777; +} +.bootstrap-datetimepicker-widget td.day { + height: 20px; + line-height: 20px; + width: 20px; +} +.bootstrap-datetimepicker-widget td.day:hover, +.bootstrap-datetimepicker-widget td.hour:hover, +.bootstrap-datetimepicker-widget td.minute:hover, +.bootstrap-datetimepicker-widget td.second:hover { + background: #eeeeee; + cursor: pointer; +} +.bootstrap-datetimepicker-widget td.old, +.bootstrap-datetimepicker-widget td.new { + color: #777777; +} +.bootstrap-datetimepicker-widget td.today { + position: relative; +} +.bootstrap-datetimepicker-widget td.today:before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-bottom: 7px solid #428bca; + border-top-color: rgba(0, 0, 0, 0.2); + position: absolute; + bottom: 4px; + right: 4px; +} +.bootstrap-datetimepicker-widget td.active, +.bootstrap-datetimepicker-widget td.active:hover { + background-color: #428bca; + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} +.bootstrap-datetimepicker-widget td.active.today:before { + border-bottom-color: #fff; +} +.bootstrap-datetimepicker-widget td.disabled, +.bootstrap-datetimepicker-widget td.disabled:hover { + background: none; + color: #777777; + cursor: not-allowed; +} +.bootstrap-datetimepicker-widget td span { + display: inline-block; + width: 54px; + height: 54px; + line-height: 54px; + margin: 2px 1.5px; + cursor: pointer; + border-radius: 4px; +} +.bootstrap-datetimepicker-widget td span:hover { + background: #eeeeee; +} +.bootstrap-datetimepicker-widget td span.active { + background-color: #428bca; + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} +.bootstrap-datetimepicker-widget td span.old { + color: #777777; +} +.bootstrap-datetimepicker-widget td span.disabled, +.bootstrap-datetimepicker-widget td span.disabled:hover { + background: none; + color: #777777; + cursor: not-allowed; +} +.bootstrap-datetimepicker-widget th { + height: 20px; + line-height: 20px; + width: 20px; +} +.bootstrap-datetimepicker-widget th.picker-switch { + width: 145px; +} +.bootstrap-datetimepicker-widget th.next, +.bootstrap-datetimepicker-widget th.prev { + font-size: 21px; +} +.bootstrap-datetimepicker-widget th.disabled, +.bootstrap-datetimepicker-widget th.disabled:hover { + background: none; + color: #777777; + cursor: not-allowed; +} +.bootstrap-datetimepicker-widget thead tr:first-child th { + cursor: pointer; +} +.bootstrap-datetimepicker-widget thead tr:first-child th:hover { + background: #eeeeee; +} +.input-group.date .input-group-addon span { + display: block; + cursor: pointer; + width: 16px; + height: 16px; +} +.bootstrap-datetimepicker-widget.left-oriented:before { + left: auto; + right: 6px; +} +.bootstrap-datetimepicker-widget.left-oriented:after { + left: auto; + right: 7px; +} +.bootstrap-datetimepicker-widget ul.list-unstyled li div.timepicker div.timepicker-picker table.table-condensed tbody > tr > td { + padding: 0px !important; +} +@media screen and (max-width: 767px) { + .bootstrap-datetimepicker-widget.timepicker-sbs { + width: 283px; + } +} +/*! +Animate.css - http://daneden.me/animate +Licensed under the MIT license + +Copyright (c) 2013 Daniel Eden + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*/ +.animated { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} +.animated.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; +} +.animated.hinge { + -webkit-animation-duration: 2s; + animation-duration: 2s; +} +@-webkit-keyframes bounce { + 0%, + 20%, + 50%, + 80%, + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 40% { + -webkit-transform: translateY(-30px); + transform: translateY(-30px); + } + 60% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } +} +@keyframes bounce { + 0%, + 20%, + 50%, + 80%, + 100% { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } + 40% { + -webkit-transform: translateY(-30px); + -ms-transform: translateY(-30px); + transform: translateY(-30px); + } + 60% { + -webkit-transform: translateY(-15px); + -ms-transform: translateY(-15px); + transform: translateY(-15px); + } +} +.bounce { + -webkit-animation-name: bounce; + animation-name: bounce; +} +@-webkit-keyframes flash { + 0%, + 50%, + 100% { + opacity: 1; + } + 25%, + 75% { + opacity: 0; + } +} +@keyframes flash { + 0%, + 50%, + 100% { + opacity: 1; + } + 25%, + 75% { + opacity: 0; + } +} +.flash { + -webkit-animation-name: flash; + animation-name: flash; +} +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes pulse { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 50% { + -webkit-transform: scale(1.1); + transform: scale(1.1); + } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + } +} +@keyframes pulse { + 0% { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } + 50% { + -webkit-transform: scale(1.1); + -ms-transform: scale(1.1); + transform: scale(1.1); + } + 100% { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } +} +.pulse { + -webkit-animation-name: pulse; + animation-name: pulse; +} +@-webkit-keyframes rubberBand { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 30% { + -webkit-transform: scaleX(1.25) scaleY(0.75); + transform: scaleX(1.25) scaleY(0.75); + } + 40% { + -webkit-transform: scaleX(0.75) scaleY(1.25); + transform: scaleX(0.75) scaleY(1.25); + } + 60% { + -webkit-transform: scaleX(1.15) scaleY(0.85); + transform: scaleX(1.15) scaleY(0.85); + } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + } +} +@keyframes rubberBand { + 0% { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } + 30% { + -webkit-transform: scaleX(1.25) scaleY(0.75); + -ms-transform: scaleX(1.25) scaleY(0.75); + transform: scaleX(1.25) scaleY(0.75); + } + 40% { + -webkit-transform: scaleX(0.75) scaleY(1.25); + -ms-transform: scaleX(0.75) scaleY(1.25); + transform: scaleX(0.75) scaleY(1.25); + } + 60% { + -webkit-transform: scaleX(1.15) scaleY(0.85); + -ms-transform: scaleX(1.15) scaleY(0.85); + transform: scaleX(1.15) scaleY(0.85); + } + 100% { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } +} +.rubberBand { + -webkit-animation-name: rubberBand; + animation-name: rubberBand; +} +@-webkit-keyframes shake { + 0%, + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); + } + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translateX(10px); + transform: translateX(10px); + } +} +@keyframes shake { + 0%, + 100% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translateX(-10px); + -ms-transform: translateX(-10px); + transform: translateX(-10px); + } + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translateX(10px); + -ms-transform: translateX(10px); + transform: translateX(10px); + } +} +.shake { + -webkit-animation-name: shake; + animation-name: shake; +} +@-webkit-keyframes swing { + 20% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); + } + 40% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); + } + 60% { + -webkit-transform: rotate(5deg); + transform: rotate(5deg); + } + 80% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg); + } + 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@keyframes swing { + 20% { + -webkit-transform: rotate(15deg); + -ms-transform: rotate(15deg); + transform: rotate(15deg); + } + 40% { + -webkit-transform: rotate(-10deg); + -ms-transform: rotate(-10deg); + transform: rotate(-10deg); + } + 60% { + -webkit-transform: rotate(5deg); + -ms-transform: rotate(5deg); + transform: rotate(5deg); + } + 80% { + -webkit-transform: rotate(-5deg); + -ms-transform: rotate(-5deg); + transform: rotate(-5deg); + } + 100% { + -webkit-transform: rotate(0deg); + -ms-transform: rotate(0deg); + transform: rotate(0deg); + } +} +.swing { + -webkit-transform-origin: top center; + -ms-transform-origin: top center; + transform-origin: top center; + -webkit-animation-name: swing; + animation-name: swing; +} +@-webkit-keyframes tada { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 10%, + 20% { + -webkit-transform: scale(0.9) rotate(-3deg); + transform: scale(0.9) rotate(-3deg); + } + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); + } + 40%, + 60%, + 80% { + -webkit-transform: scale(1.1) rotate(-3deg); + transform: scale(1.1) rotate(-3deg); + } + 100% { + -webkit-transform: scale(1) rotate(0); + transform: scale(1) rotate(0); + } +} +@keyframes tada { + 0% { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } + 10%, + 20% { + -webkit-transform: scale(0.9) rotate(-3deg); + -ms-transform: scale(0.9) rotate(-3deg); + transform: scale(0.9) rotate(-3deg); + } + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale(1.1) rotate(3deg); + -ms-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); + } + 40%, + 60%, + 80% { + -webkit-transform: scale(1.1) rotate(-3deg); + -ms-transform: scale(1.1) rotate(-3deg); + transform: scale(1.1) rotate(-3deg); + } + 100% { + -webkit-transform: scale(1) rotate(0); + -ms-transform: scale(1) rotate(0); + transform: scale(1) rotate(0); + } +} +.tada { + -webkit-animation-name: tada; + animation-name: tada; +} +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes wobble { + 0% { + -webkit-transform: translateX(0%); + transform: translateX(0%); + } + 15% { + -webkit-transform: translateX(-25%) rotate(-5deg); + transform: translateX(-25%) rotate(-5deg); + } + 30% { + -webkit-transform: translateX(20%) rotate(3deg); + transform: translateX(20%) rotate(3deg); + } + 45% { + -webkit-transform: translateX(-15%) rotate(-3deg); + transform: translateX(-15%) rotate(-3deg); + } + 60% { + -webkit-transform: translateX(10%) rotate(2deg); + transform: translateX(10%) rotate(2deg); + } + 75% { + -webkit-transform: translateX(-5%) rotate(-1deg); + transform: translateX(-5%) rotate(-1deg); + } + 100% { + -webkit-transform: translateX(0%); + transform: translateX(0%); + } +} +@keyframes wobble { + 0% { + -webkit-transform: translateX(0%); + -ms-transform: translateX(0%); + transform: translateX(0%); + } + 15% { + -webkit-transform: translateX(-25%) rotate(-5deg); + -ms-transform: translateX(-25%) rotate(-5deg); + transform: translateX(-25%) rotate(-5deg); + } + 30% { + -webkit-transform: translateX(20%) rotate(3deg); + -ms-transform: translateX(20%) rotate(3deg); + transform: translateX(20%) rotate(3deg); + } + 45% { + -webkit-transform: translateX(-15%) rotate(-3deg); + -ms-transform: translateX(-15%) rotate(-3deg); + transform: translateX(-15%) rotate(-3deg); + } + 60% { + -webkit-transform: translateX(10%) rotate(2deg); + -ms-transform: translateX(10%) rotate(2deg); + transform: translateX(10%) rotate(2deg); + } + 75% { + -webkit-transform: translateX(-5%) rotate(-1deg); + -ms-transform: translateX(-5%) rotate(-1deg); + transform: translateX(-5%) rotate(-1deg); + } + 100% { + -webkit-transform: translateX(0%); + -ms-transform: translateX(0%); + transform: translateX(0%); + } +} +.wobble { + -webkit-animation-name: wobble; + animation-name: wobble; +} +@-webkit-keyframes bounceIn { + 0% { + opacity: 0; + -webkit-transform: scale(0.3); + transform: scale(0.3); + } + 50% { + opacity: 1; + -webkit-transform: scale(1.05); + transform: scale(1.05); + } + 70% { + -webkit-transform: scale(0.9); + transform: scale(0.9); + } + 100% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } +} +@keyframes bounceIn { + 0% { + opacity: 0; + -webkit-transform: scale(0.3); + -ms-transform: scale(0.3); + transform: scale(0.3); + } + 50% { + opacity: 1; + -webkit-transform: scale(1.05); + -ms-transform: scale(1.05); + transform: scale(1.05); + } + 70% { + -webkit-transform: scale(0.9); + -ms-transform: scale(0.9); + transform: scale(0.9); + } + 100% { + opacity: 1; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } +} +.bounceIn { + -webkit-animation-name: bounceIn; + animation-name: bounceIn; +} +@-webkit-keyframes bounceInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); + } + 60% { + opacity: 1; + -webkit-transform: translateY(30px); + transform: translateY(30px); + } + 80% { + -webkit-transform: translateY(-10px); + transform: translateY(-10px); + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes bounceInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + -ms-transform: translateY(-2000px); + transform: translateY(-2000px); + } + 60% { + opacity: 1; + -webkit-transform: translateY(30px); + -ms-transform: translateY(30px); + transform: translateY(30px); + } + 80% { + -webkit-transform: translateY(-10px); + -ms-transform: translateY(-10px); + transform: translateY(-10px); + } + 100% { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +.bounceInDown { + -webkit-animation-name: bounceInDown; + animation-name: bounceInDown; +} +@-webkit-keyframes bounceInLeft { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); + } + 60% { + opacity: 1; + -webkit-transform: translateX(30px); + transform: translateX(30px); + } + 80% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); + } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +@keyframes bounceInLeft { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + -ms-transform: translateX(-2000px); + transform: translateX(-2000px); + } + 60% { + opacity: 1; + -webkit-transform: translateX(30px); + -ms-transform: translateX(30px); + transform: translateX(30px); + } + 80% { + -webkit-transform: translateX(-10px); + -ms-transform: translateX(-10px); + transform: translateX(-10px); + } + 100% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } +} +.bounceInLeft { + -webkit-animation-name: bounceInLeft; + animation-name: bounceInLeft; +} +@-webkit-keyframes bounceInRight { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); + } + 60% { + opacity: 1; + -webkit-transform: translateX(-30px); + transform: translateX(-30px); + } + 80% { + -webkit-transform: translateX(10px); + transform: translateX(10px); + } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +@keyframes bounceInRight { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + -ms-transform: translateX(2000px); + transform: translateX(2000px); + } + 60% { + opacity: 1; + -webkit-transform: translateX(-30px); + -ms-transform: translateX(-30px); + transform: translateX(-30px); + } + 80% { + -webkit-transform: translateX(10px); + -ms-transform: translateX(10px); + transform: translateX(10px); + } + 100% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } +} +.bounceInRight { + -webkit-animation-name: bounceInRight; + animation-name: bounceInRight; +} +@-webkit-keyframes bounceInUp { + 0% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); + } + 60% { + opacity: 1; + -webkit-transform: translateY(-30px); + transform: translateY(-30px); + } + 80% { + -webkit-transform: translateY(10px); + transform: translateY(10px); + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes bounceInUp { + 0% { + opacity: 0; + -webkit-transform: translateY(2000px); + -ms-transform: translateY(2000px); + transform: translateY(2000px); + } + 60% { + opacity: 1; + -webkit-transform: translateY(-30px); + -ms-transform: translateY(-30px); + transform: translateY(-30px); + } + 80% { + -webkit-transform: translateY(10px); + -ms-transform: translateY(10px); + transform: translateY(10px); + } + 100% { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +.bounceInUp { + -webkit-animation-name: bounceInUp; + animation-name: bounceInUp; +} +@-webkit-keyframes bounceOut { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 25% { + -webkit-transform: scale(0.95); + transform: scale(0.95); + } + 50% { + opacity: 1; + -webkit-transform: scale(1.1); + transform: scale(1.1); + } + 100% { + opacity: 0; + -webkit-transform: scale(0.3); + transform: scale(0.3); + } +} +@keyframes bounceOut { + 0% { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } + 25% { + -webkit-transform: scale(0.95); + -ms-transform: scale(0.95); + transform: scale(0.95); + } + 50% { + opacity: 1; + -webkit-transform: scale(1.1); + -ms-transform: scale(1.1); + transform: scale(1.1); + } + 100% { + opacity: 0; + -webkit-transform: scale(0.3); + -ms-transform: scale(0.3); + transform: scale(0.3); + } +} +.bounceOut { + -webkit-animation-name: bounceOut; + animation-name: bounceOut; +} +@-webkit-keyframes bounceOutDown { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 20% { + opacity: 1; + -webkit-transform: translateY(-20px); + transform: translateY(-20px); + } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); + } +} +@keyframes bounceOutDown { + 0% { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } + 20% { + opacity: 1; + -webkit-transform: translateY(-20px); + -ms-transform: translateY(-20px); + transform: translateY(-20px); + } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + -ms-transform: translateY(2000px); + transform: translateY(2000px); + } +} +.bounceOutDown { + -webkit-animation-name: bounceOutDown; + animation-name: bounceOutDown; +} +@-webkit-keyframes bounceOutLeft { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + 20% { + opacity: 1; + -webkit-transform: translateX(20px); + transform: translateX(20px); + } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); + } +} +@keyframes bounceOutLeft { + 0% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + 20% { + opacity: 1; + -webkit-transform: translateX(20px); + -ms-transform: translateX(20px); + transform: translateX(20px); + } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + -ms-transform: translateX(-2000px); + transform: translateX(-2000px); + } +} +.bounceOutLeft { + -webkit-animation-name: bounceOutLeft; + animation-name: bounceOutLeft; +} +@-webkit-keyframes bounceOutRight { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + 20% { + opacity: 1; + -webkit-transform: translateX(-20px); + transform: translateX(-20px); + } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); + } +} +@keyframes bounceOutRight { + 0% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + 20% { + opacity: 1; + -webkit-transform: translateX(-20px); + -ms-transform: translateX(-20px); + transform: translateX(-20px); + } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + -ms-transform: translateX(2000px); + transform: translateX(2000px); + } +} +.bounceOutRight { + -webkit-animation-name: bounceOutRight; + animation-name: bounceOutRight; +} +@-webkit-keyframes bounceOutUp { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 20% { + opacity: 1; + -webkit-transform: translateY(20px); + transform: translateY(20px); + } + 100% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); + } +} +@keyframes bounceOutUp { + 0% { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } + 20% { + opacity: 1; + -webkit-transform: translateY(20px); + -ms-transform: translateY(20px); + transform: translateY(20px); + } + 100% { + opacity: 0; + -webkit-transform: translateY(-2000px); + -ms-transform: translateY(-2000px); + transform: translateY(-2000px); + } +} +.bounceOutUp { + -webkit-animation-name: bounceOutUp; + animation-name: bounceOutUp; +} +@-webkit-keyframes fadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +.fadeIn { + -webkit-animation-name: fadeIn; + animation-name: fadeIn; +} +@-webkit-keyframes fadeInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-20px); + transform: translateY(-20px); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes fadeInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-20px); + -ms-transform: translateY(-20px); + transform: translateY(-20px); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +.fadeInDown { + -webkit-animation-name: fadeInDown; + animation-name: fadeInDown; +} +@-webkit-keyframes fadeInDownBig { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes fadeInDownBig { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + -ms-transform: translateY(-2000px); + transform: translateY(-2000px); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +.fadeInDownBig { + -webkit-animation-name: fadeInDownBig; + animation-name: fadeInDownBig; +} +@-webkit-keyframes fadeInLeft { + 0% { + opacity: 0; + -webkit-transform: translateX(-20px); + transform: translateX(-20px); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +@keyframes fadeInLeft { + 0% { + opacity: 0; + -webkit-transform: translateX(-20px); + -ms-transform: translateX(-20px); + transform: translateX(-20px); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } +} +.fadeInLeft { + -webkit-animation-name: fadeInLeft; + animation-name: fadeInLeft; +} +@-webkit-keyframes fadeInLeftBig { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +@keyframes fadeInLeftBig { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + -ms-transform: translateX(-2000px); + transform: translateX(-2000px); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } +} +.fadeInLeftBig { + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig; +} +@-webkit-keyframes fadeInRight { + 0% { + opacity: 0; + -webkit-transform: translateX(20px); + transform: translateX(20px); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +@keyframes fadeInRight { + 0% { + opacity: 0; + -webkit-transform: translateX(20px); + -ms-transform: translateX(20px); + transform: translateX(20px); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } +} +.fadeInRight { + -webkit-animation-name: fadeInRight; + animation-name: fadeInRight; +} +@-webkit-keyframes fadeInRightBig { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +@keyframes fadeInRightBig { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + -ms-transform: translateX(2000px); + transform: translateX(2000px); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } +} +.fadeInRightBig { + -webkit-animation-name: fadeInRightBig; + animation-name: fadeInRightBig; +} +@-webkit-keyframes fadeInUp { + 0% { + opacity: 0; + -webkit-transform: translateY(20px); + transform: translateY(20px); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes fadeInUp { + 0% { + opacity: 0; + -webkit-transform: translateY(20px); + -ms-transform: translateY(20px); + transform: translateY(20px); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; +} +@-webkit-keyframes fadeInUpBig { + 0% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes fadeInUpBig { + 0% { + opacity: 0; + -webkit-transform: translateY(2000px); + -ms-transform: translateY(2000px); + transform: translateY(2000px); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +.fadeInUpBig { + -webkit-animation-name: fadeInUpBig; + animation-name: fadeInUpBig; +} +@-webkit-keyframes fadeOut { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} +@keyframes fadeOut { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; +} +@-webkit-keyframes fadeOutDown { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(20px); + transform: translateY(20px); + } +} +@keyframes fadeOutDown { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(20px); + -ms-transform: translateY(20px); + transform: translateY(20px); + } +} +.fadeOutDown { + -webkit-animation-name: fadeOutDown; + animation-name: fadeOutDown; +} +@-webkit-keyframes fadeOutDownBig { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); + } +} +@keyframes fadeOutDownBig { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + -ms-transform: translateY(2000px); + transform: translateY(2000px); + } +} +.fadeOutDownBig { + -webkit-animation-name: fadeOutDownBig; + animation-name: fadeOutDownBig; +} +@-webkit-keyframes fadeOutLeft { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(-20px); + transform: translateX(-20px); + } +} +@keyframes fadeOutLeft { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(-20px); + -ms-transform: translateX(-20px); + transform: translateX(-20px); + } +} +.fadeOutLeft { + -webkit-animation-name: fadeOutLeft; + animation-name: fadeOutLeft; +} +@-webkit-keyframes fadeOutLeftBig { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); + } +} +@keyframes fadeOutLeftBig { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + -ms-transform: translateX(-2000px); + transform: translateX(-2000px); + } +} +.fadeOutLeftBig { + -webkit-animation-name: fadeOutLeftBig; + animation-name: fadeOutLeftBig; +} +@-webkit-keyframes fadeOutRight { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(20px); + transform: translateX(20px); + } +} +@keyframes fadeOutRight { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(20px); + -ms-transform: translateX(20px); + transform: translateX(20px); + } +} +.fadeOutRight { + -webkit-animation-name: fadeOutRight; + animation-name: fadeOutRight; +} +@-webkit-keyframes fadeOutRightBig { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); + } +} +@keyframes fadeOutRightBig { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + -ms-transform: translateX(2000px); + transform: translateX(2000px); + } +} +.fadeOutRightBig { + -webkit-animation-name: fadeOutRightBig; + animation-name: fadeOutRightBig; +} +@-webkit-keyframes fadeOutUp { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(-20px); + transform: translateY(-20px); + } +} +@keyframes fadeOutUp { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(-20px); + -ms-transform: translateY(-20px); + transform: translateY(-20px); + } +} +.fadeOutUp { + -webkit-animation-name: fadeOutUp; + animation-name: fadeOutUp; +} +@-webkit-keyframes fadeOutUpBig { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); + } +} +@keyframes fadeOutUpBig { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(-2000px); + -ms-transform: translateY(-2000px); + transform: translateY(-2000px); + } +} +.fadeOutUpBig { + -webkit-animation-name: fadeOutUpBig; + animation-name: fadeOutUpBig; +} +@-webkit-keyframes flip { + 0% { + -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); + transform: perspective(400px) translateZ(0) rotateY(0) scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 40% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); + transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 50% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 80% { + -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); + transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 100% { + -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); + transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} +@keyframes flip { + 0% { + -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); + -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); + transform: perspective(400px) translateZ(0) rotateY(0) scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 40% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); + -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); + transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 50% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 80% { + -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); + -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); + transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 100% { + -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); + -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); + transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} +.animated.flip { + -webkit-backface-visibility: visible; + -ms-backface-visibility: visible; + backface-visibility: visible; + -webkit-animation-name: flip; + animation-name: flip; +} +@-webkit-keyframes flipInX { + 0% { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + opacity: 0; + } + 40% { + -webkit-transform: perspective(400px) rotateX(-10deg); + transform: perspective(400px) rotateX(-10deg); + } + 70% { + -webkit-transform: perspective(400px) rotateX(10deg); + transform: perspective(400px) rotateX(10deg); + } + 100% { + -webkit-transform: perspective(400px) rotateX(0deg); + transform: perspective(400px) rotateX(0deg); + opacity: 1; + } +} +@keyframes flipInX { + 0% { + -webkit-transform: perspective(400px) rotateX(90deg); + -ms-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + opacity: 0; + } + 40% { + -webkit-transform: perspective(400px) rotateX(-10deg); + -ms-transform: perspective(400px) rotateX(-10deg); + transform: perspective(400px) rotateX(-10deg); + } + 70% { + -webkit-transform: perspective(400px) rotateX(10deg); + -ms-transform: perspective(400px) rotateX(10deg); + transform: perspective(400px) rotateX(10deg); + } + 100% { + -webkit-transform: perspective(400px) rotateX(0deg); + -ms-transform: perspective(400px) rotateX(0deg); + transform: perspective(400px) rotateX(0deg); + opacity: 1; + } +} +.flipInX { + -webkit-backface-visibility: visible !important; + -ms-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInX; + animation-name: flipInX; +} +@-webkit-keyframes flipInY { + 0% { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + opacity: 0; + } + 40% { + -webkit-transform: perspective(400px) rotateY(-10deg); + transform: perspective(400px) rotateY(-10deg); + } + 70% { + -webkit-transform: perspective(400px) rotateY(10deg); + transform: perspective(400px) rotateY(10deg); + } + 100% { + -webkit-transform: perspective(400px) rotateY(0deg); + transform: perspective(400px) rotateY(0deg); + opacity: 1; + } +} +@keyframes flipInY { + 0% { + -webkit-transform: perspective(400px) rotateY(90deg); + -ms-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + opacity: 0; + } + 40% { + -webkit-transform: perspective(400px) rotateY(-10deg); + -ms-transform: perspective(400px) rotateY(-10deg); + transform: perspective(400px) rotateY(-10deg); + } + 70% { + -webkit-transform: perspective(400px) rotateY(10deg); + -ms-transform: perspective(400px) rotateY(10deg); + transform: perspective(400px) rotateY(10deg); + } + 100% { + -webkit-transform: perspective(400px) rotateY(0deg); + -ms-transform: perspective(400px) rotateY(0deg); + transform: perspective(400px) rotateY(0deg); + opacity: 1; + } +} +.flipInY { + -webkit-backface-visibility: visible !important; + -ms-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInY; + animation-name: flipInY; +} +@-webkit-keyframes flipOutX { + 0% { + -webkit-transform: perspective(400px) rotateX(0deg); + transform: perspective(400px) rotateX(0deg); + opacity: 1; + } + 100% { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + opacity: 0; + } +} +@keyframes flipOutX { + 0% { + -webkit-transform: perspective(400px) rotateX(0deg); + -ms-transform: perspective(400px) rotateX(0deg); + transform: perspective(400px) rotateX(0deg); + opacity: 1; + } + 100% { + -webkit-transform: perspective(400px) rotateX(90deg); + -ms-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + opacity: 0; + } +} +.flipOutX { + -webkit-animation-name: flipOutX; + animation-name: flipOutX; + -webkit-backface-visibility: visible !important; + -ms-backface-visibility: visible !important; + backface-visibility: visible !important; +} +@-webkit-keyframes flipOutY { + 0% { + -webkit-transform: perspective(400px) rotateY(0deg); + transform: perspective(400px) rotateY(0deg); + opacity: 1; + } + 100% { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + opacity: 0; + } +} +@keyframes flipOutY { + 0% { + -webkit-transform: perspective(400px) rotateY(0deg); + -ms-transform: perspective(400px) rotateY(0deg); + transform: perspective(400px) rotateY(0deg); + opacity: 1; + } + 100% { + -webkit-transform: perspective(400px) rotateY(90deg); + -ms-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + opacity: 0; + } +} +.flipOutY { + -webkit-backface-visibility: visible !important; + -ms-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipOutY; + animation-name: flipOutY; +} +@-webkit-keyframes lightSpeedIn { + 0% { + -webkit-transform: translateX(100%) skewX(-30deg); + transform: translateX(100%) skewX(-30deg); + opacity: 0; + } + 60% { + -webkit-transform: translateX(-20%) skewX(30deg); + transform: translateX(-20%) skewX(30deg); + opacity: 1; + } + 80% { + -webkit-transform: translateX(0%) skewX(-15deg); + transform: translateX(0%) skewX(-15deg); + opacity: 1; + } + 100% { + -webkit-transform: translateX(0%) skewX(0deg); + transform: translateX(0%) skewX(0deg); + opacity: 1; + } +} +@keyframes lightSpeedIn { + 0% { + -webkit-transform: translateX(100%) skewX(-30deg); + -ms-transform: translateX(100%) skewX(-30deg); + transform: translateX(100%) skewX(-30deg); + opacity: 0; + } + 60% { + -webkit-transform: translateX(-20%) skewX(30deg); + -ms-transform: translateX(-20%) skewX(30deg); + transform: translateX(-20%) skewX(30deg); + opacity: 1; + } + 80% { + -webkit-transform: translateX(0%) skewX(-15deg); + -ms-transform: translateX(0%) skewX(-15deg); + transform: translateX(0%) skewX(-15deg); + opacity: 1; + } + 100% { + -webkit-transform: translateX(0%) skewX(0deg); + -ms-transform: translateX(0%) skewX(0deg); + transform: translateX(0%) skewX(0deg); + opacity: 1; + } +} +.lightSpeedIn { + -webkit-animation-name: lightSpeedIn; + animation-name: lightSpeedIn; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; +} +@-webkit-keyframes lightSpeedOut { + 0% { + -webkit-transform: translateX(0%) skewX(0deg); + transform: translateX(0%) skewX(0deg); + opacity: 1; + } + 100% { + -webkit-transform: translateX(100%) skewX(-30deg); + transform: translateX(100%) skewX(-30deg); + opacity: 0; + } +} +@keyframes lightSpeedOut { + 0% { + -webkit-transform: translateX(0%) skewX(0deg); + -ms-transform: translateX(0%) skewX(0deg); + transform: translateX(0%) skewX(0deg); + opacity: 1; + } + 100% { + -webkit-transform: translateX(100%) skewX(-30deg); + -ms-transform: translateX(100%) skewX(-30deg); + transform: translateX(100%) skewX(-30deg); + opacity: 0; + } +} +.lightSpeedOut { + -webkit-animation-name: lightSpeedOut; + animation-name: lightSpeedOut; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; +} +@-webkit-keyframes rotateIn { + 0% { + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-transform: rotate(-200deg); + transform: rotate(-200deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +@keyframes rotateIn { + 0% { + -webkit-transform-origin: center center; + -ms-transform-origin: center center; + transform-origin: center center; + -webkit-transform: rotate(-200deg); + -ms-transform: rotate(-200deg); + transform: rotate(-200deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: center center; + -ms-transform-origin: center center; + transform-origin: center center; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +.rotateIn { + -webkit-animation-name: rotateIn; + animation-name: rotateIn; +} +@-webkit-keyframes rotateInDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +@keyframes rotateInDownLeft { + 0% { + -webkit-transform-origin: left bottom; + -ms-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: left bottom; + -ms-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +.rotateInDownLeft { + -webkit-animation-name: rotateInDownLeft; + animation-name: rotateInDownLeft; +} +@-webkit-keyframes rotateInDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +@keyframes rotateInDownRight { + 0% { + -webkit-transform-origin: right bottom; + -ms-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: right bottom; + -ms-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +.rotateInDownRight { + -webkit-animation-name: rotateInDownRight; + animation-name: rotateInDownRight; +} +@-webkit-keyframes rotateInUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +@keyframes rotateInUpLeft { + 0% { + -webkit-transform-origin: left bottom; + -ms-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: left bottom; + -ms-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +.rotateInUpLeft { + -webkit-animation-name: rotateInUpLeft; + animation-name: rotateInUpLeft; +} +@-webkit-keyframes rotateInUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +@keyframes rotateInUpRight { + 0% { + -webkit-transform-origin: right bottom; + -ms-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; + } + 100% { + -webkit-transform-origin: right bottom; + -ms-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } +} +.rotateInUpRight { + -webkit-animation-name: rotateInUpRight; + animation-name: rotateInUpRight; +} +@-webkit-keyframes rotateOut { + 0% { + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-transform: rotate(200deg); + transform: rotate(200deg); + opacity: 0; + } +} +@keyframes rotateOut { + 0% { + -webkit-transform-origin: center center; + -ms-transform-origin: center center; + transform-origin: center center; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: center center; + -ms-transform-origin: center center; + transform-origin: center center; + -webkit-transform: rotate(200deg); + -ms-transform: rotate(200deg); + transform: rotate(200deg); + opacity: 0; + } +} +.rotateOut { + -webkit-animation-name: rotateOut; + animation-name: rotateOut; +} +@-webkit-keyframes rotateOutDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; + } +} +@keyframes rotateOutDownLeft { + 0% { + -webkit-transform-origin: left bottom; + -ms-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: left bottom; + -ms-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; + } +} +.rotateOutDownLeft { + -webkit-animation-name: rotateOutDownLeft; + animation-name: rotateOutDownLeft; +} +@-webkit-keyframes rotateOutDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; + } +} +@keyframes rotateOutDownRight { + 0% { + -webkit-transform-origin: right bottom; + -ms-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: right bottom; + -ms-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; + } +} +.rotateOutDownRight { + -webkit-animation-name: rotateOutDownRight; + animation-name: rotateOutDownRight; +} +@-webkit-keyframes rotateOutUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; + } +} +@keyframes rotateOutUpLeft { + 0% { + -webkit-transform-origin: left bottom; + -ms-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: left bottom; + -ms-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; + } +} +.rotateOutUpLeft { + -webkit-animation-name: rotateOutUpLeft; + animation-name: rotateOutUpLeft; +} +@-webkit-keyframes rotateOutUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; + } +} +@keyframes rotateOutUpRight { + 0% { + -webkit-transform-origin: right bottom; + -ms-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: right bottom; + -ms-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; + } +} +.rotateOutUpRight { + -webkit-animation-name: rotateOutUpRight; + animation-name: rotateOutUpRight; +} +@-webkit-keyframes slideInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes slideInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + -ms-transform: translateY(-2000px); + transform: translateY(-2000px); + } + 100% { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +.slideInDown { + -webkit-animation-name: slideInDown; + animation-name: slideInDown; +} +@-webkit-keyframes slideInLeft { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); + } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +@keyframes slideInLeft { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + -ms-transform: translateX(-2000px); + transform: translateX(-2000px); + } + 100% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } +} +.slideInLeft { + -webkit-animation-name: slideInLeft; + animation-name: slideInLeft; +} +@-webkit-keyframes slideInRight { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); + } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +@keyframes slideInRight { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + -ms-transform: translateX(2000px); + transform: translateX(2000px); + } + 100% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } +} +.slideInRight { + -webkit-animation-name: slideInRight; + animation-name: slideInRight; +} +@-webkit-keyframes slideOutLeft { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); + } +} +@keyframes slideOutLeft { + 0% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + -ms-transform: translateX(-2000px); + transform: translateX(-2000px); + } +} +.slideOutLeft { + -webkit-animation-name: slideOutLeft; + animation-name: slideOutLeft; +} +@-webkit-keyframes slideOutRight { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); + } +} +@keyframes slideOutRight { + 0% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + -ms-transform: translateX(2000px); + transform: translateX(2000px); + } +} +.slideOutRight { + -webkit-animation-name: slideOutRight; + animation-name: slideOutRight; +} +@-webkit-keyframes slideOutUp { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); + } +} +@keyframes slideOutUp { + 0% { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(-2000px); + -ms-transform: translateY(-2000px); + transform: translateY(-2000px); + } +} +.slideOutUp { + -webkit-animation-name: slideOutUp; + animation-name: slideOutUp; +} +@-webkit-keyframes slideInUp { + 0% { + -webkit-transform: translateY(2000px); + transform: translateY(2000px); + } + 100% { + opacity: 0; + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes slideInUp { + 0% { + -webkit-transform: translateY(2000px); + -ms-transform: translateY(2000px); + transform: translateY(2000px); + } + 100% { + opacity: 0; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +.slideInUp { + -webkit-animation-name: slideInUp; + animation-name: slideInUp; +} +@-webkit-keyframes slideOutDown { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); + } +} +@keyframes slideOutDown { + 0% { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + -ms-transform: translateY(2000px); + transform: translateY(2000px); + } +} +.slideOutDown { + -webkit-animation-name: slideOutDown; + animation-name: slideOutDown; +} +@-webkit-keyframes hinge { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 20%, + 60% { + -webkit-transform: rotate(80deg); + transform: rotate(80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 40% { + -webkit-transform: rotate(60deg); + transform: rotate(60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 80% { + -webkit-transform: rotate(60deg) translateY(0); + transform: rotate(60deg) translateY(0); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + 100% { + -webkit-transform: translateY(700px); + transform: translateY(700px); + opacity: 0; + } +} +@keyframes hinge { + 0% { + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + -webkit-transform-origin: top left; + -ms-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 20%, + 60% { + -webkit-transform: rotate(80deg); + -ms-transform: rotate(80deg); + transform: rotate(80deg); + -webkit-transform-origin: top left; + -ms-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 40% { + -webkit-transform: rotate(60deg); + -ms-transform: rotate(60deg); + transform: rotate(60deg); + -webkit-transform-origin: top left; + -ms-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 80% { + -webkit-transform: rotate(60deg) translateY(0); + -ms-transform: rotate(60deg) translateY(0); + transform: rotate(60deg) translateY(0); + -webkit-transform-origin: top left; + -ms-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + 100% { + -webkit-transform: translateY(700px); + -ms-transform: translateY(700px); + transform: translateY(700px); + opacity: 0; + } +} +.hinge { + -webkit-animation-name: hinge; + animation-name: hinge; +} +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes rollIn { + 0% { + opacity: 0; + -webkit-transform: translateX(-100%) rotate(-120deg); + transform: translateX(-100%) rotate(-120deg); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0px) rotate(0deg); + transform: translateX(0px) rotate(0deg); + } +} +@keyframes rollIn { + 0% { + opacity: 0; + -webkit-transform: translateX(-100%) rotate(-120deg); + -ms-transform: translateX(-100%) rotate(-120deg); + transform: translateX(-100%) rotate(-120deg); + } + 100% { + opacity: 1; + -webkit-transform: translateX(0px) rotate(0deg); + -ms-transform: translateX(0px) rotate(0deg); + transform: translateX(0px) rotate(0deg); + } +} +.rollIn { + -webkit-animation-name: rollIn; + animation-name: rollIn; +} +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes rollOut { + 0% { + opacity: 1; + -webkit-transform: translateX(0px) rotate(0deg); + transform: translateX(0px) rotate(0deg); + } + 100% { + opacity: 0; + -webkit-transform: translateX(100%) rotate(120deg); + transform: translateX(100%) rotate(120deg); + } +} +@keyframes rollOut { + 0% { + opacity: 1; + -webkit-transform: translateX(0px) rotate(0deg); + -ms-transform: translateX(0px) rotate(0deg); + transform: translateX(0px) rotate(0deg); + } + 100% { + opacity: 0; + -webkit-transform: translateX(100%) rotate(120deg); + -ms-transform: translateX(100%) rotate(120deg); + transform: translateX(100%) rotate(120deg); + } +} +.rollOut { + -webkit-animation-name: rollOut; + animation-name: rollOut; +} +/*-- Chart --*/ +.c3 svg { + font: 10px sans-serif; +} +.c3 path, +.c3 line { + fill: none; + stroke: #000; +} +.c3 text { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; +} +.c3-legend-item-tile, +.c3-xgrid-focus, +.c3-ygrid, +.c3-event-rect, +.c3-bars path { + shape-rendering: crispEdges; +} +.c3-chart-arc path { + stroke: #fff; +} +.c3-chart-arc text { + fill: #fff; + font-size: 13px; +} +/*-- Axis --*/ +/*-- Grid --*/ +.c3-grid line { + stroke: #aaa; +} +.c3-grid text { + fill: #aaa; +} +.c3-xgrid, +.c3-ygrid { + stroke-dasharray: 3 3; +} +/*-- Text on Chart --*/ +.c3-text.c3-empty { + fill: #808080; + font-size: 2em; +} +/*-- Line --*/ +.c3-line { + stroke-width: 1px; +} +/*-- Point --*/ +.c3-circle._expanded_ { + stroke-width: 1px; + stroke: white; +} +.c3-selected-circle { + fill: white; + stroke-width: 2px; +} +/*-- Bar --*/ +.c3-bar { + stroke-width: 0; +} +.c3-bar._expanded_ { + fill-opacity: 0.75; +} +/*-- Focus --*/ +.c3-target.c3-focused { + opacity: 1; +} +.c3-target.c3-focused path.c3-line, +.c3-target.c3-focused path.c3-step { + stroke-width: 2px; +} +.c3-target.c3-defocused { + opacity: 0.3 !important; +} +/*-- Region --*/ +.c3-region { + fill: steelblue; + fill-opacity: 0.1; +} +/*-- Brush --*/ +.c3-brush .extent { + fill-opacity: 0.1; +} +/*-- Select - Drag --*/ +/*-- Legend --*/ +.c3-legend-item { + font-size: 12px; +} +.c3-legend-item-hidden { + opacity: 0.15; +} +.c3-legend-background { + opacity: 0.75; + fill: white; + stroke: lightgray; + stroke-width: 1; +} +/*-- Tooltip --*/ +.c3-tooltip-container { + z-index: 10; +} +.c3-tooltip { + border-collapse: collapse; + border-spacing: 0; + background-color: #fff; + empty-cells: show; + -webkit-box-shadow: 7px 7px 12px -9px #777777; + -moz-box-shadow: 7px 7px 12px -9px #777777; + box-shadow: 7px 7px 12px -9px #777777; + opacity: 0.9; +} +.c3-tooltip tr { + border: 1px solid #CCC; +} +.c3-tooltip th { + background-color: #aaa; + font-size: 14px; + padding: 2px 5px; + text-align: left; + color: #FFF; +} +.c3-tooltip td { + font-size: 13px; + padding: 3px 6px; + background-color: #fff; + border-left: 1px dotted #999; +} +.c3-tooltip td > span { + display: inline-block; + width: 10px; + height: 10px; + margin-right: 6px; +} +.c3-tooltip td.value { + text-align: right; +} +/*-- Area --*/ +.c3-area { + stroke-width: 0; + opacity: 0.2; +} +/*-- Arc --*/ +.c3-chart-arcs-title { + dominant-baseline: middle; + font-size: 1.3em; +} +.c3-chart-arcs .c3-chart-arcs-background { + fill: #e0e0e0; + stroke: none; +} +.c3-chart-arcs .c3-chart-arcs-gauge-unit { + fill: #000; + font-size: 16px; +} +.c3-chart-arcs .c3-chart-arcs-gauge-max { + fill: #777; +} +.c3-chart-arcs .c3-chart-arcs-gauge-min { + fill: #777; +} +.c3-chart-arc .c3-gauge-value { + fill: #000; + /* font-size: 28px !important;*/ +} +/* BASICS */ +.CodeMirror { + /* Set height, width, borders, and global font properties here */ + font-family: monospace; + height: 300px; +} +.CodeMirror-scroll { + /* Set scrolling behaviour here */ + overflow: auto; +} +/* PADDING */ +.CodeMirror-lines { + padding: 4px 0; + /* Vertical padding around content */ +} +.CodeMirror pre { + padding: 0 4px; + /* Horizontal padding of content */ +} +.CodeMirror-scrollbar-filler, +.CodeMirror-gutter-filler { + background-color: white; + /* The little square between H and V scrollbars */ +} +/* GUTTER */ +.CodeMirror-gutters { + border-right: 1px solid #ddd; + background-color: #f7f7f7; + white-space: nowrap; +} +.CodeMirror-linenumber { + padding: 0 3px 0 5px; + min-width: 20px; + text-align: right; + color: #999; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +.CodeMirror-guttermarker { + color: black; +} +.CodeMirror-guttermarker-subtle { + color: #999; +} +/* CURSOR */ +.CodeMirror div.CodeMirror-cursor { + border-left: 1px solid black; +} +/* Shown when moving in bi-directional text */ +.CodeMirror div.CodeMirror-secondarycursor { + border-left: 1px solid silver; +} +.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor { + width: auto; + border: 0; + background: #7e7; +} +.cm-animate-fat-cursor { + width: auto; + border: 0; + -webkit-animation: blink 1.06s steps(1) infinite; + -moz-animation: blink 1.06s steps(1) infinite; + animation: blink 1.06s steps(1) infinite; +} +@-moz-keyframes blink { + 0% { + background: #7e7; + } + 50% { + background: none; + } + 100% { + background: #7e7; + } +} +@-webkit-keyframes blink { + 0% { + background: #7e7; + } + 50% { + background: none; + } + 100% { + background: #7e7; + } +} +@keyframes blink { + 0% { + background: #7e7; + } + 50% { + background: none; + } + 100% { + background: #7e7; + } +} +/* Can style cursor different in overwrite (non-insert) mode */ +.cm-tab { + display: inline-block; +} +.CodeMirror-ruler { + border-left: 1px solid #ccc; + position: absolute; +} +/* DEFAULT THEME */ +.cm-s-default .cm-keyword { + color: #708; +} +.cm-s-default .cm-atom { + color: #219; +} +.cm-s-default .cm-number { + color: #164; +} +.cm-s-default .cm-def { + color: #00f; +} +.cm-s-default .cm-variable-2 { + color: #05a; +} +.cm-s-default .cm-variable-3 { + color: #085; +} +.cm-s-default .cm-comment { + color: #a50; +} +.cm-s-default .cm-string { + color: #a11; +} +.cm-s-default .cm-string-2 { + color: #f50; +} +.cm-s-default .cm-meta { + color: #555; +} +.cm-s-default .cm-qualifier { + color: #555; +} +.cm-s-default .cm-builtin { + color: #30a; +} +.cm-s-default .cm-bracket { + color: #997; +} +.cm-s-default .cm-tag { + color: #170; +} +.cm-s-default .cm-attribute { + color: #00c; +} +.cm-s-default .cm-header { + color: blue; +} +.cm-s-default .cm-quote { + color: #090; +} +.cm-s-default .cm-hr { + color: #999; +} +.cm-s-default .cm-link { + color: #00c; +} +.cm-negative { + color: #d44; +} +.cm-positive { + color: #292; +} +.cm-header, +.cm-strong { + font-weight: bold; +} +.cm-em { + font-style: italic; +} +.cm-link { + text-decoration: underline; +} +.cm-s-default .cm-error { + color: #f00; +} +.cm-invalidchar { + color: #f00; +} +/* Default styles for common addons */ +div.CodeMirror span.CodeMirror-matchingbracket { + color: #0f0; +} +div.CodeMirror span.CodeMirror-nonmatchingbracket { + color: #f22; +} +.CodeMirror-matchingtag { + background: rgba(255, 150, 0, 0.3); +} +.CodeMirror-activeline-background { + background: #e8f2ff; +} +/* STOP */ +/* The rest of this file contains styles related to the mechanics of + the editor. You probably shouldn't touch them. */ +.CodeMirror { + line-height: 1; + position: relative; + overflow: hidden; + background: white; + color: black; +} +.CodeMirror-scroll { + /* 30px is the magic margin used to hide the element's real scrollbars */ + /* See overflow: hidden in .CodeMirror */ + margin-bottom: -30px; + margin-right: -30px; + padding-bottom: 30px; + height: 100%; + outline: none; + /* Prevent dragging from highlighting the element */ + position: relative; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +.CodeMirror-sizer { + position: relative; + border-right: 30px solid transparent; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +/* The fake, visible scrollbars. Used to force redraw during scrolling + before actuall scrolling happens, thus preventing shaking and + flickering artifacts. */ +.CodeMirror-vscrollbar, +.CodeMirror-hscrollbar, +.CodeMirror-scrollbar-filler, +.CodeMirror-gutter-filler { + position: absolute; + z-index: 6; + display: none; +} +.CodeMirror-vscrollbar { + right: 0; + top: 0; + overflow-x: hidden; + overflow-y: scroll; +} +.CodeMirror-hscrollbar { + bottom: 0; + left: 0; + overflow-y: hidden; + overflow-x: scroll; +} +.CodeMirror-scrollbar-filler { + right: 0; + bottom: 0; +} +.CodeMirror-gutter-filler { + left: 0; + bottom: 0; +} +.CodeMirror-gutters { + position: absolute; + left: 0; + top: 0; + padding-bottom: 30px; + z-index: 3; +} +.CodeMirror-gutter { + white-space: normal; + height: 100%; + -moz-box-sizing: content-box; + box-sizing: content-box; + padding-bottom: 30px; + margin-bottom: -32px; + display: inline-block; + /* Hack to make IE7 behave */ + *zoom: 1; + *display: inline; +} +.CodeMirror-gutter-elt { + position: absolute; + cursor: default; + z-index: 4; +} +.CodeMirror-lines { + cursor: text; +} +.CodeMirror pre { + /* Reset some styles that the rest of the page might have set */ + -moz-border-radius: 0; + -webkit-border-radius: 0; + border-radius: 0; + border-width: 0; + background: transparent; + font-family: inherit; + font-size: inherit; + margin: 0; + white-space: pre; + word-wrap: normal; + line-height: inherit; + color: inherit; + z-index: 2; + position: relative; + overflow: visible; +} +.CodeMirror-wrap pre { + word-wrap: break-word; + white-space: pre-wrap; + word-break: normal; +} +.CodeMirror-linebackground { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + z-index: 0; +} +.CodeMirror-linewidget { + position: relative; + z-index: 2; + overflow: auto; +} +.CodeMirror-wrap .CodeMirror-scroll { + overflow-x: hidden; +} +.CodeMirror-measure { + position: absolute; + width: 100%; + height: 0; + overflow: hidden; + visibility: hidden; +} +.CodeMirror-measure pre { + position: static; +} +.CodeMirror div.CodeMirror-cursor { + position: absolute; + border-right: none; + width: 0; +} +div.CodeMirror-cursors { + visibility: hidden; + position: relative; + z-index: 1; +} +.CodeMirror-focused div.CodeMirror-cursors { + visibility: visible; +} +.CodeMirror-selected { + background: #d9d9d9; +} +.CodeMirror-focused .CodeMirror-selected { + background: #d7d4f0; +} +.CodeMirror-crosshair { + cursor: crosshair; +} +.cm-searching { + background: #ffa; + background: rgba(255, 255, 0, 0.4); +} +/* IE7 hack to prevent it from returning funny offsetTops on the spans */ +.CodeMirror span { + *vertical-align: text-bottom; +} +/* Used to force a border model for a node */ +.cm-force-border { + padding-right: .1px; +} +@media print { + /* Hide the cursor when printing */ + .CodeMirror div.CodeMirror-cursors { + visibility: hidden; + } +} +@font-face { + font-family: 'footable'; + src: url('fonts/footable.eot'); + src: url('fonts/footable.eot?#iefix') format('embedded-opentype'), url('fonts/footable.woff') format('woff'), url('fonts/footable.ttf') format('truetype'), url('fonts/footable.svg#footable') format('svg'); + font-weight: normal; + font-style: normal; +} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + @font-face { + font-family: 'footable'; + src: url('fonts/footable.svg#footable') format('svg'); + font-weight: normal; + font-style: normal; + } +} +.footable { + width: 100%; + /** SORTING **/ + /** PAGINATION **/ +} +.footable.breakpoint > tbody > tr.footable-detail-show > td { + border-bottom: none; +} +.footable.breakpoint > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e001"; +} +.footable.breakpoint > tbody > tr:hover:not(.footable-row-detail) { + cursor: pointer; +} +.footable.breakpoint > tbody > tr > td.footable-cell-detail { + background: #eee; + border-top: none; +} +.footable.breakpoint > tbody > tr > td > span.footable-toggle { + display: inline-block; + font-family: 'footable'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + -webkit-font-smoothing: antialiased; + padding-right: 5px; + font-size: 14px; + color: #888888; +} +.footable.breakpoint > tbody > tr > td > span.footable-toggle:before { + content: "\e000"; +} +.footable.breakpoint.toggle-circle > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e005"; +} +.footable.breakpoint.toggle-circle > tbody > tr > td > span.footable-toggle:before { + content: "\e004"; +} +.footable.breakpoint.toggle-circle-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e003"; +} +.footable.breakpoint.toggle-circle-filled > tbody > tr > td > span.footable-toggle:before { + content: "\e002"; +} +.footable.breakpoint.toggle-square > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e007"; +} +.footable.breakpoint.toggle-square > tbody > tr > td > span.footable-toggle:before { + content: "\e006"; +} +.footable.breakpoint.toggle-square-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e009"; +} +.footable.breakpoint.toggle-square-filled > tbody > tr > td > span.footable-toggle:before { + content: "\e008"; +} +.footable.breakpoint.toggle-arrow > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e00f"; +} +.footable.breakpoint.toggle-arrow > tbody > tr > td > span.footable-toggle:before { + content: "\e011"; +} +.footable.breakpoint.toggle-arrow-small > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e013"; +} +.footable.breakpoint.toggle-arrow-small > tbody > tr > td > span.footable-toggle:before { + content: "\e015"; +} +.footable.breakpoint.toggle-arrow-circle > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e01b"; +} +.footable.breakpoint.toggle-arrow-circle > tbody > tr > td > span.footable-toggle:before { + content: "\e01d"; +} +.footable.breakpoint.toggle-arrow-circle-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e00b"; +} +.footable.breakpoint.toggle-arrow-circle-filled > tbody > tr > td > span.footable-toggle:before { + content: "\e00d"; +} +.footable.breakpoint.toggle-arrow-tiny > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e01f"; +} +.footable.breakpoint.toggle-arrow-tiny > tbody > tr > td > span.footable-toggle:before { + content: "\e021"; +} +.footable.breakpoint.toggle-arrow-alt > tbody > tr.footable-detail-show > td > span.footable-toggle:before { + content: "\e017"; +} +.footable.breakpoint.toggle-arrow-alt > tbody > tr > td > span.footable-toggle:before { + content: "\e019"; +} +.footable.breakpoint.toggle-medium > tbody > tr > td > span.footable-toggle { + font-size: 18px; +} +.footable.breakpoint.toggle-large > tbody > tr > td > span.footable-toggle { + font-size: 24px; +} +.footable > thead > tr > th { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: -moz-none; + -ms-user-select: none; + user-select: none; +} +.footable > thead > tr > th.footable-sortable:hover { + cursor: pointer; +} +.footable > thead > tr > th.footable-sorted > span.footable-sort-indicator:before { + content: "\e013"; +} +.footable > thead > tr > th.footable-sorted-desc > span.footable-sort-indicator:before { + content: "\e012"; +} +.footable > thead > tr > th > span.footable-sort-indicator { + display: inline-block; + font-family: 'footable'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + -webkit-font-smoothing: antialiased; + padding-left: 5px; +} +.footable > thead > tr > th > span.footable-sort-indicator:before { + content: "\e022"; +} +.footable > tfoot .pagination { + margin: 0; +} +.footable.no-paging .hide-if-no-paging { + display: none; +} +.footable-row-detail-inner { + display: table; +} +.footable-row-detail-row { + display: table-row; + line-height: 1.5em; +} +.footable-row-detail-group { + display: block; + line-height: 2em; + font-size: 1.2em; + font-weight: bold; +} +.footable-row-detail-name { + display: table-cell; + font-weight: bold; + padding-right: 0.5em; +} +.footable-row-detail-value { + display: table-cell; +} +.footable-odd { + background-color: #f7f7f7; +} +/*! + * AdminLTE v1.0 + * Author: AlmsaeedStudio.com + * License: Open source - MIT + * Please visit http://opensource.org/licenses/MIT for more information +!*/ +/* + Core: General style +---------------------------- +*/ +html, +body { + overflow-x: hidden!important; + font-family: 'Source Sans Pro', sans-serif; + -webkit-font-smoothing: antialiased; + min-height: 100%; + background: #f9f9f9; +} +a { + color: #3c8dbc; +} +a:hover, +a:active, +a:focus { + outline: none; + text-decoration: none; + color: #72afd2; +} +/* Layouts */ +.wrapper { + min-height: 100%; +} +.wrapper:before, +.wrapper:after { + content: " "; + display: table; +} +.wrapper:after { + clear: both; +} +.wrapper:before, +.wrapper:after { + content: " "; + display: table; +} +.wrapper:after { + clear: both; +} +.wrapper:before, +.wrapper:after { + display: table; + content: " "; +} +.wrapper:after { + clear: both; +} +.wrapper:before, +.wrapper:after { + display: table; + content: " "; +} +.wrapper:after { + clear: both; +} +/* Header */ +body > .header { + position: absolute; + top: 0; + left: 0; + right: 0; + z-index: 1030; +} +/* Define 2 column template */ +.right-side, +.left-side { + min-height: 100%; + display: block; +} +/*right side - contins main content*/ +.right-side { + background-color: #f9f9f9; + margin-left: 220px; +} +/*left side - contains sidebar*/ +.left-side { + position: absolute; + width: 220px; + top: 0; +} +@media screen and (min-width: 992px) { + .left-side { + top: 50px; + } + /*Right side strech mode*/ + .right-side.strech { + margin-left: 0; + } + .right-side.strech > .content-header { + margin-top: 0px; + } + /* Left side collapse */ + .left-side.collapse-left { + left: -220px; + } +} +/*Give content full width on xs screens*/ +@media screen and (max-width: 992px) { + .right-side { + margin-left: 0; + } +} +/* + By default the layout is not fixed but if you add the class .fixed to the body element + the sidebar and the navbar will automatically become poisitioned fixed +*/ +body.fixed > .header, +body.fixed .left-side, +body.fixed .navbar { + position: fixed; +} +body.fixed > .header { + top: 0; + right: 0; + left: 0; +} +body.fixed .navbar { + left: 0; + right: 0; +} +body.fixed .wrapper { + margin-top: 50px; +} +/* Content */ +.content { + padding: 20px 15px; + background: #f9f9f9; +} +/* Utility */ +/* H1 - H6 font */ +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: 'Source Sans Pro', sans-serif; +} +/* Page Header */ +.page-header { + margin: 10px 0 20px 0; + font-size: 22px; +} +.page-header > small { + color: #666; + display: block; + margin-top: 5px; +} +/* All images should be responsive */ +img { + max-width: 100%important; +} +.sort-highlight { + background: #f4f4f4; + border: 1px dashed #ddd; + margin-bottom: 10px; +} +/* 10px padding and margins */ +.pad { + padding: 10px; +} +.margin { + margin: 10px; +} +/* Display inline */ +.inline { + display: inline; + width: auto; +} +/* Background colors */ +.bg-red, +.bg-yellow, +.bg-aqua, +.bg-blue, +.bg-light-blue, +.bg-green, +.bg-navy, +.bg-teal, +.bg-olive, +.bg-lime, +.bg-orange, +.bg-fuchsia, +.bg-purple, +.bg-maroon, +.bg-black { + color: #f9f9f9 !important; +} +.bg-gray { + background-color: #eaeaec !important; +} +.bg-black { + background-color: #222222 !important; +} +.bg-red { + background-color: #f56954 !important; +} +.bg-yellow { + background-color: #f39c12 !important; +} +.bg-aqua { + background-color: #00c0ef !important; +} +.bg-blue { + background-color: #0073b7 !important; +} +.bg-light-blue { + background-color: #3c8dbc !important; +} +.bg-green { + background-color: #00a65a !important; +} +.bg-navy { + background-color: #001f3f !important; +} +.bg-teal { + background-color: #39cccc !important; +} +.bg-olive { + background-color: #3d9970 !important; +} +.bg-lime { + background-color: #01ff70 !important; +} +.bg-orange { + background-color: #ff851b !important; +} +.bg-fuchsia { + background-color: #f012be !important; +} +.bg-purple { + background-color: #932ab6 !important; +} +.bg-maroon { + background-color: #85144b !important; +} +/* Text colors */ +.text-red { + color: #f56954 !important; +} +.text-yellow { + color: #f39c12 !important; +} +.text-aqua { + color: #00c0ef !important; +} +.text-blue { + color: #0073b7 !important; +} +.text-light-blue { + color: #3c8dbc !important; +} +.text-green { + color: #00a65a !important; +} +.text-navy { + color: #001f3f !important; +} +.text-teal { + color: #39cccc !important; +} +.text-olive { + color: #3d9970 !important; +} +.text-lime { + color: #01ff70 !important; +} +.text-orange { + color: #ff851b !important; +} +.text-fuchsia { + color: #f012be !important; +} +.text-purple { + color: #932ab6 !important; +} +.text-maroon { + color: #85144b !important; +} +/*Hide elements by display none only*/ +.hide { + display: none !important; +} +/* Remove borders */ +.no-border { + border: 0px !important; +} +/* Remove padding */ +.no-padding { + padding: 0px !important; +} +/* Remove margins */ +.no-margin { + margin: 0px !important; +} +/* Remove box shadow */ +.no-shadow { + box-shadow: none!important; +} +/* Don't display when printing */ +@media print { + .no-print { + display: none; + } + .left-side, + .header, + .content-header { + display: none; + } + .right-side { + margin: 0; + } +} +/* Remove border radius */ +.flat { + background-clip: padding-box !important; + -webkit-border-radius: 0 !important; + -moz-border-radius: 0 !important; + border-radius: 0 !important; +} +/* Change the color of the striped tables */ +.table-striped > tbody > tr:nth-child(odd) > td, +.table-striped > tbody > tr:nth-child(odd) > th { + background-color: #f3f4f5; +} +/* .text-center in tables */ +table.text-center td, +table.text-center th { + text-align: center; +} +/* _fix for sparkline tooltip */ +.jqstooltip { + padding: 5px!important; + width: auto!important; + height: auto!important; +} +/* + Components: navbar, logo and content header +------------------------------------------------- +*/ +body .header { + position: relative; + max-height: 100px; + z-index: 1030; +} +body .header .navbar { + height: 50px; + margin-bottom: 0; + margin-left: 220px; +} +body .header .navbar .sidebar-toggle { + float: left; + padding: 9px 5px; + margin-top: 8px; + margin-right: 0; + margin-bottom: 8px; + margin-left: 5px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + background-clip: padding-box !important; + -webkit-border-radius: 0 !important; + -moz-border-radius: 0 !important; + border-radius: 0 !important; +} +body .header .navbar .sidebar-toggle:hover .icon-bar { + background: #f6f6f6; +} +body .header .navbar .sidebar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + background-clip: padding-box; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +body .header .navbar .sidebar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +body .header .navbar .nav > li.user > a { + font-weight: bold; +} +body .header .navbar .nav > li.user > a > .fa, +body .header .navbar .nav > li.user > a > .glyphicon, +body .header .navbar .nav > li.user > a > .ion { + margin-right: 5px; +} +body .header .navbar .nav > li > a > .label { + background-clip: padding-box; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; + position: absolute; + top: 7px; + right: 2px; + font-size: 10px; + font-weight: normal; + width: 15px; + height: 15px; + line-height: 1.0em; + text-align: center; + padding: 2px; +} +body .header .navbar .nav > li > a:hover > .label { + top: 3px; +} +body .header .logo { + float: left; + font-size: 20px; + line-height: 50px; + text-align: center; + padding: 0 10px; + width: 220px; + font-family: 'Source Sans Pro'; + font-weight: 500; + height: 50px; + display: block; + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig; +} +body .header .logo .icon { + margin-right: 10px; +} +.right-side .content-header { + position: relative; + padding: 15px 15px 10px 20px; +} +.right-side .content-header > h1 { + margin: 0; + font-size: 24px; +} +.right-side .content-header > h1 > small { + font-size: 15px; + display: inline-block; + padding-left: 4px; + font-weight: 300; +} +.right-side .content-header > .breadcrumb { + float: right; + background: transparent; + margin-top: 0px; + margin-bottom: 0; + font-size: 12px; + padding: 7px 5px; + position: absolute; + top: 15px; + right: 10px; + background-clip: padding-box; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; +} +.right-side .content-header > .breadcrumb > li > a { + color: #444; + text-decoration: none; +} +.right-side .content-header > .breadcrumb > li > a > .fa, +.right-side .content-header > .breadcrumb > li > a > .glyphicon, +.right-side .content-header > .breadcrumb > li > a > .ion { + margin-right: 5px; +} +.right-side .content-header > .breadcrumb > li + li:before { + content: '>\00a0'; +} +@media screen and (max-width: 767px) { + .right-side .content-header > .breadcrumb { + position: relative; + margin-top: 5px; + top: 0; + right: 0; + float: none; + background: #efefef; + } +} +@media (max-width: 767px) { + .navbar .navbar-nav > li { + float: left; + } + .navbar-nav { + margin: 0; + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + line-height: 20px; + } + .navbar .navbar-right { + float: right; + } +} +@media screen and (max-width: 560px) { + body .header { + position: relative; + } + body .header .logo, + body .header .navbar { + width: 100%; + float: none; + position: relative!important; + } + body .header .navbar { + margin: 0; + } + body .header .logo { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-name: fadeInDownBig; + animation-name: fadeInDownBig; + } + body.fixed .header { + position: fixed; + top: 0px; + width: 100%; + } + body.fixed .wrapper, + body.fixed .sidebar-offcanvas { + margin-top: 100px!important; + } +} +/* + Component: Sidebar +-------------------------- +*/ +.sidebar { + margin-bottom: 5px; +} +.sidebar .sidebar-form input:focus { + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + border-color: transparent!important; +} +.sidebar .sidebar-menu { + list-style: none; + margin: 0; + padding: 0; +} +.sidebar .sidebar-menu > li { + margin: 0; + padding: 0; +} +.sidebar .sidebar-menu > li > a { + padding: 12px 5px 12px 15px; + display: block; +} +.sidebar .sidebar-menu > li > a > .fa, +.sidebar .sidebar-menu > li > a > .glyphicon, +.sidebar .sidebar-menu > li > a > .ion { + width: 20px; +} +.sidebar .sidebar-menu > li.highlight > a { + color: #b3ffb3; +} +.sidebar .sidebar-menu .treeview-menu { + display: none; + list-style: none; + padding: 0; + margin: 0; +} +.sidebar .sidebar-menu .treeview-menu > li { + margin: 0; +} +.sidebar .sidebar-menu .treeview-menu > li > a { + padding: 5px 5px 5px 15px; + display: block; + font-size: 14px; + margin: 0px 0px; +} +.sidebar .sidebar-menu .treeview-menu > li > a > .fa, +.sidebar .sidebar-menu .treeview-menu > li > a > .glyphicon, +.sidebar .sidebar-menu .treeview-menu > li > a > .ion { + width: 20px; +} +.sidebar .sidebar-menu .treeview-menu > li.highlight > a { + color: #b3ffb3; +} +.user-panel { + padding: 10px; +} +.user-panel:before, +.user-panel:after { + content: " "; + display: table; +} +.user-panel:after { + clear: both; +} +.user-panel:before, +.user-panel:after { + content: " "; + display: table; +} +.user-panel:after { + clear: both; +} +.user-panel:before, +.user-panel:after { + display: table; + content: " "; +} +.user-panel:after { + clear: both; +} +.user-panel:before, +.user-panel:after { + display: table; + content: " "; +} +.user-panel:after { + clear: both; +} +.user-panel > .image > img { + width: 45px; + height: 45px; +} +.user-panel > .info { + font-weight: 600; + padding: 5px 5px 5px 15px; + font-size: 14px; + line-height: 1; +} +.user-panel > .info > p { + margin-bottom: 9px; +} +.user-panel > .info > a { + text-decoration: none; + padding-right: 5px; + margin-top: 3px; + font-size: 11px; + font-weight: normal; +} +.user-panel > .info > a > .fa, +.user-panel > .info > a > .ion, +.user-panel > .info > a > .glyphicon { + margin-right: 3px; +} +.sidebar-offcanvas { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig; +} +/* + * Off Canvas + * -------------------------------------------------- + * Gives us the push menu effect + */ +@media screen and (max-width: 992px) { + .relative { + position: relative; + } + .row-offcanvas-right .sidebar-offcanvas { + right: -220px; + } + .row-offcanvas-left .sidebar-offcanvas { + left: -220px; + } + .row-offcanvas-right.active { + right: 220px; + } + .row-offcanvas-left.active { + left: 220px; + } + .row-offcanvas-left { + left: 0px; + -webkit-transition: left 500ms ease; + -moz-transition: left 500ms ease; + -o-transition: left 500ms ease; + -ms-transition: left 500ms ease; + transition: left 500ms ease; + } + .sidebar-offcanvas { + left: 0px; + } + body.fixed .sidebar-offcanvas { + margin-top: 50px; + left: -220px; + } + body.fixed .row-offcanvas-left.active .navbar { + left: 220px !important; + right: 0px; + } + body.fixed .row-offcanvas-left.active .sidebar-offcanvas { + left: 0px; + } +} +/* + Dropdown menus +---------------------------- +*/ +/*Dropdowns in general*/ +.dropdown-menu { + -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1); + box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1); + z-index: 2300; +} +.dropdown-menu > li > a > .glyphicon, +.dropdown-menu > li > a > .fa, +.dropdown-menu > li > a > .ion { + margin-right: 10px; +} +.dropdown-menu > li > a:hover { + background-color: #3c8dbc; + color: #f9f9f9; +} +/*Drodown in navbars*/ +.skin-blue .navbar .dropdown-menu > li > a { + color: #444444; +} +/* + Navbar custom dropdown menu +------------------------------------ +*/ +.navbar-nav > .notifications-menu > .dropdown-menu, +.navbar-nav > .messages-menu > .dropdown-menu, +.navbar-nav > .tasks-menu > .dropdown-menu { + width: 280px; + padding: 0 0 0 0!important; + margin: 0!important; + top: 100%; + border: 1px solid #dfdfdf; + background-clip: padding-box !important; + -webkit-border-radius: 4px !important; + -moz-border-radius: 4px !important; + border-radius: 4px !important; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li.header, +.navbar-nav > .messages-menu > .dropdown-menu > li.header, +.navbar-nav > .tasks-menu > .dropdown-menu > li.header { + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 0; + -webkit-border-bottom-left-radius: 0; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 0; + -moz-border-radius-bottomleft: 0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + background-color: #ffffff; + padding: 7px 10px; + border-bottom: 1px solid #f4f4f4; + color: #444444; + font-size: 14px; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li.header:after, +.navbar-nav > .messages-menu > .dropdown-menu > li.header:after, +.navbar-nav > .tasks-menu > .dropdown-menu > li.header:after { + bottom: 100%; + left: 92%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; + border-width: 7px; + margin-left: -7px; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a, +.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a, +.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a { + -webkit-border-top-left-radius: 0px; + -webkit-border-top-right-radius: 0px; + -webkit-border-bottom-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -moz-border-radius-topleft: 0px; + -moz-border-radius-topright: 0px; + -moz-border-radius-bottomright: 4px; + -moz-border-radius-bottomleft: 4px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; + font-size: 12px; + background-color: #f4f4f4; + padding: 7px 10px; + border-bottom: 1px solid #eeeeee; + color: #444444; + text-align: center; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover, +.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover, +.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover { + background: #f4f4f4; + text-decoration: none; + font-weight: normal; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu, +.navbar-nav > .messages-menu > .dropdown-menu > li .menu, +.navbar-nav > .tasks-menu > .dropdown-menu > li .menu { + margin: 0; + padding: 0; + list-style: none; + overflow-x: hidden; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a, +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a, +.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a { + display: block; + white-space: nowrap; + /* Prevent text from breaking */ + border-bottom: 1px solid #f4f4f4; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover, +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover, +.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover { + background: #f6f6f6; + text-decoration: none; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a { + font-size: 12px; + color: #444444; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion { + font-size: 20px; + width: 50px; + text-align: center; + padding: 15px 0px; + margin-right: 5px; + /* Default background and font colors */ + background: #00c0ef; + color: #f9f9f9; + /* Fallback for browsers that doesn't support rgba */ + color: rgba(255, 255, 255, 0.7); +} +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.danger, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.danger, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.danger { + background: #f56954; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.warning, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.warning, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.warning { + background: #f39c12; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.success, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.success, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.success { + background: #00a65a; +} +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.info, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.info, +.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.info { + background: #00c0ef; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a { + margin: 0px; + line-height: 20px; + padding: 10px 5px 10px 5px; + background-clip: padding-box; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img { + margin: auto 10px auto auto; + width: 40px; + height: 40px; + border: 1px solid #dddddd; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 { + padding: 0; + margin: 0 0 0 45px; + color: #444444; + font-size: 15px; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small { + color: #999999; + font-size: 10px; + float: right; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p { + margin: 0 0 0 45px; + font-size: 12px; + color: #888888; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before, +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { + content: " "; + display: table; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { + clear: both; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before, +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { + content: " "; + display: table; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { + clear: both; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before, +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { + display: table; + content: " "; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { + clear: both; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before, +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { + display: table; + content: " "; +} +.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { + clear: both; +} +.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a { + padding: 10px; +} +.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 { + font-size: 14px; + padding: 0; + margin: 0 0 10px 0; + color: #666666; +} +.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress { + padding: 0; + margin: 0; +} +.navbar-nav > .user-menu > .dropdown-menu { + background-clip: padding-box; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + padding: 1px 0 0 0; + border-top-width: 0; + width: 280px; +} +.navbar-nav > .user-menu > .dropdown-menu:after { + bottom: 100%; + right: 10px; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; + border-width: 10px; + margin-left: -10px; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-header { + height: 175px; + padding: 10px; + background: #3c8dbc; + text-align: center; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-header > img { + z-index: 5; + height: 90px; + width: 90px; + border: 8px solid; + border-color: transparent; + border-color: rgba(255, 255, 255, 0.2); +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p { + z-index: 5; + color: #f9f9f9; + color: rgba(255, 255, 255, 0.8); + font-size: 17px; + text-shadow: 2px 2px 3px #333333; + margin-top: 10px; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small { + display: block; + font-size: 12px; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body { + padding: 15px; + border-bottom: 1px solid #f4f4f4; + border-top: 1px solid #dddddd; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:before, +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { + content: " "; + display: table; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { + clear: both; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:before, +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { + content: " "; + display: table; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { + clear: both; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:before, +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { + display: table; + content: " "; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { + clear: both; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:before, +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { + display: table; + content: " "; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { + clear: both; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-body > div > a { + color: #0073b7; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer { + background-color: #f9f9f9; + padding: 10px; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:before, +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { + content: " "; + display: table; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { + clear: both; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:before, +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { + content: " "; + display: table; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { + clear: both; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:before, +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { + display: table; + content: " "; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { + clear: both; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:before, +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { + display: table; + content: " "; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { + clear: both; +} +.navbar-nav > .user-menu > .dropdown-menu > li.user-footer .btn-default { + color: #666666; +} +/* Add fade animation to dropdown menus */ +.open > .dropdown-menu { + animation-name: fadeAnimation; + animation-duration: .7s; + animation-iteration-count: 1; + animation-timing-function: ease; + animation-fill-mode: forwards; + -webkit-animation-name: fadeAnimation; + -webkit-animation-duration: .7s; + -webkit-animation-iteration-count: 1; + -webkit-animation-timing-function: ease; + -webkit-animation-fill-mode: forwards; + -moz-animation-name: fadeAnimation; + -moz-animation-duration: .7s; + -moz-animation-iteration-count: 1; + -moz-animation-timing-function: ease; + -moz-animation-fill-mode: forwards; +} +@keyframes fadeAnimation { + from { + opacity: 0; + top: 120%; + } + to { + opacity: 1; + top: 100%; + } +} +@-webkit-keyframes fadeAnimation { + from { + opacity: 0; + top: 120%; + } + to { + opacity: 1; + top: 100%; + } +} +/* Fix dropdown menu for small screens to display correctly on small screens */ +@media screen and (max-width: 767px) { + .navbar-nav > .notifications-menu > .dropdown-menu, + .navbar-nav > .user-menu > .dropdown-menu, + .navbar-nav > .tasks-menu > .dropdown-menu, + .navbar-nav > .messages-menu > .dropdown-menu { + position: absolute; + top: 100%; + right: 0; + left: auto; + border-right: 1px solid #dddddd; + border-bottom: 1px solid #dddddd; + border-left: 1px solid #dddddd; + background: #ffffff; + } +} +/* Fix menu positions on xs screens to appear correctly and fully */ +@media screen and (max-width: 480px) { + .navbar-nav > .notifications-menu > .dropdown-menu > li.header, + .navbar-nav > .tasks-menu > .dropdown-menu > li.header, + .navbar-nav > .messages-menu > .dropdown-menu > li.header { + /* Remove arrow from the top */ + } + .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after, + .navbar-nav > .tasks-menu > .dropdown-menu > li.header:after, + .navbar-nav > .messages-menu > .dropdown-menu > li.header:after { + border-width: 0px!important; + } + .navbar-nav > .tasks-menu > .dropdown-menu { + position: absolute; + right: -120px; + left: auto; + } + .navbar-nav > .notifications-menu > .dropdown-menu { + position: absolute; + right: -170px; + left: auto; + } + .navbar-nav > .messages-menu > .dropdown-menu { + position: absolute; + right: -210px; + left: auto; + } +} +/* + All form elements including input, select, textarea etc. +----------------------------------------------------------------- +*/ +.form-control { + background-clip: padding-box !important; + -webkit-border-radius: 0px !important; + -moz-border-radius: 0px !important; + border-radius: 0px !important; + box-shadow: none; +} +.form-control:focus { + border-color: #3c8dbc !important; + box-shadow: none; +} +.form-group.has-success label { + color: #00a65a; +} +.form-group.has-success .form-control { + border-color: #00a65a !important; + box-shadow: none; +} +.form-group.has-warning label { + color: #f39c12; +} +.form-group.has-warning .form-control { + border-color: #f39c12 !important; + box-shadow: none; +} +.form-group.has-error label { + color: #f56954; +} +.form-group.has-error .form-control { + border-color: #f56954 !important; + box-shadow: none; +} +/* Input group */ +.input-group .input-group-addon { + border-radius: 0; + background-color: #f4f4f4; +} +/* button groups */ +.btn-group-vertical .btn.btn-flat:first-of-type, +.btn-group-vertical .btn.btn-flat:last-of-type { + border-radius: 0; +} +/* Checkbox and radio inputs */ +.checkbox, +.radio { + padding-left: 0; +} +/* + Compenent: Progress bars +-------------------------------- +*/ +/* size variation */ +.progress.sm { + height: 10px; +} +.progress.xs { + height: 7px; +} +/* Vertical bars */ +.progress.vertical { + position: relative; + width: 30px; + height: 200px; + display: inline-block; + margin-right: 10px; +} +.progress.vertical > .progress-bar { + width: 100%!important; + position: absolute; + bottom: 0; +} +.progress.vertical.sm { + width: 20px; +} +.progress.vertical.xs { + width: 10px; +} +/* Remove margins from progress bars when put in a table */ +.table tr > td .progress { + margin: 0; +} +.progress-bar-light-blue, +.progress-bar-primary { + background-color: #3c8dbc; +} +.progress-striped .progress-bar-light-blue, +.progress-striped .progress-bar-primary { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-striped .progress-bar-light-blue, +.progress-striped .progress-bar-primary { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-green, +.progress-bar-success { + background-color: #00a65a; +} +.progress-striped .progress-bar-green, +.progress-striped .progress-bar-success { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-striped .progress-bar-green, +.progress-striped .progress-bar-success { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-aqua, +.progress-bar-info { + background-color: #00c0ef; +} +.progress-striped .progress-bar-aqua, +.progress-striped .progress-bar-info { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-striped .progress-bar-aqua, +.progress-striped .progress-bar-info { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-yellow, +.progress-bar-warning { + background-color: #f39c12; +} +.progress-striped .progress-bar-yellow, +.progress-striped .progress-bar-warning { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-striped .progress-bar-yellow, +.progress-striped .progress-bar-warning { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-red, +.progress-bar-danger { + background-color: #f56954; +} +.progress-striped .progress-bar-red, +.progress-striped .progress-bar-danger { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-striped .progress-bar-red, +.progress-striped .progress-bar-danger { + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +/* + Component: Small boxes +*/ +.small-box { + position: relative; + display: block; + background-clip: padding-box; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + margin-bottom: 15px; +} +.small-box > .inner { + padding: 10px; +} +.small-box > .small-box-footer { + position: relative; + text-align: center; + padding: 3px 0; + color: #fff; + color: rgba(255, 255, 255, 0.8); + display: block; + z-index: 10; + background: rgba(0, 0, 0, 0.1); + text-decoration: none; +} +.small-box > .small-box-footer:hover { + color: #fff; + background: rgba(0, 0, 0, 0.15); +} +.small-box h3 { + font-size: 38px; + font-weight: bold; + margin: 0 0 10px 0; + white-space: nowrap; + padding: 0; +} +.small-box p { + font-size: 15px; +} +.small-box p > small { + display: block; + color: #f9f9f9; + font-size: 13px; + margin-top: 5px; +} +.small-box h3, +.small-box p { + z-index: 5px; +} +.small-box .icon { + position: absolute; + top: auto; + bottom: 5px; + right: 5px; + z-index: 0; + font-size: 90px; + color: rgba(0, 0, 0, 0.15); +} +.small-box:hover { + text-decoration: none; + color: #f9f9f9; +} +.small-box:hover .icon { + animation-name: tansformAnimation; + animation-duration: .5s; + animation-iteration-count: 1; + animation-timing-function: ease; + animation-fill-mode: forwards; + -webkit-animation-name: tansformAnimation; + -webkit-animation-duration: .5s; + -webkit-animation-iteration-count: 1; + -webkit-animation-timing-function: ease; + -webkit-animation-fill-mode: forwards; + -moz-animation-name: tansformAnimation; + -moz-animation-duration: .5s; + -moz-animation-iteration-count: 1; + -moz-animation-timing-function: ease; + -moz-animation-fill-mode: forwards; +} +@keyframes tansformAnimation { + from { + font-size: 90px; + } + to { + font-size: 100px; + } +} +@-webkit-keyframes tansformAnimation { + from { + font-size: 90px; + } + to { + font-size: 100px; + } +} +@media screen and (max-width: 480px) { + .small-box { + text-align: center; + } + .small-box .icon { + display: none; + } + .small-box p { + font-size: 12px; + } +} +/* + component: Boxes +------------------------- +*/ +.box { + position: relative; + background: #ffffff; + border-top: 2px solid #c1c1c1; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + width: 100%; + box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); +} +.box.box-primary { + border-top-color: whitesmoke; +} +.box.box-info { + border-top-color: #00c0ef; +} +.box.box-danger { + border-top-color: #f56954; +} +.box.box-warning { + border-top-color: #f39c12; +} +.box.box-success { + border-top-color: #00a65a; +} +.box.height-control .box-body { + max-height: 300px; + overflow: auto; +} +.box .box-header { + position: relative; + -webkit-border-top-left-radius: 3px; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 0; + -webkit-border-bottom-left-radius: 0; + -moz-border-radius-topleft: 3px; + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 0; + -moz-border-radius-bottomleft: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + border-bottom: 0px solid #f4f4f4; + color: #444; + padding-bottom: 10px; +} +.box .box-header:before, +.box .box-header:after { + content: " "; + display: table; +} +.box .box-header:after { + clear: both; +} +.box .box-header:before, +.box .box-header:after { + content: " "; + display: table; +} +.box .box-header:after { + clear: both; +} +.box .box-header:before, +.box .box-header:after { + display: table; + content: " "; +} +.box .box-header:after { + clear: both; +} +.box .box-header:before, +.box .box-header:after { + display: table; + content: " "; +} +.box .box-header:after { + clear: both; +} +.box .box-header > .fa, +.box .box-header > .glyphicon, +.box .box-header > .ion, +.box .box-header .box-title { + display: inline-block; + padding: 10px 0px 10px 10px; + margin: 0; + font-size: 20px; + font-weight: 400; + float: left; + cursor: default; +} +.box .box-header a { + color: #444; +} +.box .box-header > .box-tools { + padding: 5px 10px 5px 5px; +} +.box .box-body { + padding: 10px; + -webkit-border-top-left-radius: 0; + -webkit-border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 3px; + -webkit-border-bottom-left-radius: 3px; + -moz-border-radius-topleft: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 3px; + -moz-border-radius-bottomleft: 3px; + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.box .box-body > table, +.box .box-body > .table { + margin-bottom: 0; +} +.box .box-body.chart-responsive { + width: 100%; + overflow: hidden; +} +.box .box-body > .chart { + position: relative; + overflow: hidden; + width: 100%; +} +.box .box-body > .chart svg, +.box .box-body > .chart canvas { + width: 100%!important; +} +.box .box-body .fc { + margin-top: 5px; +} +.box .box-body .fc-header-title h2 { + font-size: 15px; + line-height: 1.6em; + color: #666; + margin-left: 10px; +} +.box .box-body .fc-header-right { + padding-right: 10px; +} +.box .box-body .fc-header-left { + padding-left: 10px; +} +.box .box-body .fc-widget-header { + background: #fafafa; + box-shadow: inset 0px -3px 1px rgba(0, 0, 0, 0.02); +} +.box .box-body .fc-grid { + width: 100%; + border: 0; +} +.box .box-body .fc-widget-header:first-of-type, +.box .box-body .fc-widget-content:first-of-type { + border-left: 0; + border-right: 0; +} +.box .box-body .fc-widget-header:last-of-type, +.box .box-body .fc-widget-content:last-of-type { + border-right: 0; +} +.box .box-body .table { + margin-bottom: 0; +} +.box .box-body .full-width-chart { + margin: -19px; +} +.box .box-body.no-padding .full-width-chart { + margin: -9px; +} +.box .box-footer { + border-top: 1px solid #f4f4f4; + -webkit-border-top-left-radius: 0; + -webkit-border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 3px; + -webkit-border-bottom-left-radius: 3px; + -moz-border-radius-topleft: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 3px; + -moz-border-radius-bottomleft: 3px; + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; + padding: 10px; + background-color: #ffffff; +} +.box.box-solid { + border-top: 0px; +} +.box.box-solid > .box-header { + padding-bottom: 0px!important; +} +.box.box-solid > .box-header .btn.btn-default { + background: transparent; +} +.box.box-solid.box-primary > .box-header { + color: #fff; + background: #3c8dbc; + background-color: #3c8dbc; +} +.box.box-solid.box-primary > .box-header a { + color: #444; +} +.box.box-solid.box-info > .box-header { + color: #fff; + background: #00c0ef; + background-color: #00c0ef; +} +.box.box-solid.box-info > .box-header a { + color: #444; +} +.box.box-solid.box-danger > .box-header { + color: #fff; + background: #f56954; + background-color: #f56954; +} +.box.box-solid.box-danger > .box-header a { + color: #444; +} +.box.box-solid.box-warning > .box-header { + color: #fff; + background: #f39c12; + background-color: #f39c12; +} +.box.box-solid.box-warning > .box-header a { + color: #444; +} +.box.box-solid.box-success > .box-header { + color: #fff; + background: #00a65a; + background-color: #00a65a; +} +.box.box-solid.box-success > .box-header a { + color: #444; +} +.box.box-solid > .box-header > .box-tools > .btn { + border: 0; + box-shadow: none; +} +.box.box-solid.collapsed-box .box-header { + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +.box.box-solid[class*='bg'] > .box-header { + color: #fff; +} +.box .box-group > .box { + margin-bottom: 5px; +} +.box .knob-label { + text-align: center; + color: #333; + font-weight: 100; + font-size: 12px; + margin-bottom: 0.3em; +} +.box .todo-list { + margin: 0; + padding: 0px 0px; + list-style: none; +} +.box .todo-list > li { + background-clip: padding-box; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + padding: 10px; + background: #f3f4f5; + margin-bottom: 2px; + border-left: 2px solid #e6e7e8; + color: #444; +} +.box .todo-list > li:last-of-type { + margin-bottom: 0; +} +.box .todo-list > li.danger { + border-left-color: #f56954; +} +.box .todo-list > li.warning { + border-left-color: #f39c12; +} +.box .todo-list > li.info { + border-left-color: #00c0ef; +} +.box .todo-list > li.success { + border-left-color: #00a65a; +} +.box .todo-list > li.primary { + border-left-color: #3c8dbc; +} +.box .todo-list > li > input[type='checkbox'] { + margin: 0 10px 0 5px; +} +.box .todo-list > li .text { + display: inline-block; + margin-left: 5px; + font-weight: 600; +} +.box .todo-list > li .label { + margin-left: 10px; + font-size: 9px; +} +.box .todo-list > li .tools { + display: none; + float: right; + color: #f56954; +} +.box .todo-list > li .tools > .fa, +.box .todo-list > li .tools > .glyphicon, +.box .todo-list > li .tools > .ion { + margin-right: 5px; + cursor: pointer; +} +.box .todo-list > li:hover .tools { + display: inline-block; +} +.box .todo-list > li.done { + color: #999; +} +.box .todo-list > li.done .text { + text-decoration: line-through; + font-weight: 500; +} +.box .todo-list > li.done .label { + background: #eaeaec !important; +} +.box .todo-list .handle { + display: inline-block; + cursor: move; + margin: 0 5px; +} +.box .chat { + padding: 5px 20px 5px 10px; +} +.box .chat .item { + margin-bottom: 10px; +} +.box .chat .item:before, +.box .chat .item:after { + content: " "; + display: table; +} +.box .chat .item:after { + clear: both; +} +.box .chat .item:before, +.box .chat .item:after { + content: " "; + display: table; +} +.box .chat .item:after { + clear: both; +} +.box .chat .item:before, +.box .chat .item:after { + display: table; + content: " "; +} +.box .chat .item:after { + clear: both; +} +.box .chat .item:before, +.box .chat .item:after { + display: table; + content: " "; +} +.box .chat .item:after { + clear: both; +} +.box .chat .item > img { + width: 40px; + height: 40px; + border: 2px solid transparent; + background-clip: padding-box !important; + -webkit-border-radius: 50% !important; + -moz-border-radius: 50% !important; + border-radius: 50% !important; +} +.box .chat .item > img.online { + border: 2px solid #00a65a; +} +.box .chat .item > img.offline { + border: 2px solid #f56954; +} +.box .chat .item > .message { + margin-left: 55px; + margin-top: -40px; +} +.box .chat .item > .message > .name { + display: block; + font-weight: 600; +} +.box .chat .item > .attachment { + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + background: #f0f0f0; + margin-left: 65px; + margin-right: 15px; + padding: 10px; +} +.box .chat .item > .attachment > h4 { + margin: 0 0 5px 0; + font-weight: 600; + font-size: 14px; +} +.box .chat .item > .attachment > p, +.box .chat .item > .attachment > .filename { + font-weight: 600; + font-size: 13px; + font-style: italic; + margin: 0; +} +.box .chat .item > .attachment:before, +.box .chat .item > .attachment:after { + content: " "; + display: table; +} +.box .chat .item > .attachment:after { + clear: both; +} +.box .chat .item > .attachment:before, +.box .chat .item > .attachment:after { + content: " "; + display: table; +} +.box .chat .item > .attachment:after { + clear: both; +} +.box .chat .item > .attachment:before, +.box .chat .item > .attachment:after { + display: table; + content: " "; +} +.box .chat .item > .attachment:after { + clear: both; +} +.box .chat .item > .attachment:before, +.box .chat .item > .attachment:after { + display: table; + content: " "; +} +.box .chat .item > .attachment:after { + clear: both; +} +.box > .overlay, +.box > .loading-img { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.box > .overlay { + z-index: 1010; + background: rgba(255, 255, 255, 0.7); +} +.box > .overlay.dark { + background: rgba(0, 0, 0, 0.5); +} +.box > .loading-img { + z-index: 1020; + background: transparent url('../img/ajax-loader1.gif') 50% 50% no-repeat; +} +/* +Component: timeline +-------------------- +*/ +.timeline { + margin: 0 0 30px 0; + padding: 0; + list-style: none; +} +.timeline:before { + content: ''; + position: absolute; + top: 0px; + bottom: 0; + width: 5px; + background: #ddd; + left: 45px; + border: 1px solid #eee; + margin: 0; + background-clip: padding-box; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; +} +.timeline > li { + position: relative; + margin-right: 10px; + margin-bottom: 15px; +} +.timeline > li:before, +.timeline > li:after { + content: " "; + display: table; +} +.timeline > li:after { + clear: both; +} +.timeline > li:before, +.timeline > li:after { + content: " "; + display: table; +} +.timeline > li:after { + clear: both; +} +.timeline > li:before, +.timeline > li:after { + display: table; + content: " "; +} +.timeline > li:after { + clear: both; +} +.timeline > li:before, +.timeline > li:after { + display: table; + content: " "; +} +.timeline > li:after { + clear: both; +} +.timeline > li > .timeline-item { + margin-top: 10px; + border: 0px solid #dfdfdf; + background: #fff; + color: #555; + margin-left: 60px; + margin-right: 15px; + padding: 5px; + position: relative; + box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); +} +.timeline > li > .timeline-item > .time { + color: #999; + float: right; + margin: 2px 0 0 0; +} +.timeline > li > .timeline-item > .timeline-header { + margin: 0; + color: #555; + border-bottom: 1px solid #f4f4f4; + padding: 5px; + font-size: 16px; + line-height: 1.1; +} +.timeline > li > .timeline-item > .timeline-header > a { + font-weight: 600; +} +.timeline > li > .timeline-item > .timeline-body, +.timeline > li > .timeline-item > .timeline-footer { + padding: 10px; +} +.timeline > li.time-label > span { + font-weight: 600; + padding: 5px; + display: inline-block; + background-color: #fff; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); + background-clip: padding-box; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.timeline > li > .fa, +.timeline > li > .glyphicon, +.timeline > li > .ion { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); + width: 30px; + height: 30px; + font-size: 15px; + line-height: 30px; + position: absolute; + color: #666; + background: #eee; + border-radius: 50%; + text-align: center; + left: 18px; + top: 0; +} +/* + Component: Buttons +------------------------- +*/ +.btn { + font-weight: 500; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + border: 1px solid transparent; + -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09); + -moz-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09); + box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09); +} +.btn.btn-default { + background-color: #fafafa; + color: #000; + border-color: #ddd; + border-bottom-color: #ddd; +} +.btn.btn-default:hover, +.btn.btn-default:active, +.btn.btn-default.hover { + background-color: #f4f4f4!important; +} +.btn.btn-default.btn-flat { + border-bottom-color: #d9dadc; +} +.btn.btn-primary { + background-color: #3c8dbc; + border-color: #367fa9; +} +.btn.btn-primary:hover, +.btn.btn-primary:active, +.btn.btn-primary.hover { + background-color: #367fa9; +} +.btn.btn-success { + background-color: #00a65a; + border-color: #008d4c; +} +.btn.btn-success:hover, +.btn.btn-success:active, +.btn.btn-success.hover { + background-color: #008d4c; +} +.btn.btn-info { + background-color: #00c0ef; + border-color: #00acd6; +} +.btn.btn-info:hover, +.btn.btn-info:active, +.btn.btn-info.hover { + background-color: #00acd6; +} +.btn.btn-danger { + background-color: #f56954; + border-color: #f4543c; +} +.btn.btn-danger:hover, +.btn.btn-danger:active, +.btn.btn-danger.hover { + background-color: #f4543c; +} +.btn.btn-warning { + background-color: #f39c12; + border-color: #e08e0b; +} +.btn.btn-warning:hover, +.btn.btn-warning:active, +.btn.btn-warning.hover { + background-color: #e08e0b; +} +.btn.btn-sm { + font-size: 12px; +} +.btn.btn-lg { + padding: 10px 16px; +} +.btn.btn-block { + font-size: 15px; + padding: 10px; +} +.btn.btn-block.btn-sm { + font-size: 13px; + padding: 7px; +} +.btn.btn-flat { + background-clip: padding-box; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + border-width: 1px; +} +.btn:active { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn:focus { + outline: none; +} +.btn.btn-file { + position: relative; + width: 120px; + height: 35px; + overflow: hidden; +} +.btn.btn-file > input[type='file'] { + display: block !important; + width: 100% !important; + height: 35px !important; + opacity: 0 !important; + position: absolute; + top: -10px; + cursor: pointer; +} +.btn.btn-app { + position: relative; + padding: 15px 5px; + margin: 0 0 10px 10px; + min-width: 80px; + height: 60px; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + background-clip: padding-box; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + text-align: center; + color: #666; + border: 1px solid #ddd; + background-color: #fafafa; + font-size: 12px; +} +.btn.btn-app > .fa, +.btn.btn-app > .glyphicon, +.btn.btn-app > .ion { + font-size: 20px; + display: block; +} +.btn.btn-app:hover { + background: #f4f4f4; + color: #444; + border-color: #aaa; +} +.btn.btn-app:active, +.btn.btn-app:focus { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn.btn-app > .badge { + position: absolute; + top: -3px; + right: -10px; + font-size: 10px; + font-weight: 400; +} +.btn.btn-social { + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + opacity: 0.9; + padding: 0; +} +.btn.btn-social > .fa { + padding: 10px 0; + width: 40px; +} +.btn.btn-social > .fa + span { + border-left: 1px solid rgba(255, 255, 255, 0.3); +} +.btn.btn-social span { + padding: 10px; +} +.btn.btn-social:hover { + opacity: 1; +} +.btn.btn-circle { + width: 30px; + height: 30px; + line-height: 30px; + padding: 0; + background-clip: padding-box; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; +} +/* + Component: callout +------------------------ +*/ +.callout { + margin: 0 0 20px 0; + padding: 15px 30px 15px 15px; + border-left: 5px solid #eee; +} +.callout h4 { + margin-top: 0; +} +.callout p:last-child { + margin-bottom: 0; +} +.callout code, +.callout .highlight { + background-color: #fff; +} +.callout.callout-danger { + background-color: #fcf2f2; + border-color: #dFb5b4; +} +.callout.callout-warning { + background-color: #fefbed; + border-color: #f1e7bc; +} +.callout.callout-info { + background-color: #f0f7fd; + border-color: #d0e3f0; +} +.callout.callout-danger h4 { + color: #B94A48; +} +.callout.callout-warning h4 { + color: #C09853; +} +.callout.callout-info h4 { + color: #3A87AD; +} +/* + Component: alert +------------------------ +*/ +.alert { + padding-left: 30px; + margin-left: 15px; + position: relative; +} +.alert > .fa, +.alert > .glyphicon { + position: absolute; + left: -15px; + top: -15px; + width: 35px; + height: 35px; + background-clip: padding-box; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; + line-height: 35px; + text-align: center; + background: inherit; + border: inherit; +} +/* + Component: Navs +*/ +/* NAV PILLS */ +.nav.nav-pills > li > a { + border-top: 3px solid transparent; + background-clip: padding-box; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + color: #444; +} +.nav.nav-pills > li > a > .fa, +.nav.nav-pills > li > a > .glyphicon, +.nav.nav-pills > li > a > .ion { + margin-right: 5px; +} +.nav.nav-pills > li.active > a, +.nav.nav-pills > li.active > a:hover { + background-color: #f6f6f6; + border-top-color: #3c8dbc; + color: #444; +} +.nav.nav-pills > li.active > a { + font-weight: 600; +} +.nav.nav-pills > li > a:hover { + background-color: #f6f6f6; +} +.nav.nav-pills.nav-stacked > li > a { + border-top: 0; + border-left: 3px solid transparent; + background-clip: padding-box; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + color: #444; +} +.nav.nav-pills.nav-stacked > li.active > a, +.nav.nav-pills.nav-stacked > li.active > a:hover { + background-color: #f6f6f6; + border-left-color: #3c8dbc; + color: #444; +} +.nav.nav-pills.nav-stacked > li.header { + border-bottom: 1px solid #ddd; + color: #777; + margin-bottom: 10px; + padding: 5px 10px; + text-transform: uppercase; +} +/* NAV TABS */ +.nav-tabs-custom { + margin-bottom: 20px; + background: #fff; + box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); +} +.nav-tabs-custom > .nav-tabs { + margin: 0; + border-bottom-color: #f4f4f4; +} +.nav-tabs-custom > .nav-tabs > li { + border-top: 3px solid transparent; + margin-bottom: -2px; + margin-right: 5px; +} +.nav-tabs-custom > .nav-tabs > li > a { + background-clip: padding-box !important; + -webkit-border-radius: 0 !important; + -moz-border-radius: 0 !important; + border-radius: 0 !important; +} +.nav-tabs-custom > .nav-tabs > li > a, +.nav-tabs-custom > .nav-tabs > li > a:hover { + background: transparent; + margin: 0; +} +.nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover, +.nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus, +.nav-tabs-custom > .nav-tabs > li:not(.active) > a:active { + border-color: transparent; +} +.nav-tabs-custom > .nav-tabs > li.active { + border-top-color: #3c8dbc; +} +.nav-tabs-custom > .nav-tabs > li.active > a, +.nav-tabs-custom > .nav-tabs > li.active:hover > a { + background-color: #fff; +} +.nav-tabs-custom > .nav-tabs > li.active > a { + border-top: 0; + border-left-color: #f4f4f4; + border-right-color: #f4f4f4; +} +.nav-tabs-custom > .nav-tabs > li:first-of-type { + margin-left: 0px; +} +.nav-tabs-custom > .nav-tabs > li:first-of-type.active > a { + border-left-width: 0; +} +.nav-tabs-custom > .nav-tabs.pull-right { + float: none!important; +} +.nav-tabs-custom > .nav-tabs.pull-right > li { + float: right; +} +.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type { + margin-right: 0px; +} +.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a { + border-left-width: 1px; + border-right-width: 0px; +} +.nav-tabs-custom > .nav-tabs > li.header { + font-weight: 400; + line-height: 35px; + padding: 0 10px; + font-size: 20px; + color: #444; + cursor: default; +} +.nav-tabs-custom > .nav-tabs > li.header > .fa, +.nav-tabs-custom > .nav-tabs > li.header > .glyphicon, +.nav-tabs-custom > .nav-tabs > li.header > .ion { + margin-right: 10px; +} +.nav-tabs-custom > .tab-content { + background: #fff; + padding: 10px; +} +/* PAGINATION */ +.pagination > li > a { + background: #fafafa; + color: #666; + -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09); + -moz-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09); + box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09); +} +.pagination > li:first-of-type a, +.pagination > li:last-of-type a { + background-clip: padding-box; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +/* + Component: Mailbox +*/ +.mailbox .table-mailbox { + border-left: 1px solid #ddd; + border-right: 1px solid #ddd; + border-bottom: 1px solid #ddd; +} +.mailbox .table-mailbox tr.unread > td { + background-color: rgba(0, 0, 0, 0.05); + color: #000; + font-weight: 600; +} +.mailbox .table-mailbox tr > td > .fa.fa-star, +.mailbox .table-mailbox tr > td > .fa.fa-star-o, +.mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star, +.mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star-empty { + color: #f39c12; + cursor: pointer; +} +.mailbox .table-mailbox tr > td.small-col { + width: 30px; +} +.mailbox .table-mailbox tr > td.name { + width: 150px; + font-weight: 600; +} +.mailbox .table-mailbox tr > td.time { + text-align: right; + width: 100px; +} +.mailbox .table-mailbox tr > td { + white-space: nowrap; +} +.mailbox .table-mailbox tr > td > a { + color: #444; +} +@media screen and (max-width: 767px) { + .mailbox .nav-stacked > li:not(.header) { + float: left; + width: 50%; + } + .mailbox .nav-stacked > li:not(.header).header { + border: 0!important; + } + .mailbox .search-form { + margin-top: 10px; + } +} +/* + Page: locked screen +*/ +/* ADD THIS CLASS TO THE TAG */ +.lockscreen { + background: url(../img/blur-background09.jpg) repeat center center fixed; + -webkit-background-size: cover; + -moz-background-size: cover; + -o-background-size: cover; + background-size: cover; +} +/* Remove the background from the body element */ +.lockscreen > body { + background: transparent; +} +/* We will put the dynamically generated digital clock here */ +.lockscreen .headline { + color: #fff; + text-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5); + font-weight: 300; + -webkit-font-smoothing: antialiased !important; + opacity: 0.8; + margin: 10px 0 30px 0; + font-size: 90px; +} +@media screen and (max-width: 480px) { + .lockscreen .headline { + font-size: 60px; + margin-bottom: 40px; + } +} +/* User name [optional] */ +.lockscreen .lockscreen-name { + text-align: center; + font-weight: 600; + font-size: 16px; +} +/* Will contain the image and the sign in form */ +.lockscreen-item { + padding: 0; + background: #fff; + position: relative; + background-clip: padding-box; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + margin: 10px auto; + width: 290px; +} +.lockscreen-item:before, +.lockscreen-item:after { + content: " "; + display: table; +} +.lockscreen-item:after { + clear: both; +} +.lockscreen-item:before, +.lockscreen-item:after { + content: " "; + display: table; +} +.lockscreen-item:after { + clear: both; +} +.lockscreen-item:before, +.lockscreen-item:after { + display: table; + content: " "; +} +.lockscreen-item:after { + clear: both; +} +.lockscreen-item:before, +.lockscreen-item:after { + display: table; + content: " "; +} +.lockscreen-item:after { + clear: both; +} +/* User image */ +.lockscreen-item > .lockscreen-image { + position: absolute; + left: -10px; + top: -30px; + background: #fff; + padding: 10px; + background-clip: padding-box; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; + z-index: 10; +} +.lockscreen-item > .lockscreen-image > img { + width: 70px; + height: 70px; + background-clip: padding-box; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; +} +/* Contains the password input and the login button */ +.lockscreen-item > .lockscreen-credentials { + margin-left: 80px; +} +.lockscreen-item > .lockscreen-credentials input { + border: 0 !important; +} +.lockscreen-item > .lockscreen-credentials .btn { + background-color: #fff; + border: 0; +} +/* Extra to give the user an option to navigate the website [optional]*/ +.lockscreen-link { + margin-top: 30px; + text-align: center; +} +/* + Page: register and login +*/ +.form-box { + width: 360px; + margin: 90px auto 0 auto; +} +.form-box .header { + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 0; + -webkit-border-bottom-left-radius: 0; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 0; + -moz-border-radius-bottomleft: 0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + background: #3d9970; + box-shadow: inset 0px -3px 0px rgba(0, 0, 0, 0.2); + padding: 20px 10px; + text-align: center; + font-size: 26px; + font-weight: 300; + color: #fff; +} +.form-box .body, +.form-box .footer { + padding: 10px 20px; + background: #fff; + color: #444; +} +.form-box .body > .form-group, +.form-box .footer > .form-group { + margin-top: 20px; +} +.form-box .body > .form-group > input, +.form-box .footer > .form-group > input { + border: #fff; +} +.form-box .body > .btn, +.form-box .footer > .btn { + margin-bottom: 10px; +} +.form-box .footer { + -webkit-border-top-left-radius: 0; + -webkit-border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -moz-border-radius-topleft: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 4px; + -moz-border-radius-bottomleft: 4px; + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +@media (max-width: 767px) { + .form-box { + width: 90%; + } +} +/* + Page: 404 and 500 error pages +------------------------------------ +*/ +.error-page { + width: 600px; + margin: 20px auto 0 auto; +} +@media screen and (max-width: 767px) { + .error-page { + width: 100%; + } +} +.error-page > .headline { + float: left; + font-size: 100px; + font-weight: 300; +} +@media screen and (max-width: 767px) { + .error-page > .headline { + float: none; + text-align: center; + } +} +.error-page > .error-content { + margin-left: 190px; + display: block; +} +@media screen and (max-width: 767px) { + .error-page > .error-content { + margin-left: 0; + } +} +.error-page > .error-content > h3 { + font-weight: 300; + font-size: 25px; +} +@media screen and (max-width: 767px) { + .error-page > .error-content > h3 { + text-align: center; + } +} +.error-page:before, +.error-page:after { + content: " "; + display: table; +} +.error-page:after { + clear: both; +} +.error-page:before, +.error-page:after { + content: " "; + display: table; +} +.error-page:after { + clear: both; +} +.error-page:before, +.error-page:after { + display: table; + content: " "; +} +.error-page:after { + clear: both; +} +.error-page:before, +.error-page:after { + display: table; + content: " "; +} +.error-page:after { + clear: both; +} +/* + Page: Invoice +*/ +.invoice { + position: relative; + width: 90%; + margin: 10px auto; + background: #fff; + border: 1px solid #f4f4f4; +} +.invoice-title { + margin-top: 0; +} +/* Enhancement for printing */ +@media print { + .invoice { + width: 100%; + border: 0; + margin: 0; + padding: 0; + } + .invoice-col { + float: left; + width: 33.3333333%; + } + .table-responsive { + overflow: auto; + } + .table-responsive > .table tr th, + .table-responsive > .table tr td { + white-space: normal!important; + } +} +/* + Skins + ----- +*/ +/* + Skin Blue + --------- +*/ +/* skin-blue navbar */ +.skin-blue .navbar { + background-color: #3c8dbc; +} +.skin-blue .navbar .nav a { + color: rgba(255, 255, 255, 0.8); +} +.skin-blue .navbar .nav > li > a:hover, +.skin-blue .navbar .nav > li > a:active, +.skin-blue .navbar .nav > li > a:focus, +.skin-blue .navbar .nav .open > a, +.skin-blue .navbar .nav .open > a:hover, +.skin-blue .navbar .nav .open > a:focus { + background: rgba(0, 0, 0, 0.1); + color: #f6f6f6; +} +.skin-blue .navbar .navbar-right > .nav { + margin-right: 10px; +} +.skin-blue .navbar .sidebar-toggle .icon-bar { + background: rgba(255, 255, 255, 0.8); +} +.skin-blue .navbar .sidebar-toggle:hover .icon-bar { + background: #f6f6f6 !important; +} +/* skin-blue logo */ +.skin-blue .logo { + background-color: #367fa9; + color: #f9f9f9; +} +.skin-blue .logo > a { + color: #f9f9f9; +} +.skin-blue .logo:hover { + background: #357ca5; +} +/* skin-blue content header */ +.skin-blue .right-side > .content-header { + background: #fbfbfb; + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); +} +/* Skin-blue user panel */ +.skin-blue .user-panel > .image > img { + border: 1px solid #dfdfdf; +} +.skin-blue .user-panel > .info, +.skin-blue .user-panel > .info > a { + color: #555555; +} +/* skin-blue sidebar */ +.skin-blue .sidebar { + border-bottom: 1px solid #fff; +} +.skin-blue .sidebar > .sidebar-menu > li { + border-top: 1px solid #fff; + border-bottom: 1px solid #dbdbdb; +} +.skin-blue .sidebar > .sidebar-menu > li:first-of-type { + border-top: 1px solid #dbdbdb; +} +.skin-blue .sidebar > .sidebar-menu > li:first-of-type > a { + border-top: 1px solid #fff; +} +.skin-blue .sidebar > .sidebar-menu > li > a { + margin-right: 1px; +} +.skin-blue .sidebar > .sidebar-menu > li > a:hover, +.skin-blue .sidebar > .sidebar-menu > li.active > a { + color: #222; + background: #f9f9f9; +} +.skin-blue .sidebar > .sidebar-menu > li > .treeview-menu { + margin: 0 1px; + background: #f9f9f9; +} +.skin-blue .left-side { + background: #f4f4f4; + -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1); + -moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1); + box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07); +} +.skin-blue .sidebar a { + color: #555555; +} +.skin-blue .sidebar a:hover { + text-decoration: none; +} +.skin-blue .treeview-menu > li > a { + color: #777; +} +.skin-blue .treeview-menu > li.active > a, +.skin-blue .treeview-menu > li > a:hover { + color: #111; +} +.skin-blue .sidebar-form { + background-clip: padding-box; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + border: 1px solid #dbdbdb; + margin: 10px 10px; +} +.skin-blue .sidebar-form input[type="text"], +.skin-blue .sidebar-form .btn { + box-shadow: none; + background-color: #fafafa; + border: 1px solid #fafafa; + height: 35px; +} +.skin-blue .sidebar-form input[type="text"] { + color: #666; + -webkit-border-top-left-radius: 2px !important; + -webkit-border-top-right-radius: 0 !important; + -webkit-border-bottom-right-radius: 0 !important; + -webkit-border-bottom-left-radius: 2px !important; + -moz-border-radius-topleft: 2px !important; + -moz-border-radius-topright: 0 !important; + -moz-border-radius-bottomright: 0 !important; + -moz-border-radius-bottomleft: 2px !important; + border-top-left-radius: 2px !important; + border-top-right-radius: 0 !important; + border-bottom-right-radius: 0 !important; + border-bottom-left-radius: 2px !important; +} +.skin-blue .sidebar-form input[type="text"]:focus, +.skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn { + background-color: #fff; + color: #666; +} +.skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn { + border-left-color: #fff; +} +.skin-blue .sidebar-form .btn { + color: #999; + -webkit-border-top-left-radius: 0 !important; + -webkit-border-top-right-radius: 2px !important; + -webkit-border-bottom-right-radius: 2px !important; + -webkit-border-bottom-left-radius: 0 !important; + -moz-border-radius-topleft: 0 !important; + -moz-border-radius-topright: 2px !important; + -moz-border-radius-bottomright: 2px !important; + -moz-border-radius-bottomleft: 0 !important; + border-top-left-radius: 0 !important; + border-top-right-radius: 2px !important; + border-bottom-right-radius: 2px !important; + border-bottom-left-radius: 0 !important; +} +/* + Skin Black + -------- +*/ +/* skin-black navbar */ +.skin-black .navbar { + background-color: #ffffff; + border-bottom: 1px solid #eee; +} +.skin-black .navbar .nav a { + color: #333333; +} +.skin-black .navbar .nav > li > a:hover, +.skin-black .navbar .nav > li > a:active, +.skin-black .navbar .nav > li > a:focus, +.skin-black .navbar .nav .open > a, +.skin-black .navbar .nav .open > a:hover, +.skin-black .navbar .nav .open > a:focus { + background: #ffffff; + color: #999999; +} +.skin-black .navbar .navbar-right > .nav { + margin-right: 10px; +} +.skin-black .navbar .sidebar-toggle .icon-bar { + background: #333333; +} +.skin-black .navbar .sidebar-toggle:hover .icon-bar { + background: #999999 !important; +} +/* skin-black logo */ +.skin-black .logo { + background-color: #333333; + color: #f9f9f9; +} +.skin-black .logo > a { + color: #f9f9f9; +} +.skin-black .logo:hover { + background: #303030; +} +/* skin-black content header */ +.skin-black .right-side > .content-header { + background: transparent; + box-shadow: none; +} +/* Skin-red user panel */ +.skin-black .user-panel > .image > img { + border: 1px solid #444; +} +.skin-black .user-panel > .info, +.skin-black .user-panel > .info > a { + color: #eee; +} +/* skin-black sidebar */ +.skin-black .sidebar { + border-bottom: 1px solid #333; +} +.skin-black .sidebar > .sidebar-menu > li { + border-top: 1px solid #333; + border-bottom: 0px solid #444; +} +.skin-black .sidebar > .sidebar-menu > li:first-of-type { + border-top: 1px solid #444; +} +.skin-black .sidebar > .sidebar-menu > li:first-of-type > a { + border-top: 0px solid #333; +} +.skin-black .sidebar > .sidebar-menu > li > a { + margin-right: 1px; +} +.skin-black .sidebar > .sidebar-menu > li > a:hover, +.skin-black .sidebar > .sidebar-menu > li.active > a { + color: #f6f6f6; + background: #444; +} +.skin-black .sidebar > .sidebar-menu > li > .treeview-menu { + margin: 0 1px; + background: #444; +} +.skin-black .left-side { + background: #333; +} +.skin-black .sidebar a { + color: #eee; +} +.skin-black .sidebar a:hover { + text-decoration: none; +} +.skin-black .treeview-menu > li > a { + color: #ccc; +} +.skin-black .treeview-menu > li.active > a, +.skin-black .treeview-menu > li > a:hover { + color: #fff; +} +.skin-black .sidebar-form { + background-clip: padding-box; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + border: 0px solid #555; + margin: 10px 10px; +} +.skin-black .sidebar-form input[type="text"], +.skin-black .sidebar-form .btn { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.1); + border: 0 solid rgba(255, 255, 255, 0.1); + height: 35px; + outline: none; +} +.skin-black .sidebar-form input[type="text"] { + color: #666; + -webkit-border-top-left-radius: 2px !important; + -webkit-border-top-right-radius: 0 !important; + -webkit-border-bottom-right-radius: 0 !important; + -webkit-border-bottom-left-radius: 2px !important; + -moz-border-radius-topleft: 2px !important; + -moz-border-radius-topright: 0 !important; + -moz-border-radius-bottomright: 0 !important; + -moz-border-radius-bottomleft: 2px !important; + border-top-left-radius: 2px !important; + border-top-right-radius: 0 !important; + border-bottom-right-radius: 0 !important; + border-bottom-left-radius: 2px !important; +} +.skin-black .sidebar-form input[type="text"]:focus, +.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn { + background-color: #444; + border: 0; +} +.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn { + border-left: 0; +} +.skin-black .sidebar-form .btn { + color: #999; + -webkit-border-top-left-radius: 0 !important; + -webkit-border-top-right-radius: 2px !important; + -webkit-border-bottom-right-radius: 2px !important; + -webkit-border-bottom-left-radius: 0 !important; + -moz-border-radius-topleft: 0 !important; + -moz-border-radius-topright: 2px !important; + -moz-border-radius-bottomright: 2px !important; + -moz-border-radius-bottomleft: 0 !important; + border-top-left-radius: 0 !important; + border-top-right-radius: 2px !important; + border-bottom-right-radius: 2px !important; + border-bottom-left-radius: 0 !important; + border-left: 0; +} +/* Syntax for creating class for custom button color +.btn-className { + // bootstrap mixin for changing button color + // the color values should be given in hex format + .button-variant(@color; @background; @border); +} +*/ +/* Sample Code for custom button color classes */ +/*.btn-oemOn { + .button-variant(white, Orange, Tomato); +} +.btn-oemOff { + .button-variant(#ffffff, #4682B4, #4682B4); +} +.btn-oemDisabled { + .button-variant(#ffffff, SlateGray, SlateGray); +}*/ +@keyframes pulse-nr-color { + from { + background: #c92107; + } + to { + background: rgba(247, 44, 12, 0.8); + } +} +@keyframes pulse-c-color { + from { + background: #ff4500; + } + to { + background: rgba(255, 69, 0, 0.8); + } +} +@-webkit-keyframes pulse-nr-color { + from { + background: #c92107; + } + to { + background: rgba(247, 44, 12, 0.8); + } +} +@-webkit-keyframes pulse-c-color { + from { + background: #ff4500; + } + to { + background: rgba(255, 69, 0, 0.8); + } +} +.cards .sensor { + border: 2px solid rgba(0, 0, 0, 0); + cursor: pointer; +} +.cards .sensor .reading { + position: relative; + color: white; + border-radius: 50%; + width: 150px; + height: 150px; + margin: 0px auto; + animation-duration: 1s; + -webkit-animation-duration: 1s; + -moz-animation-duration: 1s; + -ms-animation-duration: 1s; + -o-animation-duration: 1s; + animation-direction: alternate; + -webkit-animation-direction: alternate; + -moz-animation-direction: alternate; + -ms-animation-direction: alternate; + -o-animation-direction: alternate; + -webkit-animation-timing-function: ease-in-out; + -moz-animation-timing-function: ease-in-out; + -ms-animation-timing-function: ease-in-out; + -o-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + -webkit-animation-iteration-count: 10; + -moz-animation-iteration-count: 10; + -ms-animation-iteration-count: 10; + -o-animation-iteration-count: 10; + animation-iteration-count: 10; +} +.cards .sensor .reading .chart { + font-family: 'robotolight'; +} +.cards .sensor .thresholds { + display: none; +} +.cards .sensor.nr .reading { + background: #c92107; + -webkit-animation-name: pulse-nr-color; + -moz-animation-name: pulse-nr-color; + -ms-animation-name: pulse-nr-color; + -o-animation-name: pulse-nr-color; + animation-name: pulse-nr-color; +} +.cards .sensor.c .reading { + background: #ff4500; + -webkit-animation-name: pulse-c-color; + -moz-animation-name: pulse-c-color; + -ms-animation-name: pulse-c-color; + -o-animation-name: pulse-c-color; + animation-name: pulse-c-color; +} +.cards .sensor.nc .reading { + background: #f39c12; +} +.cards .sensor.n .reading { + background: rgba(0, 153, 0, 0.7); +} +.cards .sensor:hover .reading h3 { + font-size: 1.5em; +} +.noscan-sensor h5 { + box-shadow: 0px 0px 2px #aaa; + background: rgba(238, 238, 238, 0.9); + padding: 5px 10px; +} +.small-sensor-icon { + display: inline-block; + padding: 0px 10px; + width: 2em; + text-align: center; +} +#discrete-sensor-content tr, +#normal-sensor-content tr { + cursor: pointer; +} +/* +@header-border: fadeout(#73A2BD, 20); + +h4.categorize { + display: inline-block; + clear: both; + background: white; + color: #444; + i { + margin-right: 7px; + } + border: 1px solid @header-border; + border-radius: 10px; + padding: 5px; + + &:before { + border: 1px solid @header-border; + width: 100%; + //content: ' '; + //position: absolute; + } + + &:after { + border-top: 1px solid @header-border; + width: 100%; + content: ' '; + position: absolute; + margin: 7px 0px 0px 7px; + } +} +*/ +.info, +.progress-info { + text-align: center; +} +.delay-0 { + -webkit-animation-delay: 0.5s; + -moz-animation-delay: 0.5s; + -ms-animation-delay: 0.5s; + -o-animation-delay: 0.5s; + animation-delay: 0.5s; +} +.delay-1 { + -webkit-animation-delay: 1s; + -moz-animation-delay: 1s; + -ms-animation-delay: 1s; + -o-animation-delay: 1s; + animation-delay: 1s; +} +.delay-2 { + -webkit-animation-delay: 1.5s; + -moz-animation-delay: 1.5s; + -ms-animation-delay: 1.5s; + -o-animation-delay: 1.5s; + animation-delay: 1.5s; +} +.delay-3 { + -webkit-animation-delay: 2s; + -moz-animation-delay: 2s; + -ms-animation-delay: 2s; + -o-animation-delay: 2s; + animation-delay: 2s; +} +.delay-4 { + -webkit-animation-delay: 2.5s; + -moz-animation-delay: 2.5s; + -ms-animation-delay: 2.5s; + -o-animation-delay: 2.5s; + animation-delay: 2.5s; +} +.delay-5 { + -webkit-animation-delay: 3s; + -moz-animation-delay: 3s; + -ms-animation-delay: 3s; + -o-animation-delay: 3s; + animation-delay: 3s; +} +.delay-6 { + -webkit-animation-delay: 3.5s; + -moz-animation-delay: 3.5s; + -ms-animation-delay: 3.5s; + -o-animation-delay: 3.5s; + animation-delay: 3.5s; +} +.delay-7 { + -webkit-animation-delay: 4s; + -moz-animation-delay: 4s; + -ms-animation-delay: 4s; + -o-animation-delay: 4s; + animation-delay: 4s; +} +.delay-8 { + -webkit-animation-delay: 4.5s; + -moz-animation-delay: 4.5s; + -ms-animation-delay: 4.5s; + -o-animation-delay: 4.5s; + animation-delay: 4.5s; +} +.delay-9 { + -webkit-animation-delay: 5s; + -moz-animation-delay: 5s; + -ms-animation-delay: 5s; + -o-animation-delay: 5s; + animation-delay: 5s; +} +.delay-10 { + -webkit-animation-delay: 5.5s; + -moz-animation-delay: 5.5s; + -ms-animation-delay: 5.5s; + -o-animation-delay: 5.5s; + animation-delay: 5.5s; +} +a.big-button { + display: block; + position: relative; + background: #ffffff; + border-top: 2px solid #c1c1c1; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + width: 100%; + box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); + border-top: 0px; +} +a.big-button.box-primary { + border-top-color: whitesmoke; +} +a.big-button.box-info { + border-top-color: #00c0ef; +} +a.big-button.box-danger { + border-top-color: #f56954; +} +a.big-button.box-warning { + border-top-color: #f39c12; +} +a.big-button.box-success { + border-top-color: #00a65a; +} +a.big-button.height-control .box-body { + max-height: 300px; + overflow: auto; +} +a.big-button .box-header { + position: relative; + -webkit-border-top-left-radius: 3px; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 0; + -webkit-border-bottom-left-radius: 0; + -moz-border-radius-topleft: 3px; + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 0; + -moz-border-radius-bottomleft: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + border-bottom: 0px solid #f4f4f4; + color: #444; + padding-bottom: 10px; +} +a.big-button .box-header:before, +a.big-button .box-header:after { + content: " "; + display: table; +} +a.big-button .box-header:after { + clear: both; +} +a.big-button .box-header:before, +a.big-button .box-header:after { + content: " "; + display: table; +} +a.big-button .box-header:after { + clear: both; +} +a.big-button .box-header:before, +a.big-button .box-header:after { + display: table; + content: " "; +} +a.big-button .box-header:after { + clear: both; +} +a.big-button .box-header:before, +a.big-button .box-header:after { + display: table; + content: " "; +} +a.big-button .box-header:after { + clear: both; +} +a.big-button .box-header > .fa, +a.big-button .box-header > .glyphicon, +a.big-button .box-header > .ion, +a.big-button .box-header .box-title { + display: inline-block; + padding: 10px 0px 10px 10px; + margin: 0; + font-size: 20px; + font-weight: 400; + float: left; + cursor: default; +} +a.big-button .box-header a { + color: #444; +} +a.big-button .box-header > .box-tools { + padding: 5px 10px 5px 5px; +} +a.big-button .box-body { + padding: 10px; + -webkit-border-top-left-radius: 0; + -webkit-border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 3px; + -webkit-border-bottom-left-radius: 3px; + -moz-border-radius-topleft: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 3px; + -moz-border-radius-bottomleft: 3px; + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +a.big-button .box-body > table, +a.big-button .box-body > .table { + margin-bottom: 0; +} +a.big-button .box-body.chart-responsive { + width: 100%; + overflow: hidden; +} +a.big-button .box-body > .chart { + position: relative; + overflow: hidden; + width: 100%; +} +a.big-button .box-body > .chart svg, +a.big-button .box-body > .chart canvas { + width: 100%!important; +} +a.big-button .box-body .fc { + margin-top: 5px; +} +a.big-button .box-body .fc-header-title h2 { + font-size: 15px; + line-height: 1.6em; + color: #666; + margin-left: 10px; +} +a.big-button .box-body .fc-header-right { + padding-right: 10px; +} +a.big-button .box-body .fc-header-left { + padding-left: 10px; +} +a.big-button .box-body .fc-widget-header { + background: #fafafa; + box-shadow: inset 0px -3px 1px rgba(0, 0, 0, 0.02); +} +a.big-button .box-body .fc-grid { + width: 100%; + border: 0; +} +a.big-button .box-body .fc-widget-header:first-of-type, +a.big-button .box-body .fc-widget-content:first-of-type { + border-left: 0; + border-right: 0; +} +a.big-button .box-body .fc-widget-header:last-of-type, +a.big-button .box-body .fc-widget-content:last-of-type { + border-right: 0; +} +a.big-button .box-body .table { + margin-bottom: 0; +} +a.big-button .box-body .full-width-chart { + margin: -19px; +} +a.big-button .box-body.no-padding .full-width-chart { + margin: -9px; +} +a.big-button .box-footer { + border-top: 1px solid #f4f4f4; + -webkit-border-top-left-radius: 0; + -webkit-border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 3px; + -webkit-border-bottom-left-radius: 3px; + -moz-border-radius-topleft: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 3px; + -moz-border-radius-bottomleft: 3px; + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; + padding: 10px; + background-color: #ffffff; +} +a.big-button.box-solid { + border-top: 0px; +} +a.big-button.box-solid > .box-header { + padding-bottom: 0px!important; +} +a.big-button.box-solid > .box-header .btn.btn-default { + background: transparent; +} +a.big-button.box-solid.box-primary > .box-header { + color: #fff; + background: #3c8dbc; + background-color: #3c8dbc; +} +a.big-button.box-solid.box-primary > .box-header a { + color: #444; +} +a.big-button.box-solid.box-info > .box-header { + color: #fff; + background: #00c0ef; + background-color: #00c0ef; +} +a.big-button.box-solid.box-info > .box-header a { + color: #444; +} +a.big-button.box-solid.box-danger > .box-header { + color: #fff; + background: #f56954; + background-color: #f56954; +} +a.big-button.box-solid.box-danger > .box-header a { + color: #444; +} +a.big-button.box-solid.box-warning > .box-header { + color: #fff; + background: #f39c12; + background-color: #f39c12; +} +a.big-button.box-solid.box-warning > .box-header a { + color: #444; +} +a.big-button.box-solid.box-success > .box-header { + color: #fff; + background: #00a65a; + background-color: #00a65a; +} +a.big-button.box-solid.box-success > .box-header a { + color: #444; +} +a.big-button.box-solid > .box-header > .box-tools > .btn { + border: 0; + box-shadow: none; +} +a.big-button.box-solid.collapsed-box .box-header { + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +a.big-button.box-solid[class*='bg'] > .box-header { + color: #fff; +} +a.big-button .box-group > .box { + margin-bottom: 5px; +} +a.big-button .knob-label { + text-align: center; + color: #333; + font-weight: 100; + font-size: 12px; + margin-bottom: 0.3em; +} +a.big-button .todo-list { + margin: 0; + padding: 0px 0px; + list-style: none; +} +a.big-button .todo-list > li { + background-clip: padding-box; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + padding: 10px; + background: #f3f4f5; + margin-bottom: 2px; + border-left: 2px solid #e6e7e8; + color: #444; +} +a.big-button .todo-list > li:last-of-type { + margin-bottom: 0; +} +a.big-button .todo-list > li.danger { + border-left-color: #f56954; +} +a.big-button .todo-list > li.warning { + border-left-color: #f39c12; +} +a.big-button .todo-list > li.info { + border-left-color: #00c0ef; +} +a.big-button .todo-list > li.success { + border-left-color: #00a65a; +} +a.big-button .todo-list > li.primary { + border-left-color: #3c8dbc; +} +a.big-button .todo-list > li > input[type='checkbox'] { + margin: 0 10px 0 5px; +} +a.big-button .todo-list > li .text { + display: inline-block; + margin-left: 5px; + font-weight: 600; +} +a.big-button .todo-list > li .label { + margin-left: 10px; + font-size: 9px; +} +a.big-button .todo-list > li .tools { + display: none; + float: right; + color: #f56954; +} +a.big-button .todo-list > li .tools > .fa, +a.big-button .todo-list > li .tools > .glyphicon, +a.big-button .todo-list > li .tools > .ion { + margin-right: 5px; + cursor: pointer; +} +a.big-button .todo-list > li:hover .tools { + display: inline-block; +} +a.big-button .todo-list > li.done { + color: #999; +} +a.big-button .todo-list > li.done .text { + text-decoration: line-through; + font-weight: 500; +} +a.big-button .todo-list > li.done .label { + background: #eaeaec !important; +} +a.big-button .todo-list .handle { + display: inline-block; + cursor: move; + margin: 0 5px; +} +a.big-button .chat { + padding: 5px 20px 5px 10px; +} +a.big-button .chat .item { + margin-bottom: 10px; +} +a.big-button .chat .item:before, +a.big-button .chat .item:after { + content: " "; + display: table; +} +a.big-button .chat .item:after { + clear: both; +} +a.big-button .chat .item:before, +a.big-button .chat .item:after { + content: " "; + display: table; +} +a.big-button .chat .item:after { + clear: both; +} +a.big-button .chat .item:before, +a.big-button .chat .item:after { + display: table; + content: " "; +} +a.big-button .chat .item:after { + clear: both; +} +a.big-button .chat .item:before, +a.big-button .chat .item:after { + display: table; + content: " "; +} +a.big-button .chat .item:after { + clear: both; +} +a.big-button .chat .item > img { + width: 40px; + height: 40px; + border: 2px solid transparent; + background-clip: padding-box !important; + -webkit-border-radius: 50% !important; + -moz-border-radius: 50% !important; + border-radius: 50% !important; +} +a.big-button .chat .item > img.online { + border: 2px solid #00a65a; +} +a.big-button .chat .item > img.offline { + border: 2px solid #f56954; +} +a.big-button .chat .item > .message { + margin-left: 55px; + margin-top: -40px; +} +a.big-button .chat .item > .message > .name { + display: block; + font-weight: 600; +} +a.big-button .chat .item > .attachment { + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + background: #f0f0f0; + margin-left: 65px; + margin-right: 15px; + padding: 10px; +} +a.big-button .chat .item > .attachment > h4 { + margin: 0 0 5px 0; + font-weight: 600; + font-size: 14px; +} +a.big-button .chat .item > .attachment > p, +a.big-button .chat .item > .attachment > .filename { + font-weight: 600; + font-size: 13px; + font-style: italic; + margin: 0; +} +a.big-button .chat .item > .attachment:before, +a.big-button .chat .item > .attachment:after { + content: " "; + display: table; +} +a.big-button .chat .item > .attachment:after { + clear: both; +} +a.big-button .chat .item > .attachment:before, +a.big-button .chat .item > .attachment:after { + content: " "; + display: table; +} +a.big-button .chat .item > .attachment:after { + clear: both; +} +a.big-button .chat .item > .attachment:before, +a.big-button .chat .item > .attachment:after { + display: table; + content: " "; +} +a.big-button .chat .item > .attachment:after { + clear: both; +} +a.big-button .chat .item > .attachment:before, +a.big-button .chat .item > .attachment:after { + display: table; + content: " "; +} +a.big-button .chat .item > .attachment:after { + clear: both; +} +a.big-button > .overlay, +a.big-button > .loading-img { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +a.big-button > .overlay { + z-index: 1010; + background: rgba(255, 255, 255, 0.7); +} +a.big-button > .overlay.dark { + background: rgba(0, 0, 0, 0.5); +} +a.big-button > .loading-img { + z-index: 1020; + background: transparent url('../img/ajax-loader1.gif') 50% 50% no-repeat; +} +a.big-button > .box-header { + padding-bottom: 0px!important; +} +a.big-button > .box-header .btn.btn-default { + background: transparent; +} +a.big-button.box-primary > .box-header { + color: #fff; + background: #3c8dbc; + background-color: #3c8dbc; +} +a.big-button.box-primary > .box-header a { + color: #444; +} +a.big-button.box-info > .box-header { + color: #fff; + background: #00c0ef; + background-color: #00c0ef; +} +a.big-button.box-info > .box-header a { + color: #444; +} +a.big-button.box-danger > .box-header { + color: #fff; + background: #f56954; + background-color: #f56954; +} +a.big-button.box-danger > .box-header a { + color: #444; +} +a.big-button.box-warning > .box-header { + color: #fff; + background: #f39c12; + background-color: #f39c12; +} +a.big-button.box-warning > .box-header a { + color: #444; +} +a.big-button.box-success > .box-header { + color: #fff; + background: #00a65a; + background-color: #00a65a; +} +a.big-button.box-success > .box-header a { + color: #444; +} +a.big-button > .box-header > .box-tools > .btn { + border: 0; + box-shadow: none; +} +a.big-button.collapsed-box .box-header { + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +a.big-button[class*='bg'] > .box-header { + color: #fff; +} +a.big-button .icon { + text-align: center; + font-size: 3em; + color: #333333; + -webkit-transition: font-size 1s ease; + -moz-transition: font-size 1s ease; + -o-transition: font-size 1s ease; + -ms-transition: font-size 1s ease; + transition: font-size 1s ease; +} +a.big-button .name { + display: block; + text-align: center; + color: #333333; +} +a.big-button:hover .icon { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; + -webkit-animation-name: pulse; + animation-name: pulse; +} +.pad10 { + padding: 10px; +} +.box.box-solid.bg-gray-transparent { + background: rgba(238, 238, 238, 0.9); +} +@media screen and (max-width: 992px) { + a.big-button .icon { + display: inline-block; + font-size: 1.5em; + float: left; + margin: 1px 10px; + } + a.big-button .name { + display: inline-block; + text-align: left; + margin: 5px 0px; + } + a.big-button .overlap { + left: 2%; + font-size: 1em!important; + } +} +.form-control { + color: #222222; +} +.input-group-addon { + color: #333333; +} +h3.store-heading { + font-family: 'Source Sans Pro'; + font-weight: 300; + font-style: normal; +} +.remote-view { + margin: 0px auto; +} +.toolbar { + margin: 0px auto; +} +.toolbar div { + padding: 4px 0px; +} +.toolbar div span { + margin-bottom: 5px; +} +.toolbar div span.right-align { + text-align: right; + margin-right: 15px; +} +.toolbar div span i { + color: #ccc; +} +.btn-file { + position: relative; + overflow: hidden; +} +.btn-file input[type=file] { + position: absolute; + top: 0; + right: 0; + min-width: 100%; + min-height: 100%; + font-size: 999px; + text-align: right; + filter: alpha(opacity=0); + opacity: 0; + background: red; + cursor: inherit; + display: block; +} +input[readonly] { + background-color: white !important; + cursor: text !important; +} +.iconic { + font-size: 3.5em; + top: 10px; + position: relative; +} +.iconic.fa { + top: 20px; +} +.tags span { + display: inline-block; + background: #e6e6e6; + border-radius: .1em; + text-shadow: 1px 1px 1px #fff; + padding: 2px 4px; + color: #727272; +} +.list-item { + background: white; + border-radius: .1em; + box-shadow: 0px 0px 2px #aaa; + height: 110px; +} +.list-item a { + color: #555; +} +.orderSort { + list-style-type: none; + padding: 0px; +} +.orderSort li { + border: 1px dashed #ddd; + border-bottom: none; + list-style-type: none; + padding: 15px 10px; + text-align: center; +} +.orderSort li:last-child { + border-bottom: 1px dashed #ddd; +} +.sortableList { + border: 1px solid lightblue; + padding: 5px; +} +.knob-label { + color: white!important; + font-size: 1.1em!important; + font-weight: 400!important; + text-align: left!important; +} +.knob-label.text-center { + text-align: center!important; +} +.knob-label-dark { + color: grey!important; + font-size: 1.1em!important; + font-weight: 400!important; + text-align: left!important; +} +#sensor-dashboard { + background: #DD4B39; +} +#sensor-dashboard .box-header { + color: white!important; + margin-bottom: .5em; + background: rgba(0, 0, 0, 0.05); + padding-bottom: .1em; +} +#sensor-dashboard.success { + background: #00C66B; +} +#sensor-dashboard .box-footer { + border-top: none; + box-shadow: inset 0px 2px 4px #ccc; +} +#sensor-dashboard h3 small { + color: white; + display: inline-block; + padding-left: 4px; + font-size: .9em; +} +.box-footer .title { + padding-left: 10px; +} +.calendar { + border-top: 0px!important; +} +.calendar .box-header { + color: white; + background: #69D8D8; + padding-bottom: 0; +} +.calendar .box-header .btn-primary { + background-color: rgba(0, 0, 0, 0.2); + border: 0; +} +.box .box-body .fc-widget-header { + background: transparent; +} +.fc-state-default { + background: none!important; + border: none!important; + box-shadow: none!important; +} +.fc-state-highlight { + /* TODO: add .fc-today to ; */ + background: rgba(255, 255, 255, 0.25); +} +.fc-event { + background-color: rgba(0, 150, 10, 0.2); + color: slategrey; + border: 0; + /* background: cadetblue;*/ +} +/* easy pie chart */ +.easyPieChart { + position: relative; + text-align: center; +} +.chart { + text-align: center; + margin: 20px; +} +.chart i { + font-size: 2em; + position: relative; + top: -3px; +} +.chart .percentage { + text-align: center; + color: #fff; + font-weight: 100; + font-size: 1.2em; + width: 42px; + margin: 0px auto; + margin-top: 40px; +} +.chart canvas { + position: absolute; + top: 1.35em; + left: 1.5em; +} +.sensor-title { + border-radius: 0px 0px 5px 5px; + text-align: center; + padding: 5px; + font-size: 1.2em; + width: 160px; + margin: 0px auto; +} +/* end - easy pie chart */ +.qsi { + line-height: 2.5em; + cursor: pointer; +} +.qsi-icon { + text-align: center!important; +} +.timeline:before { + width: 2.5px; + background: #0073b7; + left: 47px; +} +.timeline > li > .timeline-item { + margin-top: 0px; +} +.timeline > li > .timeline-item .timeline-header { + border-bottom: 0px; +} +.timeline > li > .timeline-item .timeline-header.expanded { + border-bottom: 1px solid #f4f4f4; +} +.timeline > li > .timeline-item .timeline-body, +.timeline > li > .timeline-item .timeline-footer { + display: none; +} +.timeline > li > .timeline-item .timeline-body.expanded, +.timeline > li > .timeline-item .timeline-footer.expanded { + display: block; +} +.graph-container { + padding: 3em; +} +.event-graph { + background: darkturquoise; + text-align: center; + padding: 4em; +} +.event-graph h2 { + color: white; +} +.event-graph-title { + background: white; + padding: 10px 25px 25px; + color: #777; + box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); +} +@media screen and (max-width: 992px) { + label[for='iddate_range_end'] { + display: none; + } + .graph-container { + padding: 1em; + } + .event-graph { + padding: .5em; + } + .event-graph-title h2 { + font-size: 1.2em; + } + .qsi { + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + border-top: 1px solid rgba(255, 255, 255, 0.15); + } +} +.filters { + background: white; + box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); + margin: 20px 0px; + padding: 20px 10px; +} +.login { + width: 40em; + height: 40em; + border: 1px solid deepskyblue; + line-height: 5em; + margin: 100px auto; + border-radius: 50%; + padding: 10em; + color: white; + background: deepskyblue; +} +.login form legend { + color: white; + border-bottom: none; +} +html, +body { + -webkit-transition: background 500ms ease-in-out; + -moz-transition: background 500ms ease-in-out; + -o-transition: background 500ms ease-in-out; + -ms-transition: background 500ms ease-in-out; + transition: background 500ms ease-in-out; +} +.prespective { + -webkit-perspective: 1000px; + -moz-perspective: 1000px; + text-align: center; +} +@keyframes threed { + 0% { + transform: rotateY(0deg); + } + 30% { + transform: rotateY(20deg); + } + 100% { + transform: rotateY(360deg); + } +} +@-webkit-keyframes threed { + 0% { + -webkit-transform: rotateY(0deg); + } + 30% { + -webkit-transform: rotateY(20deg); + } + 100% { + -webkit-transform: rotateY(360deg); + } +} +.animate { + -webkit-animation: threed 5s ease-in-out; + -moz-animation: threed 5s ease-in-out; + animation: threed 5s ease-in-out; +} +#kvm_textbox { + opacity: 0; + width: 20; + height: 20; + position: absolute; + z-index: 1000; + cursor: none; +} +input { + padding: 4px; +} +.tasks-head, +.scripts-head { + color: black; + font-weight: bold; + border-bottom: 1px solid #f5f5f5; + background: white; +} +.tasks-head div, +.scripts-head div { + padding: .5em; +} +.tasks-list, +.scripts-list { + background: white; +} +.tasks-list div div, +.scripts-list div div { + padding: .5em; +} +.tasks-container, +.scripts-container { + background: white; + box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); +} +select.normal { + border: 1px solid #ccc; + padding: 6px 12px; + background: white; +} +.tasks-container.edit h5 { + font-weight: bold; + color: deepskyblue; +} +.tasks-container.edit label { + font-weight: normal; +} +ul.list { + list-style-type: none; + margin: 0; + padding: 0; + height: 250px; + overflow-y: auto; + background: azure; + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px; + border: 1px solid rgba(0, 0, 0, 0.2); +} +ul.list > .navbar-header, +ul.list > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 767px) { + ul.list > .navbar-header, + ul.list > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} +ul.list li { + margin: 0; + padding: 3px; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); + background: white; + margin-left: -15px; + margin-right: -15px; +} +ul.list li:last-child { + box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2); +} +ul.list li button { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +#execution-list { + border: 1px solid rgba(0, 0, 0, 0.2); + height: 250px; + background: azure; + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px; +} +#execution-list > .navbar-header, +#execution-list > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 767px) { + #execution-list > .navbar-header, + #execution-list > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} +#execution-list small { + display: inline-block; + padding-top: 20%; +} +#execution-list > div { + border-bottom: 1px solid rgba(0, 0, 0, 0.2); + padding: 3px; + background: white; + margin-left: -15px; + margin-right: -15px; +} +#execution-list > div:last-child { + box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2); +} +.text-right { + text-align: right; +} +.text-left { + text-align: left; +} +.import-tab { + padding: 5px; +} +.icheckbox_square-blue, +.iradio_square-blue { + margin: 0px 8px 0px 0px; +} +.nothing-today, +.nothing-30day { + position: relative; + top: 120px; + height: 0; +} +.remote-view input[type="file"] { + display: inline-block; +} +.remote-view input[disabled], +.remote-view input[disabled="disabled"] { + background: whitesmoke; + color: #ccc; +} +.notifications-menu .dropdown-menu .menu a { + -webkit-box-shadow: inset 0px -10px 10px #f5f5f5; + box-shadow: inset 0px -10px 10px #f5f5f5; +} +.notifications-menu .dropdown-menu .menu a span { + display: inline-block; + width: 78%; + vertical-align: bottom; + padding: 2px 0px; + height: 50px; + overflow: hidden; + white-space: normal; +} +.notifications-menu .dropdown-menu .menu a:last-child { + -webkit-box-shadow: none; + box-shadow: none; +} +.notifications-menu .dropdown-menu .menu a .glyphicon, +.notifications-menu .dropdown-menu .menu a .fa, +.notifications-menu .dropdown-menu .menu a .ion { + width: 20%; +} +.help { + font-size: 1.4em; + padding: 7px 0px; +} +.help a { + color: darkseagreen!important; +} +.list-add-item a { + color: skyblue; +} +.list-add-item a .contents { + line-height: 4.2em; + font-size: 1.4em; +} +.footable-sort-indicator:before { + content: "\f0dc" !important; + font-family: "fontawesome"; +} +.footable-sorted .footable-sort-indicator:before { + content: "\f0de" !important; + font-family: "fontawesome"; +} +.footable-sorted-desc .footable-sort-indicator:before { + content: "\f0dd" !important; + font-family: "fontawesome"; +} +.breakpoint .footable-toggle:before { + content: "\f196" !important; + font-family: "fontawesome" !important; +} +.breakpoint .footable-detail-show .footable-toggle:before { + content: "\f147" !important; + font-family: "fontawesome" !important; +} +#server-icon { + display: inline-block; + padding: 10px 15px; + font-size: 1.4em; + background: deepskyblue; + color: white; +} +#user-icon { + display: inline-block; + padding: 10px 20px; + font-size: 2.4em; + background: lightgray; + border: 5px solid darkgray; + color: white; +} +#live-reading-text { + font-size: 1.4em; + font-weight: bold; + text-align: center; +} +.alert { + padding: 10px!important; + margin-left: 0px!important; + position: relative; +} +.alert-info { + background-color: aliceblue!important; + border-color: aliceblue!important; + border-radius: 1px!important; +} +.overlap { + position: absolute; + left: 45%; + font-size: 2em!important; + top: 0px; +} +.cpudiv { + float: left; + margin-top: 10px; +} +.cputab { + margin-top: 0px; + height: 380px; + margin-left: 80px; + width: 100px; + border: 1px; + cursor: pointer; +} +.cputd { + background-color: Gold; + text-align: center; + vertical-align: middle; +} +.cpulbl { + vertical-align: middle; + text-align: center; + padding-top: 20px; + font-weight: bold; +} +.dimmdiv { + float: left; + border: 0px solid #000; + margin-left: 20px; +} +.dimmtab { + width: 10%; +} +.dimmtd { + text-align: center; + vertical-align: middle; +} +.dimmtr { + cursor: pointer; + background-color: Green; + color: white; + font-weight: bold; +} +.dimmlbl { + vertical-align: middle; + text-align: center; + padding-top: 20px; +} +.pcidiv { + float: left; +} +.pcitab { + margin-top: 30px; + height: 10px; + margin-left: 90px; + width: 100px; + border: 1px; +} +.pcitr { + cursor: pointer; + background-color: Green; + color: white; + font-weight: bold; +} +.pcitd { + text-align: center; + vertical-align: middle; +} +.pcilbl { + vertical-align: middle; + text-align: center; + padding-top: 20px; +} +.dimmchannal { + float: left; + width: 80px; + height: 0px; + border: solid; + margin-left: 70px; + position: absolute; +} +.dimmchannallbl { + vertical-align: central; + text-align: center; + margin-top: -25px; + position: absolute; +} +.pcichannal { + float: left; + width: 90px; + height: 0px; + border: solid; + margin-top: 40px; + margin-left: 250px; + position: absolute; +} +.pcichannallbl { + vertical-align: central; + text-align: center; + padding-top: 0px; + margin-top: -25px; + position: absolute; +} +@-moz-keyframes spin { + 0% { + -moz-transform: rotate(0deg); + } + 100% { + -moz-transform: rotate(359deg); + } +} +@-webkit-keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + } +} +@-o-keyframes spin { + 0% { + -o-transform: rotate(0deg); + } + 100% { + -o-transform: rotate(359deg); + } +} +@-ms-keyframes spin { + 0% { + -ms-transform: rotate(0deg); + } + 100% { + -ms-transform: rotate(359deg); + } +} +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(359deg); + } +} +.ion-load-d { + animation: spin 1s infinite linear; +} +#map_x { + position: absolute; + top: 0; + bottom: 0; + width: 0; + border-left: 1px solid rgba(60, 141, 188, 0.5); + transition: left 50ms ease-out; +} +#map_y { + position: absolute; + left: 0; + right: 0; + height: 0; + border-top: 1px solid rgba(60, 141, 188, 0.5); + transition: top 50ms ease-out; +} +.map-bg { + background-color: #3c8dbc; + border-radius: 3px; + padding: 1px; +} +#id_map_inner { + padding-bottom: 50%; + background-position-x: 50%; + background-position-y: 50%; + background-repeat-x: initial; + background-repeat-y: initial; + background-attachment: initial; + background-origin: initial; + background-clip: initial; + background-color: initial; + background-size: cover; + position: relative; + border-radius: 2px; +} +#id_map_inner span { + width: 6px; + height: 6px; + margin: -3px 0 0 -3px; + background: #fff; + position: absolute; + border-radius: 3px; + border: 1px solid #3c8dbc; +} +#id_map_inner span.tz-clicked { + border: 1px solid #1A4964; +} +.roText { + font-size: 20px; + text-align: center; +} +.tsReadOnly { + padding: 6px 0px; + border: none; +} +.col-center { + float: none; + margin: 0 auto; +} +.disable_a_href { + pointer-events: none; + opacity: 0.5; +} +.disable_click { + pointer-events: none; + cursor: default; +} +.tooltip-inner { + min-width: 150px; +} +.client-validation { + background-color: #f2dede; + border-color: #ebccd1; + color: #a94442; + padding: 10px!important; + margin-left: 0px!important; + position: relative; + padding-right: 35px; + border-radius: 4px; + margin-bottom: 20px; + display: none; +} +.testalert_btn { + position: absolute; + bottom: 5px; + right: 15px; + width: 50%; +} +.pagination { + margin: 20px 0; +} +.pagination ul { + display: inline-block; + *display: inline; + margin-bottom: 0; + margin-left: 0; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + *zoom: 1; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} +.pagination ul > li { + display: inline; +} +.pagination ul > li > a, +.pagination ul > li > span { + float: left; + padding: 4px 12px; + line-height: 20px; + text-decoration: none; + background-color: #ffffff; + border: 1px solid #dddddd; + border-left-width: 0; +} +.pagination ul > li > a:hover, +.pagination ul > li > a:focus, +.pagination ul > .active > a, +.pagination ul > .active > span { + background-color: #f5f5f5; +} +.pagination ul > .active > a, +.pagination ul > .active > span { + color: #999999; + cursor: default; +} +.pagination ul > .disabled > span, +.pagination ul > .disabled > a, +.pagination ul > .disabled > a:hover, +.pagination ul > .disabled > a:focus { + color: #999999; + cursor: default; + background-color: transparent; +} +.pagination ul > li:first-child > a, +.pagination ul > li:first-child > span { + border-left-width: 1px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-topleft: 4px; +} +.pagination ul > li:last-child > a, +.pagination ul > li:last-child > span { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 4px; +} +.pagination-centered { + text-align: center; +} +.pagination-right { + text-align: right; +} +.pagination-large ul > li > a, +.pagination-large ul > li > span { + padding: 11px 19px; + font-size: 17.5px; +} +.pagination-large ul > li:first-child > a, +.pagination-large ul > li:first-child > span { + -webkit-border-bottom-left-radius: 6px; + border-bottom-left-radius: 6px; + -webkit-border-top-left-radius: 6px; + border-top-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + -moz-border-radius-topleft: 6px; +} +.pagination-large ul > li:last-child > a, +.pagination-large ul > li:last-child > span { + -webkit-border-top-right-radius: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + border-bottom-right-radius: 6px; + -moz-border-radius-topright: 6px; + -moz-border-radius-bottomright: 6px; +} +.pagination-mini ul > li:first-child > a, +.pagination-small ul > li:first-child > a, +.pagination-mini ul > li:first-child > span, +.pagination-small ul > li:first-child > span { + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -moz-border-radius-topleft: 3px; +} +.pagination-mini ul > li:last-child > a, +.pagination-small ul > li:last-child > a, +.pagination-mini ul > li:last-child > span, +.pagination-small ul > li:last-child > span { + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; +} +.pagination-small ul > li > a, +.pagination-small ul > li > span { + padding: 2px 10px; + font-size: 11.9px; +} +.pagination-mini ul > li > a, +.pagination-mini ul > li > span { + padding: 0 6px; + font-size: 10.5px; +} +.processing_bg_outer { + z-index: 1100; + position: absolute; +} +.processing_bg_inner { + position: fixed; + width: 100%; + height: 100%; + background-color: #000000; + opacity: 0.4; +} +.processing_img_outer { + z-index: 1100; + position: fixed; + top: 50%; + left: 50%; + overflow: visible; +} +.processing_img_inner { + position: relative; + max-width: 100%; + max-height: 100%; + margin-top: -50%; + margin-left: -32%; +} +.processing_content { + margin-top: 3%; + position: relative; + margin-left: -49%; + font-size: 25px; + font-weight: bold; + color: #F9F9F9; +} +/*h5 兼容Safari浏览器*/ +#remote-div { + -webkit-user-select: none; +} +#kvm_textbox { + -webkit-user-select: none; +} +#scroll_div { + -webkit-user-select: none; +} +#kvm { + -webkit-user-select: none; +} +#cursor_canvas { + -webkit-user-select: none; +} +/*h5 兼容Safari浏览器*/ diff --git a/InManageBoot-ui/public/kvm/5270m6.min.js b/InManageBoot-ui/public/kvm/5270m6.min.js new file mode 100644 index 0000000000000000000000000000000000000000..e6f41d8cb7fc3ccc8fcbc3bea633061964cd9b39 --- /dev/null +++ b/InManageBoot-ui/public/kvm/5270m6.min.js @@ -0,0 +1,37 @@ +!function(){ + window.hostname = window.host; + window.protocol = window.protocol; + window.port = window.port; + window.sessionStorage.setItem("privilege_id", window.privilege_id); + window.sessionStorage.setItem("garc", window.garc); + window.sessionStorage.setItem("extended_privilege", window.extended_privilege); + window.sessionStorage.setItem("vmedia_access", window.vmedia_access); + window.sessionStorage.setItem("kvm_access", window.kvm_access); + window.sessionStorage.setItem("features", JSON.stringify(window.features)); + function l(){return!1}function n(l){window.keyboard_language!=l&&($("#kbd_layout_dialog").show(),kbddialogticker=setInterval(function(){var l=parseInt($("#kbd_time_left").html());l>0?$("#kbd_time_left").html(l-1):$("#kbd_layout_dialog").trigger("closeDialog")},DIALOG_TIMER))}function e(l){switch(null!=window.keyboard_language&&n(l),l){case KEYBOARD_LAYOUTS.DE:$("#kl-select").appendTo($("#kbd_layout_ger")),window.keyboard_language=KEYBOARD_LAYOUTS.DE;break;case KEYBOARD_LAYOUTS.JP:$("#kl-select").appendTo($("#kbd_layout_jap")),window.keyboard_language=KEYBOARD_LAYOUTS.JP;break;case KEYBOARD_LAYOUTS.EN_US:$("#kl-select").appendTo($("#kbd_layout_eng")),window.keyboard_language=KEYBOARD_LAYOUTS.EN_US;break;default:$("#kl-select").appendTo($("#kbd_layout_eng")),window.keyboard_language=KEYBOARD_LAYOUTS.EN_US}l==KEYBOARD_LAYOUTS.DE?(null==usbgerkbd&&(usbgerkbd=new tn),usbkbd=usbgerkbd):l==KEYBOARD_LAYOUTS.JP?(null==usbjapkbd&&(usbjapkbd=new ln),usbkbd=usbjapkbd):(null==usbengkbd&&(usbengkbd=new q),usbkbd=usbengkbd),null==usbkbdmsg&&(usbkbdmsg=new un),usbkbdmsg.setUSBKeyProcessor(usbkbd)}function u(l){try{if("function"!=typeof l.getModifierState)throw"Unable to perform LED Sync";switch(l.keyCode){case 20:$("#caps_lock").click();break;case 144:$("#num_lock").click();break;case 145:$("#scr_lock").click()}}catch(n){console.log(n)}}function o(l,n){if(null!=l&&$(l).length>0){n=-1!=n.indexOf("btn-")?n:BTN_DISABLED;var e=$(l).attr("class").split(" ");e.forEach(function(l,t){"undefined"!=typeof l&&"btn-xs"!=l&&(e[t]=l.replace(/^btn-.*/g,n))}),$(l).attr("class",e.join().replace(/,/g," "))}}function r(){l()?($(document).bind("touchmove",!1),$("#notify_download").hide(),$("#button_video_recording").hide(),$("#touch_kbd").show(),$("#num_div").hide(),$("#mouse_pad").show(),$("#dock_kbd").show(),$("#lg-statusbar").hide()):($("#lg-statusbar").show(),$("#notify_download").show(),$("#button_video_recording").show(),$("#touch_kbd").hide(),$("#num_div").hide(),$("#mouse_pad").hide(),$("#dock_kbd").hide()),l()&&$(window).on("orientationchange",function(){this.device_orientation=window.orientation?1:0})}function s(l){In=l}function a(){return In}function c(l,n){var e=document.getElementById("macro_dialog_input");$("#err_DuplicateMacro").hide(vn),e.value.split("+").length0&&(e.value=e.value.concat("+"),En=En.concat("+")),e.value=e.value.concat(Cn[l]),En=En.concat(l,"+",n),n==An.KEY_LOCATION_LEFT?e.value=e.value.concat("(Left)"):n==An.KEY_LOCATION_RIGHT&&(e.value=e.value.concat("(Right)"))):$("#err_SingleMacroLimit").show(vn)}function d(l){for(var n=[0],e=_n-1;e>=0;e--){var t=l&mn;n[e]=t,l=(l-t)/pn}return n}function h(l){for(var n=0,e=0;ea;a++){o="",r="";for(var c=0;dn>c;c++)n=h(l.subarray(u,u+_n)),u+=_n,e=h(l.subarray(u,u+_n)),u+=_n,0!=n&&0!=e&&(0!=o.length&&(o=o.concat("+")),0!=r.length&&(r=r.concat("+")),e=parseInt(e)-1,n=Nn[n]?Nn[n]:n,o=o.concat(Cn[n]),r=r.concat(n.toString(),"+",e.toString()),e==An.KEY_LOCATION_LEFT?o=o.concat("(Left)"):e==An.KEY_LOCATION_RIGHT&&(o=o.concat("(Right)")));0!=o.length&&0!=r.length&&"undefined"==typeof t[o]&&(t[o]=r,i.push(o))}s(t),$("#usr_macros_list").empty(),$("#usr_macros_menu").empty(),$("#usr_macros_menu").append('
  • '+window.CommonStrings.t("remote_control:add")+" "+window.CommonStrings.t("remote_control:hotkeys")+'
  • '),i.forEach(function(l){g(l)})}function p(l,n,e){if(Dn.setUSBKeyProcessor(An),Tn&&(l=On[l]?On[l]:l),Dn.set(l,n,e),1!=window._video.isVideoPaused&&window._video.sock.validated){var t=Dn.report();window._video.sock.send(t.buffer)}}function m(l){for(var n,e,t=l.split("+"),u=0;u=0;)e=parseInt(t[u--]),n=parseInt(t[u--]),p(n,e,!1)}function g(l){var n=document.getElementById("usr_macros_list"),e=document.getElementById("usr_macros_menu"),t=new RegExp("[*|+|-|/|||)|(| |.]","g"),u=l.replace(t,"");$("#macroDivider").show(),$(n).append('
  • '+l+'
  • '),$(e).append('
  • '+l+"
  • "),$(n).on("click","#btn_"+u,function(){var l=0,n="",e=a();n=$(this).attr("id").substring(wn);var t=document.getElementById(n),u=document.getElementById("HK_"+n),i=$(u).text();for(var o in e)e.hasOwnProperty(o)&&(o==i&&(delete e[o],$(t).off("click"),$(u).off("click"),$(t).remove(),$(u).remove()),l++);s(e),l>0?$("#macroDivider").show():$("#macroDivider").hide()}),$(e).on("click","#HK_"+u,function(l){l.preventDefault();var n=a(),e=$(l.target).text();"undefined"!==n[e]&&m(n[e])})}function v(l){for(var n=[0],e=0;_n>e;e++){var t=l&mn;n[e]=t,l=(l-t)/pn}return n}function w(l,n){null!=l&&null!=n&&"undefined"!=typeof l&&"undefined"!=typeof n&&(NOTIFICATION_COLLECTION=l,NOTIFICATION_MODEL=n)}function b(){var l=new Date,n=new Date(l.getTime()-6e4*l.getTimezoneOffset()).toISOString().replace(/z|t/gi," ").trim();return n=n.substr(2,n.indexOf(".")-2),"["+n+"] "}function S(l,n,e,t,u){return null==l||"string"!=typeof l||0==l.length?void console.error("Invalid notification message"):((null==NOTIFICATION_COLLECTION||null==NOTIFICATION_MODEL)&&(console.error("Error: Notification collection / model is not initialized."),NOTIFICATION_COLLECTION=window.NotifyCollection,NOTIFICATION_MODEL=window.NotifyModel),t=null==t||"string"!=typeof t?(new Date).getTime().toString():t.replace(new RegExp("[*|+|-|/|||)|(| |.]","g"),"0"),(null==u||"string"!=typeof u)&&(u=DEFAULT_NOTIFICATION_MSG_GROUP),(null==e||"string"!=typeof e||-1==Object.keys(NOTIFICATION).indexOf(e.toUpperCase()))&&(e=NOTIFICATION.INFO),void NOTIFICATION_COLLECTION.add(new NOTIFICATION_MODEL({id:t,message_group:u,message:l,timeStamp:b(),showTimeStampInDropdown:1==n?!0:!1,severity:e})))}function k(l,n){return null==l||"string"!=typeof l||l.length<=0?void console.log("Error: Invalid element id. Cannot add tooltip."):((null==n||"string"!=typeof n||n.length<=0)&&(n=""),void $("#"==l[0]?l:"#"+l).attr("title",n))}function E(l,n){(void 0==l||null==l)&&(l=DEFAULT_PROCESSING_TEXT);var e=$("#processing_content").text().toString();if($("#processing_content").html(l),$("#processing_maindiv").show(),void 0!=n&&null!=n&&0/0!=parseInt(n))var t=setInterval(function(){n>0?n--:I(t,e)},DIALOG_TIMER)}function I(l,n){void 0!=l&&null!=l&&clearInterval(l),(void 0==n||null==n)&&(n=DEFAULT_PROCESSING_TEXT),$("#processing_content").html(n),$("#processing_maindiv").hide()}function T(){switch(BROWSER){case"IE":if(window.ActiveXObject)return!0;break;case"Firefox":if(window.globalStorage)return!0;break;case"Safari":if(parseInt(navigator.appVersion.match(/version\/(\d+)/i)[1])<7)return!0;break;case"Chrome":if(D()<16)return!0;break;case"Unknown":}return!1}function D(){var l=navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./);return null!=l?parseInt(l[2]):0}function A(l){C(),O(l),N()}function C(){this.previous_cursorWidth<1||this.previous_cursorHeight<1||"undefined"==typeof this.previous_cursorWidth||"undefined"==typeof this.previous_cursorHeight||(this.cursor_context.restore(),this.cursor_context.clearRect(this.previous_xpos,this.previous_ypos,this.previous_cursorWidth,this.previous_cursorHeight))}function O(l){buffer=l.readUint8Array(13),this.cursorType=buffer[0],this.checksum=buffer[1]|buffer[2]<<8|buffer[3]<<16|buffer[4]<<24,this.xpos=buffer[5]|buffer[6]<<8,this.ypos=buffer[7]|buffer[8]<<8,this.xoffset=buffer[9]|buffer[10]<<8,this.yoffset=buffer[11]|buffer[12]<<8,buffer=null,delete buffer,l.byteLength>13&&1!=l.isEof()&&(this.m_pattern=l.readInt16Array(parseInt((l.byteLength-13)/2)))}function N(){var l=64;if(this.cursorWidth=this.canvas.width-this.xpos32&&(this.cursorWidth=32),this.cursorHeight=this.canvas.height-this.ypos=this.canvas.height))for(y=0;y<64-this.xoffset;y++)y+this.xpos>=this.canvas.width||(this.CursorData=this.m_pattern[64*(x+this.yoffset)+(y+this.xoffset)],this.cursorColorData[0]=(3840&this.CursorData)>>4,this.cursorColorData[1]=240&this.CursorData,this.cursorColorData[2]=(15&this.CursorData)<<4,1==this.cursorType?(Alpha=(61440&this.CursorData)>>12,this.currentCursorArea.data[n+3]=Alpha<<4,this.currentCursorArea.data[n+0]=(15-Alpha)*this.currentCursorArea.data[n+0]/15+Alpha*this.cursorColorData[0]/15,this.currentCursorArea.data[n+1]=(15-Alpha)*this.currentCursorArea.data[n+1]/15+Alpha*this.cursorColorData[1]/15,this.currentCursorArea.data[n+2]=(15-Alpha)*this.currentCursorArea.data[n+2]/15+Alpha*this.cursorColorData[2]/15):(ANDBit=(32768&this.CursorData)>>15,XORBit=(16384&this.CursorData)>>14,e=4*((x+ypos)*this.canvas.width+(y+xpos)),0==ANDBit?(this.currentCursorArea.data[n+2]=this.cursorColorData[2],this.currentCursorArea.data[n+1]=this.cursorColorData[1],this.currentCursorArea.data[n+0]=this.cursorColorData[0],this.currentCursorArea.data[n+3]=255):0!=XORBit&&(this.currentCursorArea.data[n+2]=255-this.videoimageBuffer.data[e+2],this.currentCursorArea.data[n+1]=255-this.videoimageBuffer.data[e+1],this.currentCursorArea.data[n+0]=255-this.videoimageBuffer.data[e+0],this.currentCursorArea.data[n+3]=255)),n+=4);M()}}}function M(){this.cursor_context.putImageData(this.currentCursorArea,this.xpos,this.ypos,0,0,this.cursorWidth,this.cursorHeight),this.cursor_context.save(),delete this.currentCursorArea,this.currentCursorArea=null,delete this.videoimageBuffer,this.videoimageBuffer=null}var L,R,U;!function(l){function n(l,n){return g.call(l,n)}function e(l,n){var e,t,u,i,o,r,s,a,c,d,h,f=n&&n.split("/"),_=p.map,m=_&&_["*"]||{};if(l&&"."===l.charAt(0))if(n){for(f=f.slice(0,f.length-1),l=l.split("/"),o=l.length-1,p.nodeIdCompat&&w.test(l[o])&&(l[o]=l[o].replace(w,"")),l=f.concat(l),c=0;c0&&(l.splice(c-1,2),c-=2)}l=l.join("/")}else 0===l.indexOf("./")&&(l=l.substring(2));if((f||m)&&_){for(e=l.split("/"),c=e.length;c>0;c-=1){if(t=e.slice(0,c).join("/"),f)for(d=f.length;d>0;d-=1)if(u=_[f.slice(0,d).join("/")],u&&(u=u[t])){i=u,r=c;break}if(i)break;!s&&m&&m[t]&&(s=m[t],a=c)}!i&&s&&(i=s,r=a),i&&(e.splice(0,r,i),l=e.join("/"))}return l}function t(n,e){return function(){return c.apply(l,v.call(arguments,0).concat([n,e]))}}function u(l){return function(n){return e(n,l)}}function i(l){return function(n){f[l]=n}}function o(e){if(n(_,e)){var t=_[e];delete _[e],m[e]=!0,a.apply(l,t)}if(!n(f,e)&&!n(m,e))throw new Error("No "+e);return f[e]}function r(l){var n,e=l?l.indexOf("!"):-1;return e>-1&&(n=l.substring(0,e),l=l.substring(e+1,l.length)),[n,l]}function s(l){return function(){return p&&p.config&&p.config[l]||{}}}var a,c,d,h,f={},_={},p={},m={},g=Object.prototype.hasOwnProperty,v=[].slice,w=/\.js$/;d=function(l,n){var t,i=r(l),s=i[0];return l=i[1],s&&(s=e(s,n),t=o(s)),s?l=t&&t.normalize?t.normalize(l,u(n)):e(l,n):(l=e(l,n),i=r(l),s=i[0],l=i[1],s&&(t=o(s))),{f:s?s+"!"+l:l,n:l,pr:s,p:t}},h={require:function(l){return t(l)},exports:function(l){var n=f[l];return"undefined"!=typeof n?n:f[l]={}},module:function(l){return{id:l,uri:"",exports:f[l],config:s(l)}}},a=function(e,u,r,s){var a,c,p,g,v,w,b=[],y=typeof r;if(s=s||e,"undefined"===y||"function"===y){for(u=!u.length&&r.length?["require","exports","module"]:u,v=0;v0&&n-1 in l}function t(l,n,e){if(ln.isFunction(n))return ln.grep(l,function(l,t){return!!n.call(l,t,l)!==e});if(n.nodeType)return ln.grep(l,function(l){return l===n!==e});if("string"==typeof n){if(an.test(n))return ln.filter(n,l,e);n=ln.filter(n,l)}return ln.grep(l,function(l){return G.call(n,l)>=0!==e})}function u(l,n){for(;(l=l[n])&&1!==l.nodeType;);return l}function i(l){var n=mn[l]={};return ln.each(l.match(pn)||[],function(l,e){n[e]=!0}),n}function o(){J.removeEventListener("DOMContentLoaded",o,!1),l.removeEventListener("load",o,!1),ln.ready()}function r(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=ln.expando+Math.random()}function s(l,n,e){var t;if(void 0===e&&1===l.nodeType)if(t="data-"+n.replace(Sn,"-$1").toLowerCase(),e=l.getAttribute(t),"string"==typeof e){try{e="true"===e?!0:"false"===e?!1:"null"===e?null:+e+""===e?+e:yn.test(e)?ln.parseJSON(e):e}catch(u){}bn.set(l,n,e)}else e=void 0;return e}function a(){return!0}function c(){return!1}function d(){try{return J.activeElement}catch(l){}}function h(l,n){return ln.nodeName(l,"table")&&ln.nodeName(11!==n.nodeType?n:n.firstChild,"tr")?l.getElementsByTagName("tbody")[0]||l.appendChild(l.ownerDocument.createElement("tbody")):l}function f(l){return l.type=(null!==l.getAttribute("type"))+"/"+l.type,l}function _(l){var n=Fn.exec(l.type);return n?l.type=n[1]:l.removeAttribute("type"),l}function p(l,n){for(var e=0,t=l.length;t>e;e++)wn.set(l[e],"globalEval",!n||wn.get(n[e],"globalEval"))}function m(l,n){var e,t,u,i,o,r,s,a;if(1===n.nodeType){if(wn.hasData(l)&&(i=wn.access(l),o=wn.set(n,i),a=i.events)){delete o.handle,o.events={};for(u in a)for(e=0,t=a[u].length;t>e;e++)ln.event.add(n,u,a[u][e])}bn.hasData(l)&&(r=bn.access(l),s=ln.extend({},r),bn.set(n,s))}}function g(l,n){var e=l.getElementsByTagName?l.getElementsByTagName(n||"*"):l.querySelectorAll?l.querySelectorAll(n||"*"):[];return void 0===n||n&&ln.nodeName(l,n)?ln.merge([l],e):e}function v(l,n){var e=n.nodeName.toLowerCase();"input"===e&&Tn.test(l.type)?n.checked=l.checked:("input"===e||"textarea"===e)&&(n.defaultValue=l.defaultValue)}function w(n,e){var t,u=ln(e.createElement(n)).appendTo(e.body),i=l.getDefaultComputedStyle&&(t=l.getDefaultComputedStyle(u[0]))?t.display:ln.css(u[0],"display");return u.detach(),i}function b(l){var n=J,e=Kn[l];return e||(e=w(l,n),"none"!==e&&e||(Hn=(Hn||ln("