├── .gitignore ├── README.md ├── package.json ├── ssr_react_streaming_example_a ├── .babelrc ├── .gitignore ├── api │ └── ssr.js ├── components │ └── Navigation.jsx ├── devserver.js ├── federation-stats-plugin.js ├── noop.js ├── package.json ├── pages │ ├── index.jsx │ └── test.jsx ├── runtime │ ├── bootstrap.js │ ├── client │ │ └── index.jsx │ ├── routing │ │ └── routes.jsx │ └── server │ │ └── index.jsx └── webpack.config.js ├── ssr_react_streaming_example_b ├── .babelrc ├── .gitignore ├── api │ └── ssr.js ├── components │ └── Navigation.jsx ├── devserver.js ├── federation-stats-plugin.js ├── noop.js ├── package.json ├── pages │ ├── index.jsx │ └── test.jsx ├── runtime │ ├── bootstrap.js │ ├── client │ │ └── index.jsx │ ├── routing │ │ └── routes.jsx │ └── server │ │ └── index.jsx └── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .npmrc 2 | node_modules/ 3 | 4 | ssr_react_streaming_example_a/_git/ 5 | ssr_react_streaming_example_b/_git/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ssr-react-streaming-example 2 | React SSR Streaming Example 3 | 4 | Install and start dev servers: 5 | 6 | ```bash 7 | > yarn 8 | > yarn dev 9 | ``` 10 | 11 | If things don't load on :5000 and :5001 respectively, type `rs` and hit enter a few times to try to restart the servers. 12 | 13 | If this doesn't work, just cd to the individual packages and run `yarn dev` in each starting with "b". 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "name": "ssr-react-streaming-example", 4 | "version": "1.0.0", 5 | "main": "index.js", 6 | "license": "MIT", 7 | "workspaces": [ 8 | "ssr_react_streaming_example_a", 9 | "ssr_react_streaming_example_b" 10 | ], 11 | "scripts": { 12 | "dev": "run-p dev:*", 13 | "dev:a": "yarn workspace ssr_react_streaming_example_a dev", 14 | "dev:b": "yarn workspace ssr_react_streaming_example_b dev" 15 | }, 16 | "devDependencies": { 17 | "npm-run-all": "^4.1.5" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/preset-env", "@babel/preset-react"] 3 | } 4 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/api/ssr.js: -------------------------------------------------------------------------------- 1 | import bootstrap from "../dist/server/runtime/main"; 2 | 3 | const initPromise = bootstrap().then((r) => r.default); 4 | 5 | export default async (req, res) => { 6 | try { 7 | const server = await initPromise; 8 | const html = await server(req.query.location || ""); 9 | res.send(html); 10 | } catch (err) { 11 | console.error(err); 12 | res.send("ERROR :("); 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/components/Navigation.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Link } from "react-router-dom"; 3 | 4 | export default function Navigation() { 5 | return ( 6 | 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/devserver.js: -------------------------------------------------------------------------------- 1 | const express = require("express"); 2 | 3 | const bootstrap = require("./dist/server/runtime/main").default; 4 | 5 | const app = express(); 6 | 7 | app.use("/_static", express.static("./dist")); 8 | 9 | const initPromise = bootstrap(); 10 | app.get("/*", async (req, res) => { 11 | const server = (await initPromise).default; 12 | const html = await server(req.path); 13 | res.send(html); 14 | res.end(); 15 | }); 16 | 17 | app.listen(5000, () => console.log("SERVER STARTED")); 18 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/federation-stats-plugin.js: -------------------------------------------------------------------------------- 1 | const webpack = require("webpack"); 2 | 3 | const PLUGIN_NAME = "FederationStatsPlugin"; 4 | 5 | class FederationStatsPlugin { 6 | constructor(options = { filename: "federation-stats.json" }) { 7 | if (!options || !options.filename) { 8 | throw new Error("filename option is required."); 9 | } 10 | 11 | this._options = options; 12 | } 13 | 14 | apply(compiler) { 15 | const federationPlugin = 16 | compiler.options.plugins && 17 | compiler.options.plugins.find( 18 | (plugin) => plugin.constructor.name === "ModuleFederationPlugin" 19 | ); 20 | 21 | if (!federationPlugin) { 22 | throw new Error("No ModuleFederationPlugin found."); 23 | } 24 | 25 | const exposedFiles = new Map( 26 | Object.entries(federationPlugin._options.exposes || {}).map(([k, v]) => [ 27 | v, 28 | k, 29 | ]) 30 | ); 31 | 32 | compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation) => { 33 | compilation.hooks.processAssets.tapPromise( 34 | { 35 | name: PLUGIN_NAME, 36 | stage: compilation.constructor.PROCESS_ASSETS_STAGE_REPORT, 37 | }, 38 | async () => { 39 | const stats = compilation.getStats().toJson({}); 40 | 41 | const modules = stats.modules.filter( 42 | (mod) => 43 | mod.issuerName === "container entry" && exposedFiles.has(mod.name) 44 | ); 45 | 46 | const chunks = modules.map((mod) => { 47 | const exposedAs = exposedFiles.get(mod.name); 48 | const chunks = mod.chunks.map((chunkId) => 49 | stats.chunks.find((chunk) => chunk.id === chunkId) 50 | ); 51 | 52 | return { 53 | mod: exposedAs, 54 | chunks: chunks.reduce((p, c) => { 55 | c.siblings.forEach((s) => { 56 | const chunk = stats.chunks.find((c) => c.id === s); 57 | // const isShared = chunk.modules.some( 58 | // (m) => m.moduleType === "consume-shared-module" 59 | // ); 60 | 61 | // if (!isShared) { 62 | chunk.files.forEach((f) => p.push(f)); 63 | // } 64 | }); 65 | c.files.forEach((f) => p.push(f)); 66 | return p; 67 | }, []), 68 | }; 69 | }); 70 | 71 | const exposes = chunks.reduce( 72 | (p, c) => Object.assign(p, { [c.mod]: c.chunks }), 73 | {} 74 | ); 75 | 76 | const remote = 77 | (federationPlugin._options.library && 78 | federationPlugin._options.library.name) || 79 | federationPlugin._options.name; 80 | 81 | const statsResult = { 82 | remote, 83 | exposes, 84 | }; 85 | 86 | const statsJson = JSON.stringify(statsResult); 87 | const statsBuffer = Buffer.from(statsJson, "utf-8"); 88 | const statsSource = { 89 | source: () => statsBuffer, 90 | size: () => statsBuffer.length, 91 | }; 92 | 93 | const filename = this._options.filename; 94 | 95 | const asset = compilation.getAsset(filename); 96 | if (asset) { 97 | compilation.updateAsset(filename, statsSource); 98 | } else { 99 | compilation.emitAsset(filename, statsSource); 100 | } 101 | } 102 | ); 103 | }); 104 | } 105 | } 106 | 107 | module.exports = FederationStatsPlugin; 108 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/ssr-react-streaming-example/d1bf6878e67f6fb725051dcc3978ca81ab9a51ae/ssr_react_streaming_example_a/noop.js -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ssr_react_streaming_example_a", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "webpack", 8 | "dev": "run-p dev:*", 9 | "dev:watch": "webpack --watch", 10 | "dev:start": "nodemon --watch ./dist ./devserver.js", 11 | "start": "node ./dist/server/runtime/main.js", 12 | "postinstall": "webpack" 13 | }, 14 | "keywords": [], 15 | "author": "", 16 | "license": "ISC", 17 | "dependencies": { 18 | "express": "^4.17.1", 19 | "react": "^17.0.1", 20 | "react-dom": "^17.0.1", 21 | "react-helmet-async": "^1.0.7", 22 | "react-router-dom": "^5.2.0" 23 | }, 24 | "devDependencies": { 25 | "@babel/core": "^7.12.7", 26 | "@babel/polyfill": "^7.12.1", 27 | "@babel/preset-env": "^7.12.7", 28 | "@babel/preset-react": "^7.12.7", 29 | "babel-loader": "^8.2.1", 30 | "nodemon": "^2.0.6", 31 | "npm-run-all": "^4.1.5", 32 | "webpack": "^5.6.0", 33 | "webpack-cli": "^4.2.0", 34 | "@jacob-ebey/webpack-node-http-chunk-loading-plugin": "0.0.2", 35 | "webpack-stats-plugin": "^1.0.2" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/pages/index.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Helmet } from "react-helmet-async"; 3 | import { Link } from "react-router-dom"; 4 | 5 | import Navigation from "../components/Navigation"; 6 | 7 | export default function Index() { 8 | return ( 9 | <> 10 | 11 | A Home 12 | 13 | 14 |

A Home Page

15 | 16 | 17 | 18 | ); 19 | } 20 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/pages/test.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Helmet } from "react-helmet-async"; 3 | import { Link } from "react-router-dom"; 4 | 5 | import Navigation from "../components/Navigation"; 6 | 7 | export default function Test() { 8 | return ( 9 | <> 10 | 11 | A Test 12 | 13 | 14 |

A Test Page

15 | 16 | 17 | 18 | ); 19 | } 20 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/runtime/bootstrap.js: -------------------------------------------------------------------------------- 1 | export default function bootstrap() { 2 | if (__BUILD_ENV__ === "client") { 3 | import("./client/index"); 4 | } else { 5 | return import("./server/index"); 6 | } 7 | } 8 | 9 | if (__BUILD_ENV__ === "client") { 10 | bootstrap(); 11 | } 12 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/runtime/client/index.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { hydrate } from "react-dom"; 3 | import { BrowserRouter, matchPath, Route, Switch } from "react-router-dom"; 4 | import { HelmetProvider } from "react-helmet-async"; 5 | 6 | import routes from "../routing/routes"; 7 | 8 | let matchedRoute = null; 9 | for (const route of routes) { 10 | const match = matchPath(location.pathname, route); 11 | if (match) { 12 | matchedRoute = route; 13 | break; 14 | } 15 | } 16 | 17 | let InitialComponent = null; 18 | if (matchedRoute) { 19 | const initialMod = await matchedRoute.import(); 20 | InitialComponent = initialMod.default; 21 | } 22 | 23 | function lazyRoute(route) { 24 | const Component = React.lazy(() => route.import()); 25 | const LazyRoute = () => ( 26 | 27 | 28 | 29 | ); 30 | LazyRoute.displayName = `LazyRoute(${route.module})`; 31 | 32 | return LazyRoute; 33 | } 34 | 35 | const routerSwitch = ( 36 | 37 | {routes.map((route) => { 38 | const Component = 39 | matchedRoute && InitialComponent && matchedRoute.path === route.path 40 | ? InitialComponent 41 | : lazyRoute(route); 42 | 43 | return ( 44 | 50 | ); 51 | })} 52 | 53 | ); 54 | 55 | hydrate( 56 | 57 | {routerSwitch} 58 | , 59 | document.getElementById("__app__") 60 | ); 61 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/runtime/routing/routes.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Switch, Route } from "react-router-dom"; 3 | 4 | const routes = [ 5 | { 6 | exact: true, 7 | path: "/b/test", 8 | module: "./test", 9 | import: () => import("ssr_react_streaming_example_b_pages/test"), 10 | }, 11 | { 12 | exact: true, 13 | path: "/b", 14 | module: "./test", 15 | import: () => import("ssr_react_streaming_example_b_pages/index"), 16 | }, 17 | { 18 | exact: true, 19 | path: "/test", 20 | module: "./test", 21 | import: () => import("pages/test"), 22 | }, 23 | { 24 | exact: true, 25 | path: "/", 26 | module: "./index", 27 | import: () => import("pages/index"), 28 | }, 29 | ]; 30 | 31 | export default routes; 32 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/runtime/server/index.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { renderToString } from "react-dom/server"; 3 | import { matchPath, StaticRouter } from "react-router-dom"; 4 | import { HelmetProvider } from "react-helmet-async"; 5 | 6 | import routes from "../routing/routes"; 7 | 8 | const publicPath = 9 | process.env.NODE_ENV === "production" 10 | ? `https://${process.env.VERCEL_URL}/` 11 | : "http://localhost:5000/_static/"; 12 | 13 | const bPublicPath = 14 | process.env.NODE_ENV === "production" 15 | ? "https://ssr-react-streaming-example-b.vercel.app/" 16 | : "http://localhost:5001/_static/"; 17 | 18 | export default async function server(pathname) { 19 | let matchedPath = null; 20 | let matchedRoute = null; 21 | for (const route of routes) { 22 | const match = matchPath(pathname, route); 23 | if (match) { 24 | matchedPath = match; 25 | matchedRoute = route; 26 | break; 27 | } 28 | } 29 | 30 | if (!matchedRoute) { 31 | return null; 32 | } 33 | 34 | const pageMod = await matchedRoute.import(); 35 | const Page = pageMod.default; 36 | 37 | const helmetContext = {}; 38 | 39 | const body = renderToString( 40 | 41 | 42 | 43 | 44 | 45 | ); 46 | 47 | const { helmet } = helmetContext; 48 | 49 | const html = ` 50 | 51 | 52 | 53 | ${helmet.title.toString()} 54 | ${helmet.meta.toString()} 55 | ${helmet.link.toString()} 56 | 57 | 58 | 59 |
${body}
60 | 61 | 62 | 63 | 64 | 65 | `; 66 | 67 | return html; 68 | } 69 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_a/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require("path"); 2 | 3 | const webpack = require("webpack"); 4 | const WebpackNodeHttpChunkLoadingPlugin = require("@jacob-ebey/webpack-node-http-chunk-loading-plugin"); 5 | 6 | const FederationStatsPlugin = require("./federation-stats-plugin"); 7 | 8 | const package = require("./package.json"); 9 | 10 | const isProdBuild = process.env.NODE_ENV !== "development"; 11 | 12 | const publicPath = process.env.VERCEL_URL 13 | ? `https://${process.env.VERCEL_URL}/` 14 | : "http://localhost:5000/_static"; 15 | 16 | const bPublicPath = isProdBuild 17 | ? "https://ssr-react-streaming-example-b.vercel.app/" 18 | : "http://localhost:5001/_static"; 19 | 20 | const shared = [ 21 | { 22 | react: { 23 | singleton: true, 24 | requiredVersion: package.dependencies.react, 25 | }, 26 | }, 27 | { 28 | "react-helmet-async": { 29 | singleton: true, 30 | requiredVersion: package.dependencies["react-helmet-async"], 31 | }, 32 | }, 33 | { 34 | "react-router-dom": { 35 | singleton: true, 36 | requiredVersion: package.dependencies["react-router-dom"], 37 | }, 38 | }, 39 | ]; 40 | 41 | /** 42 | * @param {"client" | "server"} __BUILD_ENV__ 43 | */ 44 | const remotes = (__BUILD_ENV__) => ({ 45 | ssr_react_streaming_example_b_pages: 46 | __BUILD_ENV__ === "client" 47 | ? "ssr_react_streaming_example_b_pages" 48 | : WebpackNodeHttpChunkLoadingPlugin.httpExternal( 49 | `${bPublicPath}server/pages/remote-entry.js` 50 | ), 51 | }); 52 | 53 | const exposes = { 54 | "./Navigation": "./components/Navigation.jsx", 55 | }; 56 | 57 | /** @type {import("webpack").Configuration} */ 58 | const baseConfig = { 59 | mode: isProdBuild ? "production" : "development", 60 | devtool: isProdBuild ? "source-map" : "inline-source-map", 61 | experiments: { 62 | topLevelAwait: true, 63 | }, 64 | module: { 65 | rules: [ 66 | { 67 | test: /\.jsx?$/, 68 | loader: "babel-loader", 69 | }, 70 | ], 71 | }, 72 | resolve: { 73 | extensions: [".js", ".jsx"], 74 | }, 75 | plugins: [ 76 | new webpack.DefinePlugin({ 77 | "process.env.VERCEL_URL": JSON.stringify(process.env.VERCEL_URL), 78 | "process.env.NODE_ENV": JSON.stringify( 79 | isProdBuild ? "production" : "development" 80 | ), 81 | }), 82 | ], 83 | }; 84 | 85 | /** 86 | * @param {"client" | "server"} __BUILD_ENV__ 87 | * @returns {import("webpack").Configuration} 88 | */ 89 | function runtimeConfig(__BUILD_ENV__) { 90 | const conditionalPlugins = []; 91 | 92 | if (__BUILD_ENV__ === "client") { 93 | conditionalPlugins.push(new FederationStatsPlugin()); 94 | } 95 | 96 | if (__BUILD_ENV__ === "server") { 97 | conditionalPlugins.push(new WebpackNodeHttpChunkLoadingPlugin()); 98 | } 99 | 100 | return { 101 | ...baseConfig, 102 | entry: 103 | __BUILD_ENV__ === "client" 104 | ? "./runtime/bootstrap.js" 105 | : ["@babel/polyfill", "./runtime/bootstrap.js"], 106 | target: __BUILD_ENV__ === "client" ? "web" : "async-node", 107 | output: { 108 | path: path.resolve(process.cwd(), "dist", __BUILD_ENV__, "runtime"), 109 | publicPath: `${publicPath}${__BUILD_ENV__}/runtime/`, 110 | ...(__BUILD_ENV__ === "server" 111 | ? { libraryTarget: "commonjs-module" } 112 | : {}), 113 | }, 114 | ...(__BUILD_ENV__ === "client" ? {} : { target: "node" }), 115 | plugins: [ 116 | ...baseConfig.plugins, 117 | ...conditionalPlugins, 118 | new webpack.DefinePlugin({ 119 | __BUILD_ENV__: JSON.stringify(__BUILD_ENV__), 120 | }), 121 | new webpack.container.ModuleFederationPlugin({ 122 | name: `${package.name}_runtime`, 123 | filename: "remote-entry.js", 124 | library: 125 | __BUILD_ENV__ === "client" 126 | ? { name: `${package.name}_runtime`, type: "var" } 127 | : { type: "commonjs-module" }, 128 | shared, 129 | remotes: { 130 | ...remotes(__BUILD_ENV__), 131 | pages: 132 | __BUILD_ENV__ === "client" 133 | ? `${package.name}_pages` 134 | : WebpackNodeHttpChunkLoadingPlugin.httpExternal( 135 | `${publicPath}server/pages/remote-entry.js` 136 | ), 137 | }, 138 | exposes, 139 | }), 140 | ], 141 | }; 142 | } 143 | 144 | /** 145 | * @param {"client" | "server"} __BUILD_ENV__ 146 | * @returns {import("webpack").Configuration} 147 | */ 148 | function pagesConfig(__BUILD_ENV__) { 149 | const conditionalPlugins = []; 150 | 151 | if (__BUILD_ENV__ === "client") { 152 | conditionalPlugins.push(new FederationStatsPlugin()); 153 | } 154 | 155 | if (__BUILD_ENV__ === "server") { 156 | conditionalPlugins.push(new WebpackNodeHttpChunkLoadingPlugin()); 157 | } 158 | 159 | return { 160 | ...baseConfig, 161 | entry: "./noop.js", 162 | target: __BUILD_ENV__ === "client" ? "web" : "async-node", 163 | output: { 164 | path: path.resolve(process.cwd(), "dist", __BUILD_ENV__, "pages"), 165 | publicPath: `${publicPath}${__BUILD_ENV__}/pages/`, 166 | }, 167 | plugins: [ 168 | ...baseConfig.plugins, 169 | ...conditionalPlugins, 170 | new webpack.container.ModuleFederationPlugin({ 171 | name: `${package.name}_pages`, 172 | filename: "remote-entry.js", 173 | library: 174 | __BUILD_ENV__ === "client" 175 | ? { name: `${package.name}_pages`, type: "var" } 176 | : { type: "commonjs-module" }, 177 | shared, 178 | exposes: { 179 | "./index": "./pages/index.jsx", 180 | "./test": "./pages/test.jsx", 181 | }, 182 | remotes: remotes(__BUILD_ENV__), 183 | }), 184 | ], 185 | }; 186 | } 187 | 188 | module.exports = [ 189 | pagesConfig("client"), 190 | pagesConfig("server"), 191 | runtimeConfig("client"), 192 | runtimeConfig("server"), 193 | ]; 194 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/preset-env", "@babel/preset-react"] 3 | } 4 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | 4 | .vercel 5 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/api/ssr.js: -------------------------------------------------------------------------------- 1 | import bootstrap from "../dist/server/runtime/main"; 2 | 3 | const initPromise = bootstrap().then((r) => r.default); 4 | 5 | export default async (req, res) => { 6 | try { 7 | const server = await initPromise; 8 | const html = await server(req.query.location || ""); 9 | res.send(html); 10 | } catch (err) { 11 | console.error(err); 12 | res.send("ERROR :("); 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/components/Navigation.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Link } from "react-router-dom"; 3 | 4 | export default function Navigation() { 5 | return ( 6 | 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/devserver.js: -------------------------------------------------------------------------------- 1 | const express = require("express"); 2 | 3 | const bootstrap = require("./dist/server/runtime/main").default; 4 | 5 | const app = express(); 6 | 7 | app.use("/_static", express.static("./dist")); 8 | 9 | const initPromise = bootstrap().then((r) => r.default); 10 | app.get("/*", async (req, res) => { 11 | const server = await initPromise; 12 | const html = await server(req.path); 13 | res.send(html); 14 | res.end(); 15 | }); 16 | 17 | app.listen(5001, () => console.log("SERVER STARTED")); 18 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/federation-stats-plugin.js: -------------------------------------------------------------------------------- 1 | const webpack = require("webpack"); 2 | 3 | const PLUGIN_NAME = "FederationStatsPlugin"; 4 | 5 | class FederationStatsPlugin { 6 | constructor(options = { filename: "federation-stats.json" }) { 7 | if (!options || !options.filename) { 8 | throw new Error("filename option is required."); 9 | } 10 | 11 | this._options = options; 12 | } 13 | 14 | apply(compiler) { 15 | const federationPlugin = 16 | compiler.options.plugins && 17 | compiler.options.plugins.find( 18 | (plugin) => plugin.constructor.name === "ModuleFederationPlugin" 19 | ); 20 | 21 | if (!federationPlugin) { 22 | throw new Error("No ModuleFederationPlugin found."); 23 | } 24 | 25 | const exposedFiles = new Map( 26 | Object.entries(federationPlugin._options.exposes || {}).map(([k, v]) => [ 27 | v, 28 | k, 29 | ]) 30 | ); 31 | 32 | compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation) => { 33 | compilation.hooks.processAssets.tapPromise( 34 | { 35 | name: PLUGIN_NAME, 36 | stage: compilation.constructor.PROCESS_ASSETS_STAGE_REPORT, 37 | }, 38 | async () => { 39 | const stats = compilation.getStats().toJson({}); 40 | 41 | const modules = stats.modules.filter( 42 | (mod) => 43 | mod.issuerName === "container entry" && exposedFiles.has(mod.name) 44 | ); 45 | 46 | const chunks = modules.map((mod) => { 47 | const exposedAs = exposedFiles.get(mod.name); 48 | const chunks = mod.chunks.map((chunkId) => 49 | stats.chunks.find((chunk) => chunk.id === chunkId) 50 | ); 51 | 52 | return { 53 | mod: exposedAs, 54 | chunks: chunks.reduce((p, c) => { 55 | c.siblings.forEach((s) => { 56 | const chunk = stats.chunks.find((c) => c.id === s); 57 | // const isShared = chunk.modules.some( 58 | // (m) => m.moduleType === "consume-shared-module" 59 | // ); 60 | 61 | // if (!isShared) { 62 | chunk.files.forEach((f) => p.push(f)); 63 | // } 64 | }); 65 | c.files.forEach((f) => p.push(f)); 66 | return p; 67 | }, []), 68 | }; 69 | }); 70 | 71 | const exposes = chunks.reduce( 72 | (p, c) => Object.assign(p, { [c.mod]: c.chunks }), 73 | {} 74 | ); 75 | 76 | const remote = 77 | (federationPlugin._options.library && 78 | federationPlugin._options.library.name) || 79 | federationPlugin._options.name; 80 | 81 | const statsResult = { 82 | remote, 83 | exposes, 84 | }; 85 | 86 | const statsJson = JSON.stringify(statsResult); 87 | const statsBuffer = Buffer.from(statsJson, "utf-8"); 88 | const statsSource = { 89 | source: () => statsBuffer, 90 | size: () => statsBuffer.length, 91 | }; 92 | 93 | const filename = this._options.filename; 94 | 95 | const asset = compilation.getAsset(filename); 96 | if (asset) { 97 | compilation.updateAsset(filename, statsSource); 98 | } else { 99 | compilation.emitAsset(filename, statsSource); 100 | } 101 | } 102 | ); 103 | }); 104 | } 105 | } 106 | 107 | module.exports = FederationStatsPlugin; 108 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/ssr-react-streaming-example/d1bf6878e67f6fb725051dcc3978ca81ab9a51ae/ssr_react_streaming_example_b/noop.js -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ssr_react_streaming_example_b", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "webpack", 8 | "dev": "run-p dev:*", 9 | "dev:watch": "webpack --watch", 10 | "dev:start": "nodemon --watch ./dist ./devserver.js", 11 | "start": "node ./dist/server/runtime/main.js", 12 | "postinstall": "webpack" 13 | }, 14 | "keywords": [], 15 | "author": "", 16 | "license": "ISC", 17 | "dependencies": { 18 | "express": "^4.17.1", 19 | "react": "^17.0.1", 20 | "react-dom": "^17.0.1", 21 | "react-helmet-async": "^1.0.7", 22 | "react-router-dom": "^5.2.0" 23 | }, 24 | "devDependencies": { 25 | "@babel/core": "^7.12.7", 26 | "@babel/polyfill": "^7.12.1", 27 | "@babel/preset-env": "^7.12.7", 28 | "@babel/preset-react": "^7.12.7", 29 | "babel-loader": "^8.2.1", 30 | "nodemon": "^2.0.6", 31 | "npm-run-all": "^4.1.5", 32 | "webpack": "^5.6.0", 33 | "webpack-cli": "^4.2.0", 34 | "@jacob-ebey/webpack-node-http-chunk-loading-plugin": "0.0.2", 35 | "webpack-stats-plugin": "^1.0.2" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/pages/index.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Helmet } from "react-helmet-async"; 3 | import { Link } from "react-router-dom"; 4 | 5 | import Navigation from "../components/Navigation"; 6 | 7 | export default function Index() { 8 | return ( 9 | <> 10 | 11 | B Home 12 | 13 | 14 |

B Home Page

15 | 16 | 17 | 18 | ); 19 | } 20 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/pages/test.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Helmet } from "react-helmet-async"; 3 | import { Link } from "react-router-dom"; 4 | 5 | import Navigation from "../components/Navigation"; 6 | 7 | export default function Test() { 8 | return ( 9 | <> 10 | 11 | B Test 12 | 13 | 14 |

B Test Page

15 | 16 | 17 | 18 | ); 19 | } 20 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/runtime/bootstrap.js: -------------------------------------------------------------------------------- 1 | export default function bootstrap() { 2 | if (__BUILD_ENV__ === "client") { 3 | import("./client/index"); 4 | } else { 5 | return import("./server/index"); 6 | } 7 | } 8 | 9 | if (__BUILD_ENV__ === "client") { 10 | bootstrap(); 11 | } 12 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/runtime/client/index.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { hydrate } from "react-dom"; 3 | import { BrowserRouter, matchPath, Route, Switch } from "react-router-dom"; 4 | import { HelmetProvider } from "react-helmet-async"; 5 | 6 | import routes from "../routing/routes"; 7 | 8 | let matchedRoute = null; 9 | for (const route of routes) { 10 | const match = matchPath(location.pathname, route); 11 | if (match) { 12 | matchedRoute = route; 13 | break; 14 | } 15 | } 16 | 17 | let InitialComponent = null; 18 | if (matchedRoute) { 19 | const initialMod = await matchedRoute.import(); 20 | InitialComponent = initialMod.default; 21 | } 22 | 23 | function lazyRoute(route) { 24 | const Component = React.lazy(() => route.import()); 25 | const LazyRoute = () => ( 26 | 27 | 28 | 29 | ); 30 | LazyRoute.displayName = `LazyRoute(${route.module})`; 31 | 32 | return LazyRoute; 33 | } 34 | 35 | const routerSwitch = ( 36 | 37 | {routes.map((route) => { 38 | const Component = 39 | matchedRoute && InitialComponent && matchedRoute.path === route.path 40 | ? InitialComponent 41 | : lazyRoute(route); 42 | 43 | return ( 44 | 50 | ); 51 | })} 52 | 53 | ); 54 | 55 | hydrate( 56 | 57 | {routerSwitch} 58 | , 59 | document.getElementById("__app__") 60 | ); 61 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/runtime/routing/routes.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Switch, Route } from "react-router-dom"; 3 | 4 | const routes = [ 5 | { 6 | exact: true, 7 | path: "/b/test", 8 | module: "./test", 9 | import: () => import("pages/test"), 10 | }, 11 | { 12 | exact: true, 13 | path: "/b", 14 | module: "./index", 15 | import: () => import("pages/index"), 16 | }, 17 | ]; 18 | 19 | export default routes; 20 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/runtime/server/index.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { renderToString } from "react-dom/server"; 3 | import { matchPath, StaticRouter } from "react-router-dom"; 4 | import { HelmetProvider } from "react-helmet-async"; 5 | 6 | import routes from "../routing/routes"; 7 | 8 | const publicPath = process.env.VERCEL_URL 9 | ? `https://${process.env.VERCEL_URL}/` 10 | : "http://localhost:5001/_static/"; 11 | 12 | export default async function server(pathname) { 13 | let matchedPath = null; 14 | let matchedRoute = null; 15 | for (const route of routes) { 16 | const match = matchPath(pathname, route); 17 | if (match) { 18 | matchedPath = match; 19 | matchedRoute = route; 20 | break; 21 | } 22 | } 23 | 24 | if (!matchedRoute) { 25 | return null; 26 | } 27 | 28 | const pageMod = await matchedRoute.import(); 29 | const Page = pageMod.default; 30 | 31 | const helmetContext = {}; 32 | 33 | const body = renderToString( 34 | 35 | 36 | 37 | 38 | 39 | ); 40 | 41 | const { helmet } = helmetContext; 42 | 43 | const html = ` 44 | 45 | 46 | 47 | ${helmet.title.toString()} 48 | ${helmet.meta.toString()} 49 | ${helmet.link.toString()} 50 | 51 | 52 | 53 |
${body}
54 | 55 | 56 | 57 | 58 | `; 59 | 60 | return html; 61 | } 62 | -------------------------------------------------------------------------------- /ssr_react_streaming_example_b/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require("path"); 2 | 3 | const webpack = require("webpack"); 4 | const WebpackNodeHttpChunkLoadingPlugin = require("@jacob-ebey/webpack-node-http-chunk-loading-plugin"); 5 | 6 | const FederationStatsPlugin = require("./federation-stats-plugin"); 7 | 8 | const package = require("./package.json"); 9 | 10 | const isProdBuild = process.env.NODE_ENV !== "development"; 11 | 12 | const publicPath = process.env.VERCEL_URL 13 | ? `https://${process.env.VERCEL_URL}/` 14 | : "http://localhost:5001/_static/"; 15 | 16 | const shared = [ 17 | { 18 | react: { 19 | singleton: true, 20 | requiredVersion: package.dependencies.react, 21 | }, 22 | }, 23 | { 24 | "react-helmet-async": { 25 | singleton: true, 26 | requiredVersion: package.dependencies["react-helmet-async"], 27 | }, 28 | }, 29 | { 30 | "react-router-dom": { 31 | singleton: true, 32 | requiredVersion: package.dependencies["react-router-dom"], 33 | }, 34 | }, 35 | ]; 36 | 37 | /** 38 | * @param {"client" | "server"} __BUILD_ENV__ 39 | */ 40 | const remotes = (__BUILD_ENV__) => ({}); 41 | 42 | /** @type {import("webpack").Configuration} */ 43 | const baseConfig = { 44 | mode: isProdBuild ? "production" : "development", 45 | devtool: isProdBuild ? "source-map" : "inline-source-map", 46 | experiments: { 47 | topLevelAwait: true, 48 | }, 49 | module: { 50 | rules: [ 51 | { 52 | test: /\.jsx?$/, 53 | loader: "babel-loader", 54 | }, 55 | ], 56 | }, 57 | resolve: { 58 | extensions: [".js", ".jsx"], 59 | }, 60 | plugins: [ 61 | new webpack.DefinePlugin({ 62 | "process.env.VERCEL_URL": JSON.stringify(process.env.VERCEL_URL), 63 | "process.env.NODE_ENV": JSON.stringify( 64 | isProdBuild ? "production" : "development" 65 | ), 66 | }), 67 | ], 68 | }; 69 | 70 | /** 71 | * @param {"client" | "server"} __BUILD_ENV__ 72 | * @returns {import("webpack").Configuration} 73 | */ 74 | function runtimeConfig(__BUILD_ENV__) { 75 | const conditionalPlugins = []; 76 | 77 | if (__BUILD_ENV__ === "client") { 78 | conditionalPlugins.push(new FederationStatsPlugin()); 79 | } 80 | 81 | if (__BUILD_ENV__ === "server") { 82 | conditionalPlugins.push(new WebpackNodeHttpChunkLoadingPlugin()); 83 | } 84 | 85 | return { 86 | ...baseConfig, 87 | entry: 88 | __BUILD_ENV__ === "client" 89 | ? "./runtime/bootstrap.js" 90 | : ["@babel/polyfill", "./runtime/bootstrap.js"], 91 | target: __BUILD_ENV__ === "client" ? "web" : "async-node", 92 | output: { 93 | path: path.resolve(process.cwd(), "dist", __BUILD_ENV__, "runtime"), 94 | publicPath: `${publicPath}${__BUILD_ENV__}/runtime/`, 95 | ...(__BUILD_ENV__ === "server" 96 | ? { libraryTarget: "commonjs-module" } 97 | : {}), 98 | }, 99 | ...(__BUILD_ENV__ === "client" ? {} : { target: "node" }), 100 | plugins: [ 101 | ...baseConfig.plugins, 102 | ...conditionalPlugins, 103 | new webpack.DefinePlugin({ 104 | __BUILD_ENV__: JSON.stringify(__BUILD_ENV__), 105 | }), 106 | new webpack.container.ModuleFederationPlugin({ 107 | name: `${package.name}_runtime`, 108 | filename: "remote-entry.js", 109 | library: 110 | __BUILD_ENV__ === "client" 111 | ? { name: `${package.name}_runtime`, type: "var" } 112 | : { type: "commonjs-module" }, 113 | shared, 114 | remotes: { 115 | ...remotes(__BUILD_ENV__), 116 | pages: 117 | __BUILD_ENV__ === "client" 118 | ? `${package.name}_pages` 119 | : WebpackNodeHttpChunkLoadingPlugin.httpExternal( 120 | `${publicPath}server/pages/remote-entry.js` 121 | ), 122 | }, 123 | }), 124 | ], 125 | }; 126 | } 127 | 128 | /** 129 | * @param {"client" | "server"} __BUILD_ENV__ 130 | * @returns {import("webpack").Configuration} 131 | */ 132 | function pagesConfig(__BUILD_ENV__) { 133 | const conditionalPlugins = []; 134 | 135 | if (__BUILD_ENV__ === "client") { 136 | conditionalPlugins.push(new FederationStatsPlugin()); 137 | } 138 | 139 | if (__BUILD_ENV__ === "server") { 140 | conditionalPlugins.push(new WebpackNodeHttpChunkLoadingPlugin()); 141 | } 142 | 143 | return { 144 | ...baseConfig, 145 | entry: "./noop.js", 146 | target: __BUILD_ENV__ === "client" ? "web" : "async-node", 147 | output: { 148 | path: path.resolve(process.cwd(), "dist", __BUILD_ENV__, "pages"), 149 | publicPath: `${publicPath}${__BUILD_ENV__}/pages/`, 150 | }, 151 | plugins: [ 152 | ...baseConfig.plugins, 153 | ...conditionalPlugins, 154 | new webpack.container.ModuleFederationPlugin({ 155 | name: `${package.name}_pages`, 156 | filename: "remote-entry.js", 157 | library: 158 | __BUILD_ENV__ === "client" 159 | ? { name: `${package.name}_pages`, type: "var" } 160 | : { type: "commonjs-module" }, 161 | shared, 162 | exposes: { 163 | "./index": "./pages/index.jsx", 164 | "./test": "./pages/test.jsx", 165 | }, 166 | remotes: remotes(__BUILD_ENV__), 167 | }), 168 | ], 169 | }; 170 | } 171 | 172 | module.exports = [ 173 | pagesConfig("client"), 174 | pagesConfig("server"), 175 | runtimeConfig("client"), 176 | runtimeConfig("server"), 177 | ]; 178 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.10.4": 6 | version "7.10.4" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 8 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7": 13 | version "7.12.7" 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41" 15 | integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw== 16 | 17 | "@babel/core@^7.12.7": 18 | version "7.12.7" 19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.7.tgz#bf55363c08c8352a37691f7216ec30090bf7e3bf" 20 | integrity sha512-tRKx9B53kJe8NCGGIxEQb2Bkr0riUIEuN7Sc1fxhs5H8lKlCWUvQCSNMVIB0Meva7hcbCRJ76de15KoLltdoqw== 21 | dependencies: 22 | "@babel/code-frame" "^7.10.4" 23 | "@babel/generator" "^7.12.5" 24 | "@babel/helper-module-transforms" "^7.12.1" 25 | "@babel/helpers" "^7.12.5" 26 | "@babel/parser" "^7.12.7" 27 | "@babel/template" "^7.12.7" 28 | "@babel/traverse" "^7.12.7" 29 | "@babel/types" "^7.12.7" 30 | convert-source-map "^1.7.0" 31 | debug "^4.1.0" 32 | gensync "^1.0.0-beta.1" 33 | json5 "^2.1.2" 34 | lodash "^4.17.19" 35 | resolve "^1.3.2" 36 | semver "^5.4.1" 37 | source-map "^0.5.0" 38 | 39 | "@babel/generator@^7.12.5": 40 | version "7.12.5" 41 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de" 42 | integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A== 43 | dependencies: 44 | "@babel/types" "^7.12.5" 45 | jsesc "^2.5.1" 46 | source-map "^0.5.0" 47 | 48 | "@babel/helper-annotate-as-pure@^7.10.4": 49 | version "7.10.4" 50 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" 51 | integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== 52 | dependencies: 53 | "@babel/types" "^7.10.4" 54 | 55 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": 56 | version "7.10.4" 57 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" 58 | integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== 59 | dependencies: 60 | "@babel/helper-explode-assignable-expression" "^7.10.4" 61 | "@babel/types" "^7.10.4" 62 | 63 | "@babel/helper-builder-react-jsx-experimental@^7.12.4": 64 | version "7.12.4" 65 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz#55fc1ead5242caa0ca2875dcb8eed6d311e50f48" 66 | integrity sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og== 67 | dependencies: 68 | "@babel/helper-annotate-as-pure" "^7.10.4" 69 | "@babel/helper-module-imports" "^7.12.1" 70 | "@babel/types" "^7.12.1" 71 | 72 | "@babel/helper-builder-react-jsx@^7.10.4": 73 | version "7.10.4" 74 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d" 75 | integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg== 76 | dependencies: 77 | "@babel/helper-annotate-as-pure" "^7.10.4" 78 | "@babel/types" "^7.10.4" 79 | 80 | "@babel/helper-compilation-targets@^7.12.5": 81 | version "7.12.5" 82 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831" 83 | integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw== 84 | dependencies: 85 | "@babel/compat-data" "^7.12.5" 86 | "@babel/helper-validator-option" "^7.12.1" 87 | browserslist "^4.14.5" 88 | semver "^5.5.0" 89 | 90 | "@babel/helper-create-class-features-plugin@^7.12.1": 91 | version "7.12.1" 92 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e" 93 | integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== 94 | dependencies: 95 | "@babel/helper-function-name" "^7.10.4" 96 | "@babel/helper-member-expression-to-functions" "^7.12.1" 97 | "@babel/helper-optimise-call-expression" "^7.10.4" 98 | "@babel/helper-replace-supers" "^7.12.1" 99 | "@babel/helper-split-export-declaration" "^7.10.4" 100 | 101 | "@babel/helper-create-regexp-features-plugin@^7.12.1": 102 | version "7.12.7" 103 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f" 104 | integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ== 105 | dependencies: 106 | "@babel/helper-annotate-as-pure" "^7.10.4" 107 | regexpu-core "^4.7.1" 108 | 109 | "@babel/helper-define-map@^7.10.4": 110 | version "7.10.5" 111 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" 112 | integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== 113 | dependencies: 114 | "@babel/helper-function-name" "^7.10.4" 115 | "@babel/types" "^7.10.5" 116 | lodash "^4.17.19" 117 | 118 | "@babel/helper-explode-assignable-expression@^7.10.4": 119 | version "7.12.1" 120 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633" 121 | integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== 122 | dependencies: 123 | "@babel/types" "^7.12.1" 124 | 125 | "@babel/helper-function-name@^7.10.4": 126 | version "7.10.4" 127 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" 128 | integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== 129 | dependencies: 130 | "@babel/helper-get-function-arity" "^7.10.4" 131 | "@babel/template" "^7.10.4" 132 | "@babel/types" "^7.10.4" 133 | 134 | "@babel/helper-get-function-arity@^7.10.4": 135 | version "7.10.4" 136 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" 137 | integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== 138 | dependencies: 139 | "@babel/types" "^7.10.4" 140 | 141 | "@babel/helper-hoist-variables@^7.10.4": 142 | version "7.10.4" 143 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" 144 | integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== 145 | dependencies: 146 | "@babel/types" "^7.10.4" 147 | 148 | "@babel/helper-member-expression-to-functions@^7.12.1": 149 | version "7.12.7" 150 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855" 151 | integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw== 152 | dependencies: 153 | "@babel/types" "^7.12.7" 154 | 155 | "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5": 156 | version "7.12.5" 157 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb" 158 | integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== 159 | dependencies: 160 | "@babel/types" "^7.12.5" 161 | 162 | "@babel/helper-module-transforms@^7.12.1": 163 | version "7.12.1" 164 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c" 165 | integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== 166 | dependencies: 167 | "@babel/helper-module-imports" "^7.12.1" 168 | "@babel/helper-replace-supers" "^7.12.1" 169 | "@babel/helper-simple-access" "^7.12.1" 170 | "@babel/helper-split-export-declaration" "^7.11.0" 171 | "@babel/helper-validator-identifier" "^7.10.4" 172 | "@babel/template" "^7.10.4" 173 | "@babel/traverse" "^7.12.1" 174 | "@babel/types" "^7.12.1" 175 | lodash "^4.17.19" 176 | 177 | "@babel/helper-optimise-call-expression@^7.10.4": 178 | version "7.12.7" 179 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz#7f94ae5e08721a49467346aa04fd22f750033b9c" 180 | integrity sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw== 181 | dependencies: 182 | "@babel/types" "^7.12.7" 183 | 184 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 185 | version "7.10.4" 186 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" 187 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== 188 | 189 | "@babel/helper-remap-async-to-generator@^7.12.1": 190 | version "7.12.1" 191 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd" 192 | integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== 193 | dependencies: 194 | "@babel/helper-annotate-as-pure" "^7.10.4" 195 | "@babel/helper-wrap-function" "^7.10.4" 196 | "@babel/types" "^7.12.1" 197 | 198 | "@babel/helper-replace-supers@^7.12.1": 199 | version "7.12.5" 200 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9" 201 | integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== 202 | dependencies: 203 | "@babel/helper-member-expression-to-functions" "^7.12.1" 204 | "@babel/helper-optimise-call-expression" "^7.10.4" 205 | "@babel/traverse" "^7.12.5" 206 | "@babel/types" "^7.12.5" 207 | 208 | "@babel/helper-simple-access@^7.12.1": 209 | version "7.12.1" 210 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136" 211 | integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== 212 | dependencies: 213 | "@babel/types" "^7.12.1" 214 | 215 | "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": 216 | version "7.12.1" 217 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" 218 | integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== 219 | dependencies: 220 | "@babel/types" "^7.12.1" 221 | 222 | "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": 223 | version "7.11.0" 224 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" 225 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== 226 | dependencies: 227 | "@babel/types" "^7.11.0" 228 | 229 | "@babel/helper-validator-identifier@^7.10.4": 230 | version "7.10.4" 231 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 232 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 233 | 234 | "@babel/helper-validator-option@^7.12.1": 235 | version "7.12.1" 236 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz#175567380c3e77d60ff98a54bb015fe78f2178d9" 237 | integrity sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== 238 | 239 | "@babel/helper-wrap-function@^7.10.4": 240 | version "7.12.3" 241 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9" 242 | integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow== 243 | dependencies: 244 | "@babel/helper-function-name" "^7.10.4" 245 | "@babel/template" "^7.10.4" 246 | "@babel/traverse" "^7.10.4" 247 | "@babel/types" "^7.10.4" 248 | 249 | "@babel/helpers@^7.12.5": 250 | version "7.12.5" 251 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e" 252 | integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== 253 | dependencies: 254 | "@babel/template" "^7.10.4" 255 | "@babel/traverse" "^7.12.5" 256 | "@babel/types" "^7.12.5" 257 | 258 | "@babel/highlight@^7.10.4": 259 | version "7.10.4" 260 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 261 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 262 | dependencies: 263 | "@babel/helper-validator-identifier" "^7.10.4" 264 | chalk "^2.0.0" 265 | js-tokens "^4.0.0" 266 | 267 | "@babel/parser@^7.12.7": 268 | version "7.12.7" 269 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056" 270 | integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg== 271 | 272 | "@babel/plugin-proposal-async-generator-functions@^7.12.1": 273 | version "7.12.1" 274 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e" 275 | integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== 276 | dependencies: 277 | "@babel/helper-plugin-utils" "^7.10.4" 278 | "@babel/helper-remap-async-to-generator" "^7.12.1" 279 | "@babel/plugin-syntax-async-generators" "^7.8.0" 280 | 281 | "@babel/plugin-proposal-class-properties@^7.12.1": 282 | version "7.12.1" 283 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de" 284 | integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== 285 | dependencies: 286 | "@babel/helper-create-class-features-plugin" "^7.12.1" 287 | "@babel/helper-plugin-utils" "^7.10.4" 288 | 289 | "@babel/plugin-proposal-dynamic-import@^7.12.1": 290 | version "7.12.1" 291 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc" 292 | integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== 293 | dependencies: 294 | "@babel/helper-plugin-utils" "^7.10.4" 295 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 296 | 297 | "@babel/plugin-proposal-export-namespace-from@^7.12.1": 298 | version "7.12.1" 299 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4" 300 | integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== 301 | dependencies: 302 | "@babel/helper-plugin-utils" "^7.10.4" 303 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 304 | 305 | "@babel/plugin-proposal-json-strings@^7.12.1": 306 | version "7.12.1" 307 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c" 308 | integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== 309 | dependencies: 310 | "@babel/helper-plugin-utils" "^7.10.4" 311 | "@babel/plugin-syntax-json-strings" "^7.8.0" 312 | 313 | "@babel/plugin-proposal-logical-assignment-operators@^7.12.1": 314 | version "7.12.1" 315 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751" 316 | integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA== 317 | dependencies: 318 | "@babel/helper-plugin-utils" "^7.10.4" 319 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 320 | 321 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1": 322 | version "7.12.1" 323 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c" 324 | integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg== 325 | dependencies: 326 | "@babel/helper-plugin-utils" "^7.10.4" 327 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 328 | 329 | "@babel/plugin-proposal-numeric-separator@^7.12.7": 330 | version "7.12.7" 331 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b" 332 | integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ== 333 | dependencies: 334 | "@babel/helper-plugin-utils" "^7.10.4" 335 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 336 | 337 | "@babel/plugin-proposal-object-rest-spread@^7.12.1": 338 | version "7.12.1" 339 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069" 340 | integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== 341 | dependencies: 342 | "@babel/helper-plugin-utils" "^7.10.4" 343 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 344 | "@babel/plugin-transform-parameters" "^7.12.1" 345 | 346 | "@babel/plugin-proposal-optional-catch-binding@^7.12.1": 347 | version "7.12.1" 348 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942" 349 | integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== 350 | dependencies: 351 | "@babel/helper-plugin-utils" "^7.10.4" 352 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 353 | 354 | "@babel/plugin-proposal-optional-chaining@^7.12.7": 355 | version "7.12.7" 356 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c" 357 | integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA== 358 | dependencies: 359 | "@babel/helper-plugin-utils" "^7.10.4" 360 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 361 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 362 | 363 | "@babel/plugin-proposal-private-methods@^7.12.1": 364 | version "7.12.1" 365 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389" 366 | integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w== 367 | dependencies: 368 | "@babel/helper-create-class-features-plugin" "^7.12.1" 369 | "@babel/helper-plugin-utils" "^7.10.4" 370 | 371 | "@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 372 | version "7.12.1" 373 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072" 374 | integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== 375 | dependencies: 376 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" 377 | "@babel/helper-plugin-utils" "^7.10.4" 378 | 379 | "@babel/plugin-syntax-async-generators@^7.8.0": 380 | version "7.8.4" 381 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 382 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 383 | dependencies: 384 | "@babel/helper-plugin-utils" "^7.8.0" 385 | 386 | "@babel/plugin-syntax-class-properties@^7.12.1": 387 | version "7.12.1" 388 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978" 389 | integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== 390 | dependencies: 391 | "@babel/helper-plugin-utils" "^7.10.4" 392 | 393 | "@babel/plugin-syntax-dynamic-import@^7.8.0": 394 | version "7.8.3" 395 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 396 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 397 | dependencies: 398 | "@babel/helper-plugin-utils" "^7.8.0" 399 | 400 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 401 | version "7.8.3" 402 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 403 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 404 | dependencies: 405 | "@babel/helper-plugin-utils" "^7.8.3" 406 | 407 | "@babel/plugin-syntax-json-strings@^7.8.0": 408 | version "7.8.3" 409 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 410 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 411 | dependencies: 412 | "@babel/helper-plugin-utils" "^7.8.0" 413 | 414 | "@babel/plugin-syntax-jsx@^7.12.1": 415 | version "7.12.1" 416 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926" 417 | integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== 418 | dependencies: 419 | "@babel/helper-plugin-utils" "^7.10.4" 420 | 421 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": 422 | version "7.10.4" 423 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 424 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 425 | dependencies: 426 | "@babel/helper-plugin-utils" "^7.10.4" 427 | 428 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": 429 | version "7.8.3" 430 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 431 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 432 | dependencies: 433 | "@babel/helper-plugin-utils" "^7.8.0" 434 | 435 | "@babel/plugin-syntax-numeric-separator@^7.10.4": 436 | version "7.10.4" 437 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 438 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 439 | dependencies: 440 | "@babel/helper-plugin-utils" "^7.10.4" 441 | 442 | "@babel/plugin-syntax-object-rest-spread@^7.8.0": 443 | version "7.8.3" 444 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 445 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 446 | dependencies: 447 | "@babel/helper-plugin-utils" "^7.8.0" 448 | 449 | "@babel/plugin-syntax-optional-catch-binding@^7.8.0": 450 | version "7.8.3" 451 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 452 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 453 | dependencies: 454 | "@babel/helper-plugin-utils" "^7.8.0" 455 | 456 | "@babel/plugin-syntax-optional-chaining@^7.8.0": 457 | version "7.8.3" 458 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 459 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 460 | dependencies: 461 | "@babel/helper-plugin-utils" "^7.8.0" 462 | 463 | "@babel/plugin-syntax-top-level-await@^7.12.1": 464 | version "7.12.1" 465 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0" 466 | integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== 467 | dependencies: 468 | "@babel/helper-plugin-utils" "^7.10.4" 469 | 470 | "@babel/plugin-transform-arrow-functions@^7.12.1": 471 | version "7.12.1" 472 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3" 473 | integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== 474 | dependencies: 475 | "@babel/helper-plugin-utils" "^7.10.4" 476 | 477 | "@babel/plugin-transform-async-to-generator@^7.12.1": 478 | version "7.12.1" 479 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1" 480 | integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== 481 | dependencies: 482 | "@babel/helper-module-imports" "^7.12.1" 483 | "@babel/helper-plugin-utils" "^7.10.4" 484 | "@babel/helper-remap-async-to-generator" "^7.12.1" 485 | 486 | "@babel/plugin-transform-block-scoped-functions@^7.12.1": 487 | version "7.12.1" 488 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9" 489 | integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== 490 | dependencies: 491 | "@babel/helper-plugin-utils" "^7.10.4" 492 | 493 | "@babel/plugin-transform-block-scoping@^7.12.1": 494 | version "7.12.1" 495 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz#f0ee727874b42a208a48a586b84c3d222c2bbef1" 496 | integrity sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== 497 | dependencies: 498 | "@babel/helper-plugin-utils" "^7.10.4" 499 | 500 | "@babel/plugin-transform-classes@^7.12.1": 501 | version "7.12.1" 502 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6" 503 | integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== 504 | dependencies: 505 | "@babel/helper-annotate-as-pure" "^7.10.4" 506 | "@babel/helper-define-map" "^7.10.4" 507 | "@babel/helper-function-name" "^7.10.4" 508 | "@babel/helper-optimise-call-expression" "^7.10.4" 509 | "@babel/helper-plugin-utils" "^7.10.4" 510 | "@babel/helper-replace-supers" "^7.12.1" 511 | "@babel/helper-split-export-declaration" "^7.10.4" 512 | globals "^11.1.0" 513 | 514 | "@babel/plugin-transform-computed-properties@^7.12.1": 515 | version "7.12.1" 516 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852" 517 | integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== 518 | dependencies: 519 | "@babel/helper-plugin-utils" "^7.10.4" 520 | 521 | "@babel/plugin-transform-destructuring@^7.12.1": 522 | version "7.12.1" 523 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847" 524 | integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== 525 | dependencies: 526 | "@babel/helper-plugin-utils" "^7.10.4" 527 | 528 | "@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.4.4": 529 | version "7.12.1" 530 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975" 531 | integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== 532 | dependencies: 533 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" 534 | "@babel/helper-plugin-utils" "^7.10.4" 535 | 536 | "@babel/plugin-transform-duplicate-keys@^7.12.1": 537 | version "7.12.1" 538 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228" 539 | integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== 540 | dependencies: 541 | "@babel/helper-plugin-utils" "^7.10.4" 542 | 543 | "@babel/plugin-transform-exponentiation-operator@^7.12.1": 544 | version "7.12.1" 545 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0" 546 | integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== 547 | dependencies: 548 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" 549 | "@babel/helper-plugin-utils" "^7.10.4" 550 | 551 | "@babel/plugin-transform-for-of@^7.12.1": 552 | version "7.12.1" 553 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa" 554 | integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== 555 | dependencies: 556 | "@babel/helper-plugin-utils" "^7.10.4" 557 | 558 | "@babel/plugin-transform-function-name@^7.12.1": 559 | version "7.12.1" 560 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667" 561 | integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== 562 | dependencies: 563 | "@babel/helper-function-name" "^7.10.4" 564 | "@babel/helper-plugin-utils" "^7.10.4" 565 | 566 | "@babel/plugin-transform-literals@^7.12.1": 567 | version "7.12.1" 568 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57" 569 | integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== 570 | dependencies: 571 | "@babel/helper-plugin-utils" "^7.10.4" 572 | 573 | "@babel/plugin-transform-member-expression-literals@^7.12.1": 574 | version "7.12.1" 575 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad" 576 | integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== 577 | dependencies: 578 | "@babel/helper-plugin-utils" "^7.10.4" 579 | 580 | "@babel/plugin-transform-modules-amd@^7.12.1": 581 | version "7.12.1" 582 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9" 583 | integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== 584 | dependencies: 585 | "@babel/helper-module-transforms" "^7.12.1" 586 | "@babel/helper-plugin-utils" "^7.10.4" 587 | babel-plugin-dynamic-import-node "^2.3.3" 588 | 589 | "@babel/plugin-transform-modules-commonjs@^7.12.1": 590 | version "7.12.1" 591 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648" 592 | integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== 593 | dependencies: 594 | "@babel/helper-module-transforms" "^7.12.1" 595 | "@babel/helper-plugin-utils" "^7.10.4" 596 | "@babel/helper-simple-access" "^7.12.1" 597 | babel-plugin-dynamic-import-node "^2.3.3" 598 | 599 | "@babel/plugin-transform-modules-systemjs@^7.12.1": 600 | version "7.12.1" 601 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086" 602 | integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== 603 | dependencies: 604 | "@babel/helper-hoist-variables" "^7.10.4" 605 | "@babel/helper-module-transforms" "^7.12.1" 606 | "@babel/helper-plugin-utils" "^7.10.4" 607 | "@babel/helper-validator-identifier" "^7.10.4" 608 | babel-plugin-dynamic-import-node "^2.3.3" 609 | 610 | "@babel/plugin-transform-modules-umd@^7.12.1": 611 | version "7.12.1" 612 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902" 613 | integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== 614 | dependencies: 615 | "@babel/helper-module-transforms" "^7.12.1" 616 | "@babel/helper-plugin-utils" "^7.10.4" 617 | 618 | "@babel/plugin-transform-named-capturing-groups-regex@^7.12.1": 619 | version "7.12.1" 620 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753" 621 | integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== 622 | dependencies: 623 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" 624 | 625 | "@babel/plugin-transform-new-target@^7.12.1": 626 | version "7.12.1" 627 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0" 628 | integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== 629 | dependencies: 630 | "@babel/helper-plugin-utils" "^7.10.4" 631 | 632 | "@babel/plugin-transform-object-super@^7.12.1": 633 | version "7.12.1" 634 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e" 635 | integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== 636 | dependencies: 637 | "@babel/helper-plugin-utils" "^7.10.4" 638 | "@babel/helper-replace-supers" "^7.12.1" 639 | 640 | "@babel/plugin-transform-parameters@^7.12.1": 641 | version "7.12.1" 642 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d" 643 | integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== 644 | dependencies: 645 | "@babel/helper-plugin-utils" "^7.10.4" 646 | 647 | "@babel/plugin-transform-property-literals@^7.12.1": 648 | version "7.12.1" 649 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd" 650 | integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== 651 | dependencies: 652 | "@babel/helper-plugin-utils" "^7.10.4" 653 | 654 | "@babel/plugin-transform-react-display-name@^7.12.1": 655 | version "7.12.1" 656 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz#1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d" 657 | integrity sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w== 658 | dependencies: 659 | "@babel/helper-plugin-utils" "^7.10.4" 660 | 661 | "@babel/plugin-transform-react-jsx-development@^7.12.7": 662 | version "7.12.7" 663 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.7.tgz#4c2a647de79c7e2b16bfe4540677ba3121e82a08" 664 | integrity sha512-Rs3ETtMtR3VLXFeYRChle5SsP/P9Jp/6dsewBQfokDSzKJThlsuFcnzLTDRALiUmTC48ej19YD9uN1mupEeEDg== 665 | dependencies: 666 | "@babel/helper-builder-react-jsx-experimental" "^7.12.4" 667 | "@babel/helper-plugin-utils" "^7.10.4" 668 | "@babel/plugin-syntax-jsx" "^7.12.1" 669 | 670 | "@babel/plugin-transform-react-jsx-self@^7.12.1": 671 | version "7.12.1" 672 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz#ef43cbca2a14f1bd17807dbe4376ff89d714cf28" 673 | integrity sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA== 674 | dependencies: 675 | "@babel/helper-plugin-utils" "^7.10.4" 676 | 677 | "@babel/plugin-transform-react-jsx-source@^7.12.1": 678 | version "7.12.1" 679 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz#d07de6863f468da0809edcf79a1aa8ce2a82a26b" 680 | integrity sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ== 681 | dependencies: 682 | "@babel/helper-plugin-utils" "^7.10.4" 683 | 684 | "@babel/plugin-transform-react-jsx@^7.12.7": 685 | version "7.12.7" 686 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.7.tgz#8b14d45f6eccd41b7f924bcb65c021e9f0a06f7f" 687 | integrity sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ== 688 | dependencies: 689 | "@babel/helper-builder-react-jsx" "^7.10.4" 690 | "@babel/helper-builder-react-jsx-experimental" "^7.12.4" 691 | "@babel/helper-plugin-utils" "^7.10.4" 692 | "@babel/plugin-syntax-jsx" "^7.12.1" 693 | 694 | "@babel/plugin-transform-react-pure-annotations@^7.12.1": 695 | version "7.12.1" 696 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42" 697 | integrity sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== 698 | dependencies: 699 | "@babel/helper-annotate-as-pure" "^7.10.4" 700 | "@babel/helper-plugin-utils" "^7.10.4" 701 | 702 | "@babel/plugin-transform-regenerator@^7.12.1": 703 | version "7.12.1" 704 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753" 705 | integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== 706 | dependencies: 707 | regenerator-transform "^0.14.2" 708 | 709 | "@babel/plugin-transform-reserved-words@^7.12.1": 710 | version "7.12.1" 711 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8" 712 | integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== 713 | dependencies: 714 | "@babel/helper-plugin-utils" "^7.10.4" 715 | 716 | "@babel/plugin-transform-shorthand-properties@^7.12.1": 717 | version "7.12.1" 718 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3" 719 | integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== 720 | dependencies: 721 | "@babel/helper-plugin-utils" "^7.10.4" 722 | 723 | "@babel/plugin-transform-spread@^7.12.1": 724 | version "7.12.1" 725 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e" 726 | integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== 727 | dependencies: 728 | "@babel/helper-plugin-utils" "^7.10.4" 729 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 730 | 731 | "@babel/plugin-transform-sticky-regex@^7.12.7": 732 | version "7.12.7" 733 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad" 734 | integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg== 735 | dependencies: 736 | "@babel/helper-plugin-utils" "^7.10.4" 737 | 738 | "@babel/plugin-transform-template-literals@^7.12.1": 739 | version "7.12.1" 740 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843" 741 | integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== 742 | dependencies: 743 | "@babel/helper-plugin-utils" "^7.10.4" 744 | 745 | "@babel/plugin-transform-typeof-symbol@^7.12.1": 746 | version "7.12.1" 747 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz#9ca6be343d42512fbc2e68236a82ae64bc7af78a" 748 | integrity sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q== 749 | dependencies: 750 | "@babel/helper-plugin-utils" "^7.10.4" 751 | 752 | "@babel/plugin-transform-unicode-escapes@^7.12.1": 753 | version "7.12.1" 754 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709" 755 | integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q== 756 | dependencies: 757 | "@babel/helper-plugin-utils" "^7.10.4" 758 | 759 | "@babel/plugin-transform-unicode-regex@^7.12.1": 760 | version "7.12.1" 761 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb" 762 | integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== 763 | dependencies: 764 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" 765 | "@babel/helper-plugin-utils" "^7.10.4" 766 | 767 | "@babel/polyfill@^7.12.1": 768 | version "7.12.1" 769 | resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.12.1.tgz#1f2d6371d1261bbd961f3c5d5909150e12d0bd96" 770 | integrity sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g== 771 | dependencies: 772 | core-js "^2.6.5" 773 | regenerator-runtime "^0.13.4" 774 | 775 | "@babel/preset-env@^7.12.7": 776 | version "7.12.7" 777 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.7.tgz#54ea21dbe92caf6f10cb1a0a576adc4ebf094b55" 778 | integrity sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew== 779 | dependencies: 780 | "@babel/compat-data" "^7.12.7" 781 | "@babel/helper-compilation-targets" "^7.12.5" 782 | "@babel/helper-module-imports" "^7.12.5" 783 | "@babel/helper-plugin-utils" "^7.10.4" 784 | "@babel/helper-validator-option" "^7.12.1" 785 | "@babel/plugin-proposal-async-generator-functions" "^7.12.1" 786 | "@babel/plugin-proposal-class-properties" "^7.12.1" 787 | "@babel/plugin-proposal-dynamic-import" "^7.12.1" 788 | "@babel/plugin-proposal-export-namespace-from" "^7.12.1" 789 | "@babel/plugin-proposal-json-strings" "^7.12.1" 790 | "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1" 791 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" 792 | "@babel/plugin-proposal-numeric-separator" "^7.12.7" 793 | "@babel/plugin-proposal-object-rest-spread" "^7.12.1" 794 | "@babel/plugin-proposal-optional-catch-binding" "^7.12.1" 795 | "@babel/plugin-proposal-optional-chaining" "^7.12.7" 796 | "@babel/plugin-proposal-private-methods" "^7.12.1" 797 | "@babel/plugin-proposal-unicode-property-regex" "^7.12.1" 798 | "@babel/plugin-syntax-async-generators" "^7.8.0" 799 | "@babel/plugin-syntax-class-properties" "^7.12.1" 800 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 801 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 802 | "@babel/plugin-syntax-json-strings" "^7.8.0" 803 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 804 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 805 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 806 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 807 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 808 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 809 | "@babel/plugin-syntax-top-level-await" "^7.12.1" 810 | "@babel/plugin-transform-arrow-functions" "^7.12.1" 811 | "@babel/plugin-transform-async-to-generator" "^7.12.1" 812 | "@babel/plugin-transform-block-scoped-functions" "^7.12.1" 813 | "@babel/plugin-transform-block-scoping" "^7.12.1" 814 | "@babel/plugin-transform-classes" "^7.12.1" 815 | "@babel/plugin-transform-computed-properties" "^7.12.1" 816 | "@babel/plugin-transform-destructuring" "^7.12.1" 817 | "@babel/plugin-transform-dotall-regex" "^7.12.1" 818 | "@babel/plugin-transform-duplicate-keys" "^7.12.1" 819 | "@babel/plugin-transform-exponentiation-operator" "^7.12.1" 820 | "@babel/plugin-transform-for-of" "^7.12.1" 821 | "@babel/plugin-transform-function-name" "^7.12.1" 822 | "@babel/plugin-transform-literals" "^7.12.1" 823 | "@babel/plugin-transform-member-expression-literals" "^7.12.1" 824 | "@babel/plugin-transform-modules-amd" "^7.12.1" 825 | "@babel/plugin-transform-modules-commonjs" "^7.12.1" 826 | "@babel/plugin-transform-modules-systemjs" "^7.12.1" 827 | "@babel/plugin-transform-modules-umd" "^7.12.1" 828 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1" 829 | "@babel/plugin-transform-new-target" "^7.12.1" 830 | "@babel/plugin-transform-object-super" "^7.12.1" 831 | "@babel/plugin-transform-parameters" "^7.12.1" 832 | "@babel/plugin-transform-property-literals" "^7.12.1" 833 | "@babel/plugin-transform-regenerator" "^7.12.1" 834 | "@babel/plugin-transform-reserved-words" "^7.12.1" 835 | "@babel/plugin-transform-shorthand-properties" "^7.12.1" 836 | "@babel/plugin-transform-spread" "^7.12.1" 837 | "@babel/plugin-transform-sticky-regex" "^7.12.7" 838 | "@babel/plugin-transform-template-literals" "^7.12.1" 839 | "@babel/plugin-transform-typeof-symbol" "^7.12.1" 840 | "@babel/plugin-transform-unicode-escapes" "^7.12.1" 841 | "@babel/plugin-transform-unicode-regex" "^7.12.1" 842 | "@babel/preset-modules" "^0.1.3" 843 | "@babel/types" "^7.12.7" 844 | core-js-compat "^3.7.0" 845 | semver "^5.5.0" 846 | 847 | "@babel/preset-modules@^0.1.3": 848 | version "0.1.4" 849 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" 850 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== 851 | dependencies: 852 | "@babel/helper-plugin-utils" "^7.0.0" 853 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 854 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 855 | "@babel/types" "^7.4.4" 856 | esutils "^2.0.2" 857 | 858 | "@babel/preset-react@^7.12.7": 859 | version "7.12.7" 860 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.7.tgz#36d61d83223b07b6ac4ec55cf016abb0f70be83b" 861 | integrity sha512-wKeTdnGUP5AEYCYQIMeXMMwU7j+2opxrG0WzuZfxuuW9nhKvvALBjl67653CWamZJVefuJGI219G591RSldrqQ== 862 | dependencies: 863 | "@babel/helper-plugin-utils" "^7.10.4" 864 | "@babel/plugin-transform-react-display-name" "^7.12.1" 865 | "@babel/plugin-transform-react-jsx" "^7.12.7" 866 | "@babel/plugin-transform-react-jsx-development" "^7.12.7" 867 | "@babel/plugin-transform-react-jsx-self" "^7.12.1" 868 | "@babel/plugin-transform-react-jsx-source" "^7.12.1" 869 | "@babel/plugin-transform-react-pure-annotations" "^7.12.1" 870 | 871 | "@babel/runtime@^7.1.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.8.4": 872 | version "7.12.5" 873 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e" 874 | integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== 875 | dependencies: 876 | regenerator-runtime "^0.13.4" 877 | 878 | "@babel/template@^7.10.4", "@babel/template@^7.12.7": 879 | version "7.12.7" 880 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc" 881 | integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== 882 | dependencies: 883 | "@babel/code-frame" "^7.10.4" 884 | "@babel/parser" "^7.12.7" 885 | "@babel/types" "^7.12.7" 886 | 887 | "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5", "@babel/traverse@^7.12.7": 888 | version "7.12.7" 889 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.7.tgz#572a722408681cef17d6b0bef69ef2e728ca69f1" 890 | integrity sha512-nMWaqsQEeSvMNypswUDzjqQ+0rR6pqCtoQpsqGJC4/Khm9cISwPTSpai57F6/jDaOoEGz8yE/WxcO3PV6tKSmQ== 891 | dependencies: 892 | "@babel/code-frame" "^7.10.4" 893 | "@babel/generator" "^7.12.5" 894 | "@babel/helper-function-name" "^7.10.4" 895 | "@babel/helper-split-export-declaration" "^7.11.0" 896 | "@babel/parser" "^7.12.7" 897 | "@babel/types" "^7.12.7" 898 | debug "^4.1.0" 899 | globals "^11.1.0" 900 | lodash "^4.17.19" 901 | 902 | "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4": 903 | version "7.12.7" 904 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz#6039ff1e242640a29452c9ae572162ec9a8f5d13" 905 | integrity sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ== 906 | dependencies: 907 | "@babel/helper-validator-identifier" "^7.10.4" 908 | lodash "^4.17.19" 909 | to-fast-properties "^2.0.0" 910 | 911 | "@jacob-ebey/webpack-node-http-chunk-loading-plugin@0.0.2": 912 | version "0.0.2" 913 | resolved "https://npm.pkg.github.com/download/@jacob-ebey/webpack-node-http-chunk-loading-plugin/0.0.2/477a76859a0a852b7b5228eb9ce041e5de5a8941fdc2360ef65d91f1dd281097#7eacae3fc6fe91c49f72f6dcd876903ab97421fe" 914 | integrity sha512-vVl7WfQVX077x/8agOsp2SZUz6nmbx78k3lTgUx3pgXaHFBI957lnjJQpCqZbXG4tyuuUOTXuz/++8fOE4/wRA== 915 | 916 | "@sindresorhus/is@^0.14.0": 917 | version "0.14.0" 918 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 919 | integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 920 | 921 | "@szmarczak/http-timer@^1.1.2": 922 | version "1.1.2" 923 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 924 | integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== 925 | dependencies: 926 | defer-to-connect "^1.0.1" 927 | 928 | "@types/eslint-scope@^3.7.0": 929 | version "3.7.0" 930 | resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.0.tgz#4792816e31119ebd506902a482caec4951fabd86" 931 | integrity sha512-O/ql2+rrCUe2W2rs7wMR+GqPRcgB6UiqN5RhrR5xruFlY7l9YLMn0ZkDzjoHLeiFkR8MCQZVudUuuvQ2BLC9Qw== 932 | dependencies: 933 | "@types/eslint" "*" 934 | "@types/estree" "*" 935 | 936 | "@types/eslint@*": 937 | version "7.2.5" 938 | resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.2.5.tgz#92172ecf490c2fce4b076739693d75f30376d610" 939 | integrity sha512-Dc6ar9x16BdaR3NSxSF7T4IjL9gxxViJq8RmFd+2UAyA+K6ck2W+gUwfgpG/y9TPyUuBL35109bbULpEynvltA== 940 | dependencies: 941 | "@types/estree" "*" 942 | "@types/json-schema" "*" 943 | 944 | "@types/estree@*", "@types/estree@^0.0.45": 945 | version "0.0.45" 946 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" 947 | integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== 948 | 949 | "@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": 950 | version "7.0.6" 951 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" 952 | integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== 953 | 954 | "@types/node@*": 955 | version "14.14.9" 956 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.9.tgz#04afc9a25c6ff93da14deabd65dc44485b53c8d6" 957 | integrity sha512-JsoLXFppG62tWTklIoO4knA+oDTYsmqWxHRvd4lpmfQRNhX6osheUOWETP2jMoV/2bEHuMra8Pp3Dmo/stBFcw== 958 | 959 | "@webassemblyjs/ast@1.9.0": 960 | version "1.9.0" 961 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" 962 | integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA== 963 | dependencies: 964 | "@webassemblyjs/helper-module-context" "1.9.0" 965 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 966 | "@webassemblyjs/wast-parser" "1.9.0" 967 | 968 | "@webassemblyjs/floating-point-hex-parser@1.9.0": 969 | version "1.9.0" 970 | resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4" 971 | integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA== 972 | 973 | "@webassemblyjs/helper-api-error@1.9.0": 974 | version "1.9.0" 975 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2" 976 | integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw== 977 | 978 | "@webassemblyjs/helper-buffer@1.9.0": 979 | version "1.9.0" 980 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00" 981 | integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA== 982 | 983 | "@webassemblyjs/helper-code-frame@1.9.0": 984 | version "1.9.0" 985 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27" 986 | integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA== 987 | dependencies: 988 | "@webassemblyjs/wast-printer" "1.9.0" 989 | 990 | "@webassemblyjs/helper-fsm@1.9.0": 991 | version "1.9.0" 992 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8" 993 | integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw== 994 | 995 | "@webassemblyjs/helper-module-context@1.9.0": 996 | version "1.9.0" 997 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07" 998 | integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g== 999 | dependencies: 1000 | "@webassemblyjs/ast" "1.9.0" 1001 | 1002 | "@webassemblyjs/helper-wasm-bytecode@1.9.0": 1003 | version "1.9.0" 1004 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790" 1005 | integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw== 1006 | 1007 | "@webassemblyjs/helper-wasm-section@1.9.0": 1008 | version "1.9.0" 1009 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346" 1010 | integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw== 1011 | dependencies: 1012 | "@webassemblyjs/ast" "1.9.0" 1013 | "@webassemblyjs/helper-buffer" "1.9.0" 1014 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 1015 | "@webassemblyjs/wasm-gen" "1.9.0" 1016 | 1017 | "@webassemblyjs/ieee754@1.9.0": 1018 | version "1.9.0" 1019 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4" 1020 | integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg== 1021 | dependencies: 1022 | "@xtuc/ieee754" "^1.2.0" 1023 | 1024 | "@webassemblyjs/leb128@1.9.0": 1025 | version "1.9.0" 1026 | resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95" 1027 | integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw== 1028 | dependencies: 1029 | "@xtuc/long" "4.2.2" 1030 | 1031 | "@webassemblyjs/utf8@1.9.0": 1032 | version "1.9.0" 1033 | resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab" 1034 | integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w== 1035 | 1036 | "@webassemblyjs/wasm-edit@1.9.0": 1037 | version "1.9.0" 1038 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf" 1039 | integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw== 1040 | dependencies: 1041 | "@webassemblyjs/ast" "1.9.0" 1042 | "@webassemblyjs/helper-buffer" "1.9.0" 1043 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 1044 | "@webassemblyjs/helper-wasm-section" "1.9.0" 1045 | "@webassemblyjs/wasm-gen" "1.9.0" 1046 | "@webassemblyjs/wasm-opt" "1.9.0" 1047 | "@webassemblyjs/wasm-parser" "1.9.0" 1048 | "@webassemblyjs/wast-printer" "1.9.0" 1049 | 1050 | "@webassemblyjs/wasm-gen@1.9.0": 1051 | version "1.9.0" 1052 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c" 1053 | integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA== 1054 | dependencies: 1055 | "@webassemblyjs/ast" "1.9.0" 1056 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 1057 | "@webassemblyjs/ieee754" "1.9.0" 1058 | "@webassemblyjs/leb128" "1.9.0" 1059 | "@webassemblyjs/utf8" "1.9.0" 1060 | 1061 | "@webassemblyjs/wasm-opt@1.9.0": 1062 | version "1.9.0" 1063 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61" 1064 | integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A== 1065 | dependencies: 1066 | "@webassemblyjs/ast" "1.9.0" 1067 | "@webassemblyjs/helper-buffer" "1.9.0" 1068 | "@webassemblyjs/wasm-gen" "1.9.0" 1069 | "@webassemblyjs/wasm-parser" "1.9.0" 1070 | 1071 | "@webassemblyjs/wasm-parser@1.9.0": 1072 | version "1.9.0" 1073 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e" 1074 | integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA== 1075 | dependencies: 1076 | "@webassemblyjs/ast" "1.9.0" 1077 | "@webassemblyjs/helper-api-error" "1.9.0" 1078 | "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 1079 | "@webassemblyjs/ieee754" "1.9.0" 1080 | "@webassemblyjs/leb128" "1.9.0" 1081 | "@webassemblyjs/utf8" "1.9.0" 1082 | 1083 | "@webassemblyjs/wast-parser@1.9.0": 1084 | version "1.9.0" 1085 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914" 1086 | integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw== 1087 | dependencies: 1088 | "@webassemblyjs/ast" "1.9.0" 1089 | "@webassemblyjs/floating-point-hex-parser" "1.9.0" 1090 | "@webassemblyjs/helper-api-error" "1.9.0" 1091 | "@webassemblyjs/helper-code-frame" "1.9.0" 1092 | "@webassemblyjs/helper-fsm" "1.9.0" 1093 | "@xtuc/long" "4.2.2" 1094 | 1095 | "@webassemblyjs/wast-printer@1.9.0": 1096 | version "1.9.0" 1097 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899" 1098 | integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA== 1099 | dependencies: 1100 | "@webassemblyjs/ast" "1.9.0" 1101 | "@webassemblyjs/wast-parser" "1.9.0" 1102 | "@xtuc/long" "4.2.2" 1103 | 1104 | "@webpack-cli/info@^1.1.0": 1105 | version "1.1.0" 1106 | resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.1.0.tgz#c596d5bc48418b39df00c5ed7341bf0f102dbff1" 1107 | integrity sha512-uNWSdaYHc+f3LdIZNwhdhkjjLDDl3jP2+XBqAq9H8DjrJUvlOKdP8TNruy1yEaDfgpAIgbSAN7pye4FEHg9tYQ== 1108 | dependencies: 1109 | envinfo "^7.7.3" 1110 | 1111 | "@webpack-cli/serve@^1.1.0": 1112 | version "1.1.0" 1113 | resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.1.0.tgz#13ad38f89b6e53d1133bac0006a128217a6ebf92" 1114 | integrity sha512-7RfnMXCpJ/NThrhq4gYQYILB18xWyoQcBey81oIyVbmgbc6m5ZHHyFK+DyH7pLHJf0p14MxL4mTsoPAgBSTpIg== 1115 | 1116 | "@xtuc/ieee754@^1.2.0": 1117 | version "1.2.0" 1118 | resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" 1119 | integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== 1120 | 1121 | "@xtuc/long@4.2.2": 1122 | version "4.2.2" 1123 | resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" 1124 | integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== 1125 | 1126 | abbrev@1: 1127 | version "1.1.1" 1128 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 1129 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 1130 | 1131 | accepts@~1.3.7: 1132 | version "1.3.7" 1133 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 1134 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== 1135 | dependencies: 1136 | mime-types "~2.1.24" 1137 | negotiator "0.6.2" 1138 | 1139 | acorn@^8.0.4: 1140 | version "8.0.4" 1141 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.0.4.tgz#7a3ae4191466a6984eee0fe3407a4f3aa9db8354" 1142 | integrity sha512-XNP0PqF1XD19ZlLKvB7cMmnZswW4C/03pRHgirB30uSJTaS3A3V1/P4sS3HPvFmjoriPCJQs+JDSbm4bL1TxGQ== 1143 | 1144 | ajv-keywords@^3.5.2: 1145 | version "3.5.2" 1146 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" 1147 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== 1148 | 1149 | ajv@^6.12.4, ajv@^6.12.5: 1150 | version "6.12.6" 1151 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 1152 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 1153 | dependencies: 1154 | fast-deep-equal "^3.1.1" 1155 | fast-json-stable-stringify "^2.0.0" 1156 | json-schema-traverse "^0.4.1" 1157 | uri-js "^4.2.2" 1158 | 1159 | ansi-align@^3.0.0: 1160 | version "3.0.0" 1161 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb" 1162 | integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw== 1163 | dependencies: 1164 | string-width "^3.0.0" 1165 | 1166 | ansi-colors@^4.1.1: 1167 | version "4.1.1" 1168 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 1169 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 1170 | 1171 | ansi-regex@^4.1.0: 1172 | version "4.1.0" 1173 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 1174 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 1175 | 1176 | ansi-regex@^5.0.0: 1177 | version "5.0.0" 1178 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 1179 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 1180 | 1181 | ansi-styles@^3.2.1: 1182 | version "3.2.1" 1183 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1184 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1185 | dependencies: 1186 | color-convert "^1.9.0" 1187 | 1188 | ansi-styles@^4.1.0: 1189 | version "4.3.0" 1190 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 1191 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1192 | dependencies: 1193 | color-convert "^2.0.1" 1194 | 1195 | anymatch@~3.1.1: 1196 | version "3.1.1" 1197 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 1198 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 1199 | dependencies: 1200 | normalize-path "^3.0.0" 1201 | picomatch "^2.0.4" 1202 | 1203 | array-back@^4.0.1: 1204 | version "4.0.1" 1205 | resolved "https://registry.yarnpkg.com/array-back/-/array-back-4.0.1.tgz#9b80312935a52062e1a233a9c7abeb5481b30e90" 1206 | integrity sha512-Z/JnaVEXv+A9xabHzN43FiiiWEE7gPCRXMrVmRm00tWbjZRul1iHm7ECzlyNq1p4a4ATXz+G9FJ3GqGOkOV3fg== 1207 | 1208 | array-flatten@1.1.1: 1209 | version "1.1.1" 1210 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 1211 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 1212 | 1213 | babel-loader@^8.2.1: 1214 | version "8.2.1" 1215 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.1.tgz#e53313254677e86f27536f5071d807e01d24ec00" 1216 | integrity sha512-dMF8sb2KQ8kJl21GUjkW1HWmcsL39GOV5vnzjqrCzEPNY0S0UfMLnumidiwIajDSBmKhYf5iRW+HXaM4cvCKBw== 1217 | dependencies: 1218 | find-cache-dir "^2.1.0" 1219 | loader-utils "^1.4.0" 1220 | make-dir "^2.1.0" 1221 | pify "^4.0.1" 1222 | schema-utils "^2.6.5" 1223 | 1224 | babel-plugin-dynamic-import-node@^2.3.3: 1225 | version "2.3.3" 1226 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 1227 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 1228 | dependencies: 1229 | object.assign "^4.1.0" 1230 | 1231 | balanced-match@^1.0.0: 1232 | version "1.0.0" 1233 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1234 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 1235 | 1236 | big.js@^5.2.2: 1237 | version "5.2.2" 1238 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 1239 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 1240 | 1241 | binary-extensions@^2.0.0: 1242 | version "2.1.0" 1243 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" 1244 | integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== 1245 | 1246 | body-parser@1.19.0: 1247 | version "1.19.0" 1248 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" 1249 | integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== 1250 | dependencies: 1251 | bytes "3.1.0" 1252 | content-type "~1.0.4" 1253 | debug "2.6.9" 1254 | depd "~1.1.2" 1255 | http-errors "1.7.2" 1256 | iconv-lite "0.4.24" 1257 | on-finished "~2.3.0" 1258 | qs "6.7.0" 1259 | raw-body "2.4.0" 1260 | type-is "~1.6.17" 1261 | 1262 | boxen@^4.2.0: 1263 | version "4.2.0" 1264 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" 1265 | integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ== 1266 | dependencies: 1267 | ansi-align "^3.0.0" 1268 | camelcase "^5.3.1" 1269 | chalk "^3.0.0" 1270 | cli-boxes "^2.2.0" 1271 | string-width "^4.1.0" 1272 | term-size "^2.1.0" 1273 | type-fest "^0.8.1" 1274 | widest-line "^3.1.0" 1275 | 1276 | brace-expansion@^1.1.7: 1277 | version "1.1.11" 1278 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1279 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1280 | dependencies: 1281 | balanced-match "^1.0.0" 1282 | concat-map "0.0.1" 1283 | 1284 | braces@~3.0.2: 1285 | version "3.0.2" 1286 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 1287 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1288 | dependencies: 1289 | fill-range "^7.0.1" 1290 | 1291 | browserslist@^4.14.5, browserslist@^4.14.6: 1292 | version "4.14.7" 1293 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.7.tgz#c071c1b3622c1c2e790799a37bb09473a4351cb6" 1294 | integrity sha512-BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ== 1295 | dependencies: 1296 | caniuse-lite "^1.0.30001157" 1297 | colorette "^1.2.1" 1298 | electron-to-chromium "^1.3.591" 1299 | escalade "^3.1.1" 1300 | node-releases "^1.1.66" 1301 | 1302 | buffer-from@^1.0.0: 1303 | version "1.1.1" 1304 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 1305 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 1306 | 1307 | bytes@3.1.0: 1308 | version "3.1.0" 1309 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 1310 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 1311 | 1312 | cacheable-request@^6.0.0: 1313 | version "6.1.0" 1314 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 1315 | integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== 1316 | dependencies: 1317 | clone-response "^1.0.2" 1318 | get-stream "^5.1.0" 1319 | http-cache-semantics "^4.0.0" 1320 | keyv "^3.0.0" 1321 | lowercase-keys "^2.0.0" 1322 | normalize-url "^4.1.0" 1323 | responselike "^1.0.2" 1324 | 1325 | call-bind@^1.0.0: 1326 | version "1.0.0" 1327 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce" 1328 | integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w== 1329 | dependencies: 1330 | function-bind "^1.1.1" 1331 | get-intrinsic "^1.0.0" 1332 | 1333 | camelcase@^5.3.1: 1334 | version "5.3.1" 1335 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 1336 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 1337 | 1338 | caniuse-lite@^1.0.30001157: 1339 | version "1.0.30001159" 1340 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001159.tgz#bebde28f893fa9594dadcaa7d6b8e2aa0299df20" 1341 | integrity sha512-w9Ph56jOsS8RL20K9cLND3u/+5WASWdhC/PPrf+V3/HsM3uHOavWOR1Xzakbv4Puo/srmPHudkmCRWM7Aq+/UA== 1342 | 1343 | chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: 1344 | version "2.4.2" 1345 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1346 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1347 | dependencies: 1348 | ansi-styles "^3.2.1" 1349 | escape-string-regexp "^1.0.5" 1350 | supports-color "^5.3.0" 1351 | 1352 | chalk@^3.0.0: 1353 | version "3.0.0" 1354 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 1355 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 1356 | dependencies: 1357 | ansi-styles "^4.1.0" 1358 | supports-color "^7.1.0" 1359 | 1360 | chokidar@^3.2.2: 1361 | version "3.4.3" 1362 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" 1363 | integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== 1364 | dependencies: 1365 | anymatch "~3.1.1" 1366 | braces "~3.0.2" 1367 | glob-parent "~5.1.0" 1368 | is-binary-path "~2.1.0" 1369 | is-glob "~4.0.1" 1370 | normalize-path "~3.0.0" 1371 | readdirp "~3.5.0" 1372 | optionalDependencies: 1373 | fsevents "~2.1.2" 1374 | 1375 | chrome-trace-event@^1.0.2: 1376 | version "1.0.2" 1377 | resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" 1378 | integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== 1379 | dependencies: 1380 | tslib "^1.9.0" 1381 | 1382 | ci-info@^2.0.0: 1383 | version "2.0.0" 1384 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 1385 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 1386 | 1387 | cli-boxes@^2.2.0: 1388 | version "2.2.1" 1389 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" 1390 | integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== 1391 | 1392 | clone-response@^1.0.2: 1393 | version "1.0.2" 1394 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 1395 | integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= 1396 | dependencies: 1397 | mimic-response "^1.0.0" 1398 | 1399 | color-convert@^1.9.0: 1400 | version "1.9.3" 1401 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1402 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1403 | dependencies: 1404 | color-name "1.1.3" 1405 | 1406 | color-convert@^2.0.1: 1407 | version "2.0.1" 1408 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1409 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1410 | dependencies: 1411 | color-name "~1.1.4" 1412 | 1413 | color-name@1.1.3: 1414 | version "1.1.3" 1415 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1416 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1417 | 1418 | color-name@~1.1.4: 1419 | version "1.1.4" 1420 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1421 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1422 | 1423 | colorette@^1.2.1: 1424 | version "1.2.1" 1425 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" 1426 | integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== 1427 | 1428 | command-line-usage@^6.1.0: 1429 | version "6.1.1" 1430 | resolved "https://registry.yarnpkg.com/command-line-usage/-/command-line-usage-6.1.1.tgz#c908e28686108917758a49f45efb4f02f76bc03f" 1431 | integrity sha512-F59pEuAR9o1SF/bD0dQBDluhpT4jJQNWUHEuVBqpDmCUo6gPjCi+m9fCWnWZVR/oG6cMTUms4h+3NPl74wGXvA== 1432 | dependencies: 1433 | array-back "^4.0.1" 1434 | chalk "^2.4.2" 1435 | table-layout "^1.0.1" 1436 | typical "^5.2.0" 1437 | 1438 | commander@^2.20.0: 1439 | version "2.20.3" 1440 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 1441 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 1442 | 1443 | commander@^6.2.0: 1444 | version "6.2.0" 1445 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.0.tgz#b990bfb8ac030aedc6d11bc04d1488ffef56db75" 1446 | integrity sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q== 1447 | 1448 | commondir@^1.0.1: 1449 | version "1.0.1" 1450 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1451 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1452 | 1453 | concat-map@0.0.1: 1454 | version "0.0.1" 1455 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1456 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1457 | 1458 | configstore@^5.0.1: 1459 | version "5.0.1" 1460 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" 1461 | integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== 1462 | dependencies: 1463 | dot-prop "^5.2.0" 1464 | graceful-fs "^4.1.2" 1465 | make-dir "^3.0.0" 1466 | unique-string "^2.0.0" 1467 | write-file-atomic "^3.0.0" 1468 | xdg-basedir "^4.0.0" 1469 | 1470 | content-disposition@0.5.3: 1471 | version "0.5.3" 1472 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 1473 | integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== 1474 | dependencies: 1475 | safe-buffer "5.1.2" 1476 | 1477 | content-type@~1.0.4: 1478 | version "1.0.4" 1479 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 1480 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 1481 | 1482 | convert-source-map@^1.7.0: 1483 | version "1.7.0" 1484 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1485 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1486 | dependencies: 1487 | safe-buffer "~5.1.1" 1488 | 1489 | cookie-signature@1.0.6: 1490 | version "1.0.6" 1491 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1492 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 1493 | 1494 | cookie@0.4.0: 1495 | version "0.4.0" 1496 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" 1497 | integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== 1498 | 1499 | core-js-compat@^3.7.0: 1500 | version "3.7.0" 1501 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.7.0.tgz#8479c5d3d672d83f1f5ab94cf353e57113e065ed" 1502 | integrity sha512-V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg== 1503 | dependencies: 1504 | browserslist "^4.14.6" 1505 | semver "7.0.0" 1506 | 1507 | core-js@^2.6.5: 1508 | version "2.6.11" 1509 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" 1510 | integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== 1511 | 1512 | cross-spawn@^6.0.5: 1513 | version "6.0.5" 1514 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1515 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 1516 | dependencies: 1517 | nice-try "^1.0.4" 1518 | path-key "^2.0.1" 1519 | semver "^5.5.0" 1520 | shebang-command "^1.2.0" 1521 | which "^1.2.9" 1522 | 1523 | cross-spawn@^7.0.0: 1524 | version "7.0.3" 1525 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1526 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1527 | dependencies: 1528 | path-key "^3.1.0" 1529 | shebang-command "^2.0.0" 1530 | which "^2.0.1" 1531 | 1532 | crypto-random-string@^2.0.0: 1533 | version "2.0.0" 1534 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" 1535 | integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== 1536 | 1537 | debug@2.6.9, debug@^2.2.0: 1538 | version "2.6.9" 1539 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1540 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1541 | dependencies: 1542 | ms "2.0.0" 1543 | 1544 | debug@^3.2.6: 1545 | version "3.2.7" 1546 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 1547 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 1548 | dependencies: 1549 | ms "^2.1.1" 1550 | 1551 | debug@^4.1.0: 1552 | version "4.3.1" 1553 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 1554 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 1555 | dependencies: 1556 | ms "2.1.2" 1557 | 1558 | decompress-response@^3.3.0: 1559 | version "3.3.0" 1560 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 1561 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 1562 | dependencies: 1563 | mimic-response "^1.0.0" 1564 | 1565 | deep-extend@^0.6.0, deep-extend@~0.6.0: 1566 | version "0.6.0" 1567 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1568 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 1569 | 1570 | defer-to-connect@^1.0.1: 1571 | version "1.1.3" 1572 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 1573 | integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== 1574 | 1575 | define-properties@^1.1.3: 1576 | version "1.1.3" 1577 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1578 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1579 | dependencies: 1580 | object-keys "^1.0.12" 1581 | 1582 | depd@~1.1.2: 1583 | version "1.1.2" 1584 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1585 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 1586 | 1587 | destroy@~1.0.4: 1588 | version "1.0.4" 1589 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1590 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 1591 | 1592 | dot-prop@^5.2.0: 1593 | version "5.3.0" 1594 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 1595 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 1596 | dependencies: 1597 | is-obj "^2.0.0" 1598 | 1599 | duplexer3@^0.1.4: 1600 | version "0.1.4" 1601 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1602 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 1603 | 1604 | ee-first@1.1.1: 1605 | version "1.1.1" 1606 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1607 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 1608 | 1609 | electron-to-chromium@^1.3.591: 1610 | version "1.3.603" 1611 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.603.tgz#1b71bec27fb940eccd79245f6824c63d5f7e8abf" 1612 | integrity sha512-J8OHxOeJkoSLgBXfV9BHgKccgfLMHh+CoeRo6wJsi6m0k3otaxS/5vrHpMNSEYY4MISwewqanPOuhAtuE8riQQ== 1613 | 1614 | emoji-regex@^7.0.1: 1615 | version "7.0.3" 1616 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 1617 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 1618 | 1619 | emoji-regex@^8.0.0: 1620 | version "8.0.0" 1621 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1622 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1623 | 1624 | emojis-list@^3.0.0: 1625 | version "3.0.0" 1626 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 1627 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 1628 | 1629 | encodeurl@~1.0.2: 1630 | version "1.0.2" 1631 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 1632 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 1633 | 1634 | end-of-stream@^1.1.0: 1635 | version "1.4.4" 1636 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 1637 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1638 | dependencies: 1639 | once "^1.4.0" 1640 | 1641 | enhanced-resolve@^5.3.1: 1642 | version "5.3.2" 1643 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.3.2.tgz#142295dda51aaaff049cf256459dc9a82a0b67f3" 1644 | integrity sha512-G28GCrglCAH6+EqMN2D+Q2wCUS1O1vVQJBn8ME2I/Api41YBe4vLWWRBOUbwDH7vwzSZdljxwTRVqnf+sm6XqQ== 1645 | dependencies: 1646 | graceful-fs "^4.2.4" 1647 | tapable "^2.0.0" 1648 | 1649 | enquirer@^2.3.6: 1650 | version "2.3.6" 1651 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 1652 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 1653 | dependencies: 1654 | ansi-colors "^4.1.1" 1655 | 1656 | envinfo@^7.7.3: 1657 | version "7.7.3" 1658 | resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.7.3.tgz#4b2d8622e3e7366afb8091b23ed95569ea0208cc" 1659 | integrity sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA== 1660 | 1661 | error-ex@^1.3.1: 1662 | version "1.3.2" 1663 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1664 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1665 | dependencies: 1666 | is-arrayish "^0.2.1" 1667 | 1668 | es-abstract@^1.18.0-next.1: 1669 | version "1.18.0-next.1" 1670 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" 1671 | integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== 1672 | dependencies: 1673 | es-to-primitive "^1.2.1" 1674 | function-bind "^1.1.1" 1675 | has "^1.0.3" 1676 | has-symbols "^1.0.1" 1677 | is-callable "^1.2.2" 1678 | is-negative-zero "^2.0.0" 1679 | is-regex "^1.1.1" 1680 | object-inspect "^1.8.0" 1681 | object-keys "^1.1.1" 1682 | object.assign "^4.1.1" 1683 | string.prototype.trimend "^1.0.1" 1684 | string.prototype.trimstart "^1.0.1" 1685 | 1686 | es-to-primitive@^1.2.1: 1687 | version "1.2.1" 1688 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1689 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1690 | dependencies: 1691 | is-callable "^1.1.4" 1692 | is-date-object "^1.0.1" 1693 | is-symbol "^1.0.2" 1694 | 1695 | escalade@^3.1.1: 1696 | version "3.1.1" 1697 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1698 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1699 | 1700 | escape-goat@^2.0.0: 1701 | version "2.1.1" 1702 | resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" 1703 | integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== 1704 | 1705 | escape-html@~1.0.3: 1706 | version "1.0.3" 1707 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1708 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 1709 | 1710 | escape-string-regexp@^1.0.5: 1711 | version "1.0.5" 1712 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1713 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1714 | 1715 | eslint-scope@^5.1.1: 1716 | version "5.1.1" 1717 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 1718 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 1719 | dependencies: 1720 | esrecurse "^4.3.0" 1721 | estraverse "^4.1.1" 1722 | 1723 | esrecurse@^4.3.0: 1724 | version "4.3.0" 1725 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1726 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1727 | dependencies: 1728 | estraverse "^5.2.0" 1729 | 1730 | estraverse@^4.1.1: 1731 | version "4.3.0" 1732 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1733 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1734 | 1735 | estraverse@^5.2.0: 1736 | version "5.2.0" 1737 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 1738 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 1739 | 1740 | esutils@^2.0.2: 1741 | version "2.0.3" 1742 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1743 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1744 | 1745 | etag@~1.8.1: 1746 | version "1.8.1" 1747 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1748 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 1749 | 1750 | events@^3.2.0: 1751 | version "3.2.0" 1752 | resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379" 1753 | integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg== 1754 | 1755 | execa@^4.1.0: 1756 | version "4.1.0" 1757 | resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" 1758 | integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== 1759 | dependencies: 1760 | cross-spawn "^7.0.0" 1761 | get-stream "^5.0.0" 1762 | human-signals "^1.1.1" 1763 | is-stream "^2.0.0" 1764 | merge-stream "^2.0.0" 1765 | npm-run-path "^4.0.0" 1766 | onetime "^5.1.0" 1767 | signal-exit "^3.0.2" 1768 | strip-final-newline "^2.0.0" 1769 | 1770 | express@^4.17.1: 1771 | version "4.17.1" 1772 | resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" 1773 | integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== 1774 | dependencies: 1775 | accepts "~1.3.7" 1776 | array-flatten "1.1.1" 1777 | body-parser "1.19.0" 1778 | content-disposition "0.5.3" 1779 | content-type "~1.0.4" 1780 | cookie "0.4.0" 1781 | cookie-signature "1.0.6" 1782 | debug "2.6.9" 1783 | depd "~1.1.2" 1784 | encodeurl "~1.0.2" 1785 | escape-html "~1.0.3" 1786 | etag "~1.8.1" 1787 | finalhandler "~1.1.2" 1788 | fresh "0.5.2" 1789 | merge-descriptors "1.0.1" 1790 | methods "~1.1.2" 1791 | on-finished "~2.3.0" 1792 | parseurl "~1.3.3" 1793 | path-to-regexp "0.1.7" 1794 | proxy-addr "~2.0.5" 1795 | qs "6.7.0" 1796 | range-parser "~1.2.1" 1797 | safe-buffer "5.1.2" 1798 | send "0.17.1" 1799 | serve-static "1.14.1" 1800 | setprototypeof "1.1.1" 1801 | statuses "~1.5.0" 1802 | type-is "~1.6.18" 1803 | utils-merge "1.0.1" 1804 | vary "~1.1.2" 1805 | 1806 | fast-deep-equal@^3.1.1: 1807 | version "3.1.3" 1808 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1809 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1810 | 1811 | fast-json-stable-stringify@^2.0.0: 1812 | version "2.1.0" 1813 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1814 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1815 | 1816 | fill-range@^7.0.1: 1817 | version "7.0.1" 1818 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1819 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1820 | dependencies: 1821 | to-regex-range "^5.0.1" 1822 | 1823 | finalhandler@~1.1.2: 1824 | version "1.1.2" 1825 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 1826 | integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== 1827 | dependencies: 1828 | debug "2.6.9" 1829 | encodeurl "~1.0.2" 1830 | escape-html "~1.0.3" 1831 | on-finished "~2.3.0" 1832 | parseurl "~1.3.3" 1833 | statuses "~1.5.0" 1834 | unpipe "~1.0.0" 1835 | 1836 | find-cache-dir@^2.1.0: 1837 | version "2.1.0" 1838 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" 1839 | integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== 1840 | dependencies: 1841 | commondir "^1.0.1" 1842 | make-dir "^2.0.0" 1843 | pkg-dir "^3.0.0" 1844 | 1845 | find-up@^3.0.0: 1846 | version "3.0.0" 1847 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 1848 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 1849 | dependencies: 1850 | locate-path "^3.0.0" 1851 | 1852 | find-up@^4.0.0: 1853 | version "4.1.0" 1854 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1855 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1856 | dependencies: 1857 | locate-path "^5.0.0" 1858 | path-exists "^4.0.0" 1859 | 1860 | forwarded@~0.1.2: 1861 | version "0.1.2" 1862 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1863 | integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= 1864 | 1865 | fresh@0.5.2: 1866 | version "0.5.2" 1867 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1868 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 1869 | 1870 | fsevents@~2.1.2: 1871 | version "2.1.3" 1872 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 1873 | integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== 1874 | 1875 | function-bind@^1.1.1: 1876 | version "1.1.1" 1877 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1878 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1879 | 1880 | gensync@^1.0.0-beta.1: 1881 | version "1.0.0-beta.2" 1882 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1883 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1884 | 1885 | get-intrinsic@^1.0.0: 1886 | version "1.0.1" 1887 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be" 1888 | integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg== 1889 | dependencies: 1890 | function-bind "^1.1.1" 1891 | has "^1.0.3" 1892 | has-symbols "^1.0.1" 1893 | 1894 | get-stream@^4.1.0: 1895 | version "4.1.0" 1896 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1897 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 1898 | dependencies: 1899 | pump "^3.0.0" 1900 | 1901 | get-stream@^5.0.0, get-stream@^5.1.0: 1902 | version "5.2.0" 1903 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 1904 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 1905 | dependencies: 1906 | pump "^3.0.0" 1907 | 1908 | glob-parent@~5.1.0: 1909 | version "5.1.1" 1910 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 1911 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 1912 | dependencies: 1913 | is-glob "^4.0.1" 1914 | 1915 | glob-to-regexp@^0.4.1: 1916 | version "0.4.1" 1917 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" 1918 | integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== 1919 | 1920 | global-dirs@^2.0.1: 1921 | version "2.0.1" 1922 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.0.1.tgz#acdf3bb6685bcd55cb35e8a052266569e9469201" 1923 | integrity sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A== 1924 | dependencies: 1925 | ini "^1.3.5" 1926 | 1927 | globals@^11.1.0: 1928 | version "11.12.0" 1929 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1930 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1931 | 1932 | got@^9.6.0: 1933 | version "9.6.0" 1934 | resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 1935 | integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== 1936 | dependencies: 1937 | "@sindresorhus/is" "^0.14.0" 1938 | "@szmarczak/http-timer" "^1.1.2" 1939 | cacheable-request "^6.0.0" 1940 | decompress-response "^3.3.0" 1941 | duplexer3 "^0.1.4" 1942 | get-stream "^4.1.0" 1943 | lowercase-keys "^1.0.1" 1944 | mimic-response "^1.0.1" 1945 | p-cancelable "^1.0.0" 1946 | to-readable-stream "^1.0.0" 1947 | url-parse-lax "^3.0.0" 1948 | 1949 | graceful-fs@^4.1.2, graceful-fs@^4.2.4: 1950 | version "4.2.4" 1951 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1952 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 1953 | 1954 | has-flag@^3.0.0: 1955 | version "3.0.0" 1956 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1957 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1958 | 1959 | has-flag@^4.0.0: 1960 | version "4.0.0" 1961 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1962 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1963 | 1964 | has-symbols@^1.0.1: 1965 | version "1.0.1" 1966 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1967 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1968 | 1969 | has-yarn@^2.1.0: 1970 | version "2.1.0" 1971 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" 1972 | integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== 1973 | 1974 | has@^1.0.3: 1975 | version "1.0.3" 1976 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1977 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1978 | dependencies: 1979 | function-bind "^1.1.1" 1980 | 1981 | history@^4.9.0: 1982 | version "4.10.1" 1983 | resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3" 1984 | integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew== 1985 | dependencies: 1986 | "@babel/runtime" "^7.1.2" 1987 | loose-envify "^1.2.0" 1988 | resolve-pathname "^3.0.0" 1989 | tiny-invariant "^1.0.2" 1990 | tiny-warning "^1.0.0" 1991 | value-equal "^1.0.1" 1992 | 1993 | hoist-non-react-statics@^3.1.0: 1994 | version "3.3.2" 1995 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" 1996 | integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== 1997 | dependencies: 1998 | react-is "^16.7.0" 1999 | 2000 | hosted-git-info@^2.1.4: 2001 | version "2.8.8" 2002 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 2003 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 2004 | 2005 | http-cache-semantics@^4.0.0: 2006 | version "4.1.0" 2007 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 2008 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 2009 | 2010 | http-errors@1.7.2: 2011 | version "1.7.2" 2012 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" 2013 | integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== 2014 | dependencies: 2015 | depd "~1.1.2" 2016 | inherits "2.0.3" 2017 | setprototypeof "1.1.1" 2018 | statuses ">= 1.5.0 < 2" 2019 | toidentifier "1.0.0" 2020 | 2021 | http-errors@~1.7.2: 2022 | version "1.7.3" 2023 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 2024 | integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== 2025 | dependencies: 2026 | depd "~1.1.2" 2027 | inherits "2.0.4" 2028 | setprototypeof "1.1.1" 2029 | statuses ">= 1.5.0 < 2" 2030 | toidentifier "1.0.0" 2031 | 2032 | human-signals@^1.1.1: 2033 | version "1.1.1" 2034 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 2035 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 2036 | 2037 | iconv-lite@0.4.24: 2038 | version "0.4.24" 2039 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 2040 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 2041 | dependencies: 2042 | safer-buffer ">= 2.1.2 < 3" 2043 | 2044 | ignore-by-default@^1.0.1: 2045 | version "1.0.1" 2046 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 2047 | integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= 2048 | 2049 | import-lazy@^2.1.0: 2050 | version "2.1.0" 2051 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 2052 | integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= 2053 | 2054 | import-local@^3.0.2: 2055 | version "3.0.2" 2056 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" 2057 | integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA== 2058 | dependencies: 2059 | pkg-dir "^4.2.0" 2060 | resolve-cwd "^3.0.0" 2061 | 2062 | imurmurhash@^0.1.4: 2063 | version "0.1.4" 2064 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2065 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 2066 | 2067 | inherits@2.0.3: 2068 | version "2.0.3" 2069 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2070 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 2071 | 2072 | inherits@2.0.4: 2073 | version "2.0.4" 2074 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 2075 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 2076 | 2077 | ini@^1.3.5, ini@~1.3.0: 2078 | version "1.3.5" 2079 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2080 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 2081 | 2082 | interpret@^2.2.0: 2083 | version "2.2.0" 2084 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" 2085 | integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== 2086 | 2087 | invariant@^2.2.4: 2088 | version "2.2.4" 2089 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 2090 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 2091 | dependencies: 2092 | loose-envify "^1.0.0" 2093 | 2094 | ipaddr.js@1.9.1: 2095 | version "1.9.1" 2096 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" 2097 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== 2098 | 2099 | is-arrayish@^0.2.1: 2100 | version "0.2.1" 2101 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2102 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 2103 | 2104 | is-binary-path@~2.1.0: 2105 | version "2.1.0" 2106 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 2107 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 2108 | dependencies: 2109 | binary-extensions "^2.0.0" 2110 | 2111 | is-callable@^1.1.4, is-callable@^1.2.2: 2112 | version "1.2.2" 2113 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" 2114 | integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== 2115 | 2116 | is-ci@^2.0.0: 2117 | version "2.0.0" 2118 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 2119 | integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 2120 | dependencies: 2121 | ci-info "^2.0.0" 2122 | 2123 | is-core-module@^2.1.0: 2124 | version "2.1.0" 2125 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz#a4cc031d9b1aca63eecbd18a650e13cb4eeab946" 2126 | integrity sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA== 2127 | dependencies: 2128 | has "^1.0.3" 2129 | 2130 | is-date-object@^1.0.1: 2131 | version "1.0.2" 2132 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 2133 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 2134 | 2135 | is-extglob@^2.1.1: 2136 | version "2.1.1" 2137 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2138 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 2139 | 2140 | is-fullwidth-code-point@^2.0.0: 2141 | version "2.0.0" 2142 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2143 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 2144 | 2145 | is-fullwidth-code-point@^3.0.0: 2146 | version "3.0.0" 2147 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 2148 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 2149 | 2150 | is-glob@^4.0.1, is-glob@~4.0.1: 2151 | version "4.0.1" 2152 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 2153 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 2154 | dependencies: 2155 | is-extglob "^2.1.1" 2156 | 2157 | is-installed-globally@^0.3.1: 2158 | version "0.3.2" 2159 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz#fd3efa79ee670d1187233182d5b0a1dd00313141" 2160 | integrity sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g== 2161 | dependencies: 2162 | global-dirs "^2.0.1" 2163 | is-path-inside "^3.0.1" 2164 | 2165 | is-negative-zero@^2.0.0: 2166 | version "2.0.0" 2167 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461" 2168 | integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE= 2169 | 2170 | is-npm@^4.0.0: 2171 | version "4.0.0" 2172 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d" 2173 | integrity sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig== 2174 | 2175 | is-number@^7.0.0: 2176 | version "7.0.0" 2177 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 2178 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 2179 | 2180 | is-obj@^2.0.0: 2181 | version "2.0.0" 2182 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 2183 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 2184 | 2185 | is-path-inside@^3.0.1: 2186 | version "3.0.2" 2187 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" 2188 | integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== 2189 | 2190 | is-regex@^1.1.1: 2191 | version "1.1.1" 2192 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 2193 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 2194 | dependencies: 2195 | has-symbols "^1.0.1" 2196 | 2197 | is-stream@^2.0.0: 2198 | version "2.0.0" 2199 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 2200 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 2201 | 2202 | is-symbol@^1.0.2: 2203 | version "1.0.3" 2204 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 2205 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 2206 | dependencies: 2207 | has-symbols "^1.0.1" 2208 | 2209 | is-typedarray@^1.0.0: 2210 | version "1.0.0" 2211 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2212 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 2213 | 2214 | is-yarn-global@^0.3.0: 2215 | version "0.3.0" 2216 | resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" 2217 | integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== 2218 | 2219 | isarray@0.0.1: 2220 | version "0.0.1" 2221 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2222 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 2223 | 2224 | isexe@^2.0.0: 2225 | version "2.0.0" 2226 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2227 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2228 | 2229 | jest-worker@^26.6.1: 2230 | version "26.6.2" 2231 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" 2232 | integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 2233 | dependencies: 2234 | "@types/node" "*" 2235 | merge-stream "^2.0.0" 2236 | supports-color "^7.0.0" 2237 | 2238 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2239 | version "4.0.0" 2240 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2241 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2242 | 2243 | jsesc@^2.5.1: 2244 | version "2.5.2" 2245 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2246 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2247 | 2248 | jsesc@~0.5.0: 2249 | version "0.5.0" 2250 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2251 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2252 | 2253 | json-buffer@3.0.0: 2254 | version "3.0.0" 2255 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 2256 | integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= 2257 | 2258 | json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: 2259 | version "1.0.2" 2260 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2261 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 2262 | 2263 | json-schema-traverse@^0.4.1: 2264 | version "0.4.1" 2265 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2266 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 2267 | 2268 | json5@^1.0.1: 2269 | version "1.0.1" 2270 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 2271 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 2272 | dependencies: 2273 | minimist "^1.2.0" 2274 | 2275 | json5@^2.1.2: 2276 | version "2.1.3" 2277 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 2278 | integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== 2279 | dependencies: 2280 | minimist "^1.2.5" 2281 | 2282 | keyv@^3.0.0: 2283 | version "3.1.0" 2284 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 2285 | integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== 2286 | dependencies: 2287 | json-buffer "3.0.0" 2288 | 2289 | latest-version@^5.0.0: 2290 | version "5.1.0" 2291 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" 2292 | integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== 2293 | dependencies: 2294 | package-json "^6.3.0" 2295 | 2296 | leven@^3.1.0: 2297 | version "3.1.0" 2298 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2299 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2300 | 2301 | load-json-file@^4.0.0: 2302 | version "4.0.0" 2303 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 2304 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 2305 | dependencies: 2306 | graceful-fs "^4.1.2" 2307 | parse-json "^4.0.0" 2308 | pify "^3.0.0" 2309 | strip-bom "^3.0.0" 2310 | 2311 | loader-runner@^4.1.0: 2312 | version "4.1.0" 2313 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.1.0.tgz#f70bc0c29edbabdf2043e7ee73ccc3fe1c96b42d" 2314 | integrity sha512-oR4lB4WvwFoC70ocraKhn5nkKSs23t57h9udUgw8o0iH8hMXeEoRuUgfcvgUwAJ1ZpRqBvcou4N2SMvM1DwMrA== 2315 | 2316 | loader-utils@^1.4.0: 2317 | version "1.4.0" 2318 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" 2319 | integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== 2320 | dependencies: 2321 | big.js "^5.2.2" 2322 | emojis-list "^3.0.0" 2323 | json5 "^1.0.1" 2324 | 2325 | locate-path@^3.0.0: 2326 | version "3.0.0" 2327 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 2328 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 2329 | dependencies: 2330 | p-locate "^3.0.0" 2331 | path-exists "^3.0.0" 2332 | 2333 | locate-path@^5.0.0: 2334 | version "5.0.0" 2335 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2336 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2337 | dependencies: 2338 | p-locate "^4.1.0" 2339 | 2340 | lodash@^4.17.15, lodash@^4.17.19: 2341 | version "4.17.20" 2342 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 2343 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 2344 | 2345 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0: 2346 | version "1.4.0" 2347 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2348 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2349 | dependencies: 2350 | js-tokens "^3.0.0 || ^4.0.0" 2351 | 2352 | lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 2353 | version "1.0.1" 2354 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 2355 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 2356 | 2357 | lowercase-keys@^2.0.0: 2358 | version "2.0.0" 2359 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 2360 | integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== 2361 | 2362 | make-dir@^2.0.0, make-dir@^2.1.0: 2363 | version "2.1.0" 2364 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 2365 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== 2366 | dependencies: 2367 | pify "^4.0.1" 2368 | semver "^5.6.0" 2369 | 2370 | make-dir@^3.0.0: 2371 | version "3.1.0" 2372 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 2373 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2374 | dependencies: 2375 | semver "^6.0.0" 2376 | 2377 | media-typer@0.3.0: 2378 | version "0.3.0" 2379 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2380 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 2381 | 2382 | memorystream@^0.3.1: 2383 | version "0.3.1" 2384 | resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 2385 | integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= 2386 | 2387 | merge-descriptors@1.0.1: 2388 | version "1.0.1" 2389 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2390 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 2391 | 2392 | merge-stream@^2.0.0: 2393 | version "2.0.0" 2394 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2395 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2396 | 2397 | methods@~1.1.2: 2398 | version "1.1.2" 2399 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2400 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 2401 | 2402 | mime-db@1.44.0: 2403 | version "1.44.0" 2404 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" 2405 | integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== 2406 | 2407 | mime-types@^2.1.27, mime-types@~2.1.24: 2408 | version "2.1.27" 2409 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" 2410 | integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== 2411 | dependencies: 2412 | mime-db "1.44.0" 2413 | 2414 | mime@1.6.0: 2415 | version "1.6.0" 2416 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2417 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 2418 | 2419 | mimic-fn@^2.1.0: 2420 | version "2.1.0" 2421 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2422 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2423 | 2424 | mimic-response@^1.0.0, mimic-response@^1.0.1: 2425 | version "1.0.1" 2426 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 2427 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 2428 | 2429 | mini-create-react-context@^0.4.0: 2430 | version "0.4.1" 2431 | resolved "https://registry.yarnpkg.com/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz#072171561bfdc922da08a60c2197a497cc2d1d5e" 2432 | integrity sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ== 2433 | dependencies: 2434 | "@babel/runtime" "^7.12.1" 2435 | tiny-warning "^1.0.3" 2436 | 2437 | minimatch@^3.0.4: 2438 | version "3.0.4" 2439 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2440 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2441 | dependencies: 2442 | brace-expansion "^1.1.7" 2443 | 2444 | minimist@^1.2.0, minimist@^1.2.5: 2445 | version "1.2.5" 2446 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2447 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2448 | 2449 | ms@2.0.0: 2450 | version "2.0.0" 2451 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2452 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2453 | 2454 | ms@2.1.1: 2455 | version "2.1.1" 2456 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2457 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 2458 | 2459 | ms@2.1.2, ms@^2.1.1: 2460 | version "2.1.2" 2461 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2462 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2463 | 2464 | negotiator@0.6.2: 2465 | version "0.6.2" 2466 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 2467 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 2468 | 2469 | neo-async@^2.6.2: 2470 | version "2.6.2" 2471 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 2472 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 2473 | 2474 | nice-try@^1.0.4: 2475 | version "1.0.5" 2476 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2477 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 2478 | 2479 | node-releases@^1.1.66: 2480 | version "1.1.67" 2481 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12" 2482 | integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg== 2483 | 2484 | nodemon@^2.0.6: 2485 | version "2.0.6" 2486 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.6.tgz#1abe1937b463aaf62f0d52e2b7eaadf28cc2240d" 2487 | integrity sha512-4I3YDSKXg6ltYpcnZeHompqac4E6JeAMpGm8tJnB9Y3T0ehasLa4139dJOcCrB93HHrUMsCrKtoAlXTqT5n4AQ== 2488 | dependencies: 2489 | chokidar "^3.2.2" 2490 | debug "^3.2.6" 2491 | ignore-by-default "^1.0.1" 2492 | minimatch "^3.0.4" 2493 | pstree.remy "^1.1.7" 2494 | semver "^5.7.1" 2495 | supports-color "^5.5.0" 2496 | touch "^3.1.0" 2497 | undefsafe "^2.0.3" 2498 | update-notifier "^4.1.0" 2499 | 2500 | nopt@~1.0.10: 2501 | version "1.0.10" 2502 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2503 | integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= 2504 | dependencies: 2505 | abbrev "1" 2506 | 2507 | normalize-package-data@^2.3.2: 2508 | version "2.5.0" 2509 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 2510 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 2511 | dependencies: 2512 | hosted-git-info "^2.1.4" 2513 | resolve "^1.10.0" 2514 | semver "2 || 3 || 4 || 5" 2515 | validate-npm-package-license "^3.0.1" 2516 | 2517 | normalize-path@^3.0.0, normalize-path@~3.0.0: 2518 | version "3.0.0" 2519 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2520 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2521 | 2522 | normalize-url@^4.1.0: 2523 | version "4.5.0" 2524 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" 2525 | integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== 2526 | 2527 | npm-run-all@^4.1.5: 2528 | version "4.1.5" 2529 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" 2530 | integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== 2531 | dependencies: 2532 | ansi-styles "^3.2.1" 2533 | chalk "^2.4.1" 2534 | cross-spawn "^6.0.5" 2535 | memorystream "^0.3.1" 2536 | minimatch "^3.0.4" 2537 | pidtree "^0.3.0" 2538 | read-pkg "^3.0.0" 2539 | shell-quote "^1.6.1" 2540 | string.prototype.padend "^3.0.0" 2541 | 2542 | npm-run-path@^4.0.0: 2543 | version "4.0.1" 2544 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2545 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2546 | dependencies: 2547 | path-key "^3.0.0" 2548 | 2549 | object-assign@^4.1.1: 2550 | version "4.1.1" 2551 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2552 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2553 | 2554 | object-inspect@^1.8.0: 2555 | version "1.8.0" 2556 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 2557 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 2558 | 2559 | object-keys@^1.0.12, object-keys@^1.1.1: 2560 | version "1.1.1" 2561 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2562 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2563 | 2564 | object.assign@^4.1.0, object.assign@^4.1.1: 2565 | version "4.1.2" 2566 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 2567 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 2568 | dependencies: 2569 | call-bind "^1.0.0" 2570 | define-properties "^1.1.3" 2571 | has-symbols "^1.0.1" 2572 | object-keys "^1.1.1" 2573 | 2574 | on-finished@~2.3.0: 2575 | version "2.3.0" 2576 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2577 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 2578 | dependencies: 2579 | ee-first "1.1.1" 2580 | 2581 | once@^1.3.1, once@^1.4.0: 2582 | version "1.4.0" 2583 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2584 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2585 | dependencies: 2586 | wrappy "1" 2587 | 2588 | onetime@^5.1.0: 2589 | version "5.1.2" 2590 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2591 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2592 | dependencies: 2593 | mimic-fn "^2.1.0" 2594 | 2595 | p-cancelable@^1.0.0: 2596 | version "1.1.0" 2597 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 2598 | integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== 2599 | 2600 | p-limit@^2.0.0, p-limit@^2.2.0: 2601 | version "2.3.0" 2602 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2603 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2604 | dependencies: 2605 | p-try "^2.0.0" 2606 | 2607 | p-limit@^3.0.2: 2608 | version "3.0.2" 2609 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.0.2.tgz#1664e010af3cadc681baafd3e2a437be7b0fb5fe" 2610 | integrity sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg== 2611 | dependencies: 2612 | p-try "^2.0.0" 2613 | 2614 | p-locate@^3.0.0: 2615 | version "3.0.0" 2616 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 2617 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 2618 | dependencies: 2619 | p-limit "^2.0.0" 2620 | 2621 | p-locate@^4.1.0: 2622 | version "4.1.0" 2623 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2624 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2625 | dependencies: 2626 | p-limit "^2.2.0" 2627 | 2628 | p-try@^2.0.0: 2629 | version "2.2.0" 2630 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2631 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2632 | 2633 | package-json@^6.3.0: 2634 | version "6.5.0" 2635 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" 2636 | integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== 2637 | dependencies: 2638 | got "^9.6.0" 2639 | registry-auth-token "^4.0.0" 2640 | registry-url "^5.0.0" 2641 | semver "^6.2.0" 2642 | 2643 | parse-json@^4.0.0: 2644 | version "4.0.0" 2645 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2646 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 2647 | dependencies: 2648 | error-ex "^1.3.1" 2649 | json-parse-better-errors "^1.0.1" 2650 | 2651 | parseurl@~1.3.3: 2652 | version "1.3.3" 2653 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 2654 | integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 2655 | 2656 | path-exists@^3.0.0: 2657 | version "3.0.0" 2658 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2659 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 2660 | 2661 | path-exists@^4.0.0: 2662 | version "4.0.0" 2663 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2664 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2665 | 2666 | path-key@^2.0.1: 2667 | version "2.0.1" 2668 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2669 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2670 | 2671 | path-key@^3.0.0, path-key@^3.1.0: 2672 | version "3.1.1" 2673 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2674 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2675 | 2676 | path-parse@^1.0.6: 2677 | version "1.0.6" 2678 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2679 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2680 | 2681 | path-to-regexp@0.1.7: 2682 | version "0.1.7" 2683 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2684 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 2685 | 2686 | path-to-regexp@^1.7.0: 2687 | version "1.8.0" 2688 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" 2689 | integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== 2690 | dependencies: 2691 | isarray "0.0.1" 2692 | 2693 | path-type@^3.0.0: 2694 | version "3.0.0" 2695 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2696 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 2697 | dependencies: 2698 | pify "^3.0.0" 2699 | 2700 | picomatch@^2.0.4, picomatch@^2.2.1: 2701 | version "2.2.2" 2702 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 2703 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 2704 | 2705 | pidtree@^0.3.0: 2706 | version "0.3.1" 2707 | resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" 2708 | integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== 2709 | 2710 | pify@^3.0.0: 2711 | version "3.0.0" 2712 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2713 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 2714 | 2715 | pify@^4.0.1: 2716 | version "4.0.1" 2717 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 2718 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 2719 | 2720 | pkg-dir@^3.0.0: 2721 | version "3.0.0" 2722 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" 2723 | integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== 2724 | dependencies: 2725 | find-up "^3.0.0" 2726 | 2727 | pkg-dir@^4.2.0: 2728 | version "4.2.0" 2729 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2730 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2731 | dependencies: 2732 | find-up "^4.0.0" 2733 | 2734 | prepend-http@^2.0.0: 2735 | version "2.0.0" 2736 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 2737 | integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= 2738 | 2739 | prop-types@^15.6.2, prop-types@^15.7.2: 2740 | version "15.7.2" 2741 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 2742 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 2743 | dependencies: 2744 | loose-envify "^1.4.0" 2745 | object-assign "^4.1.1" 2746 | react-is "^16.8.1" 2747 | 2748 | proxy-addr@~2.0.5: 2749 | version "2.0.6" 2750 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" 2751 | integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== 2752 | dependencies: 2753 | forwarded "~0.1.2" 2754 | ipaddr.js "1.9.1" 2755 | 2756 | pstree.remy@^1.1.7: 2757 | version "1.1.8" 2758 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" 2759 | integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== 2760 | 2761 | pump@^3.0.0: 2762 | version "3.0.0" 2763 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2764 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2765 | dependencies: 2766 | end-of-stream "^1.1.0" 2767 | once "^1.3.1" 2768 | 2769 | punycode@^2.1.0: 2770 | version "2.1.1" 2771 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2772 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2773 | 2774 | pupa@^2.0.1: 2775 | version "2.1.1" 2776 | resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" 2777 | integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== 2778 | dependencies: 2779 | escape-goat "^2.0.0" 2780 | 2781 | qs@6.7.0: 2782 | version "6.7.0" 2783 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 2784 | integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== 2785 | 2786 | randombytes@^2.1.0: 2787 | version "2.1.0" 2788 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 2789 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 2790 | dependencies: 2791 | safe-buffer "^5.1.0" 2792 | 2793 | range-parser@~1.2.1: 2794 | version "1.2.1" 2795 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 2796 | integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== 2797 | 2798 | raw-body@2.4.0: 2799 | version "2.4.0" 2800 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" 2801 | integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== 2802 | dependencies: 2803 | bytes "3.1.0" 2804 | http-errors "1.7.2" 2805 | iconv-lite "0.4.24" 2806 | unpipe "1.0.0" 2807 | 2808 | rc@^1.2.8: 2809 | version "1.2.8" 2810 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2811 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 2812 | dependencies: 2813 | deep-extend "^0.6.0" 2814 | ini "~1.3.0" 2815 | minimist "^1.2.0" 2816 | strip-json-comments "~2.0.1" 2817 | 2818 | react-dom@^17.0.1: 2819 | version "17.0.1" 2820 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.1.tgz#1de2560474ec9f0e334285662ede52dbc5426fc6" 2821 | integrity sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug== 2822 | dependencies: 2823 | loose-envify "^1.1.0" 2824 | object-assign "^4.1.1" 2825 | scheduler "^0.20.1" 2826 | 2827 | react-fast-compare@^3.2.0: 2828 | version "3.2.0" 2829 | resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" 2830 | integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== 2831 | 2832 | react-helmet-async@^1.0.7: 2833 | version "1.0.7" 2834 | resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.0.7.tgz#b988fbc3abdc4b704982bb74b9cb4a08fcf062c1" 2835 | integrity sha512-By90p5uxAriGukbyejq2poK41DwTxpNWOpOjN8mIyX/BKrCd3+sXZ5pHUZXjHyjR5OYS7PGsOD9dbM61YxfFmA== 2836 | dependencies: 2837 | "@babel/runtime" "^7.11.2" 2838 | invariant "^2.2.4" 2839 | prop-types "^15.7.2" 2840 | react-fast-compare "^3.2.0" 2841 | shallowequal "^1.1.0" 2842 | 2843 | react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1: 2844 | version "16.13.1" 2845 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 2846 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 2847 | 2848 | react-router-dom@^5.2.0: 2849 | version "5.2.0" 2850 | resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.2.0.tgz#9e65a4d0c45e13289e66c7b17c7e175d0ea15662" 2851 | integrity sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA== 2852 | dependencies: 2853 | "@babel/runtime" "^7.1.2" 2854 | history "^4.9.0" 2855 | loose-envify "^1.3.1" 2856 | prop-types "^15.6.2" 2857 | react-router "5.2.0" 2858 | tiny-invariant "^1.0.2" 2859 | tiny-warning "^1.0.0" 2860 | 2861 | react-router@5.2.0: 2862 | version "5.2.0" 2863 | resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.2.0.tgz#424e75641ca8747fbf76e5ecca69781aa37ea293" 2864 | integrity sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw== 2865 | dependencies: 2866 | "@babel/runtime" "^7.1.2" 2867 | history "^4.9.0" 2868 | hoist-non-react-statics "^3.1.0" 2869 | loose-envify "^1.3.1" 2870 | mini-create-react-context "^0.4.0" 2871 | path-to-regexp "^1.7.0" 2872 | prop-types "^15.6.2" 2873 | react-is "^16.6.0" 2874 | tiny-invariant "^1.0.2" 2875 | tiny-warning "^1.0.0" 2876 | 2877 | react@^17.0.1: 2878 | version "17.0.1" 2879 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.1.tgz#6e0600416bd57574e3f86d92edba3d9008726127" 2880 | integrity sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w== 2881 | dependencies: 2882 | loose-envify "^1.1.0" 2883 | object-assign "^4.1.1" 2884 | 2885 | read-pkg@^3.0.0: 2886 | version "3.0.0" 2887 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 2888 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 2889 | dependencies: 2890 | load-json-file "^4.0.0" 2891 | normalize-package-data "^2.3.2" 2892 | path-type "^3.0.0" 2893 | 2894 | readdirp@~3.5.0: 2895 | version "3.5.0" 2896 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" 2897 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== 2898 | dependencies: 2899 | picomatch "^2.2.1" 2900 | 2901 | rechoir@^0.7.0: 2902 | version "0.7.0" 2903 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.0.tgz#32650fd52c21ab252aa5d65b19310441c7e03aca" 2904 | integrity sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q== 2905 | dependencies: 2906 | resolve "^1.9.0" 2907 | 2908 | reduce-flatten@^2.0.0: 2909 | version "2.0.0" 2910 | resolved "https://registry.yarnpkg.com/reduce-flatten/-/reduce-flatten-2.0.0.tgz#734fd84e65f375d7ca4465c69798c25c9d10ae27" 2911 | integrity sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w== 2912 | 2913 | regenerate-unicode-properties@^8.2.0: 2914 | version "8.2.0" 2915 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 2916 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 2917 | dependencies: 2918 | regenerate "^1.4.0" 2919 | 2920 | regenerate@^1.4.0: 2921 | version "1.4.2" 2922 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 2923 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 2924 | 2925 | regenerator-runtime@^0.13.4: 2926 | version "0.13.7" 2927 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 2928 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 2929 | 2930 | regenerator-transform@^0.14.2: 2931 | version "0.14.5" 2932 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 2933 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 2934 | dependencies: 2935 | "@babel/runtime" "^7.8.4" 2936 | 2937 | regexpu-core@^4.7.1: 2938 | version "4.7.1" 2939 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" 2940 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== 2941 | dependencies: 2942 | regenerate "^1.4.0" 2943 | regenerate-unicode-properties "^8.2.0" 2944 | regjsgen "^0.5.1" 2945 | regjsparser "^0.6.4" 2946 | unicode-match-property-ecmascript "^1.0.4" 2947 | unicode-match-property-value-ecmascript "^1.2.0" 2948 | 2949 | registry-auth-token@^4.0.0: 2950 | version "4.2.1" 2951 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250" 2952 | integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== 2953 | dependencies: 2954 | rc "^1.2.8" 2955 | 2956 | registry-url@^5.0.0: 2957 | version "5.1.0" 2958 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" 2959 | integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== 2960 | dependencies: 2961 | rc "^1.2.8" 2962 | 2963 | regjsgen@^0.5.1: 2964 | version "0.5.2" 2965 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 2966 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 2967 | 2968 | regjsparser@^0.6.4: 2969 | version "0.6.4" 2970 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" 2971 | integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== 2972 | dependencies: 2973 | jsesc "~0.5.0" 2974 | 2975 | resolve-cwd@^3.0.0: 2976 | version "3.0.0" 2977 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 2978 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2979 | dependencies: 2980 | resolve-from "^5.0.0" 2981 | 2982 | resolve-from@^5.0.0: 2983 | version "5.0.0" 2984 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2985 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2986 | 2987 | resolve-pathname@^3.0.0: 2988 | version "3.0.0" 2989 | resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" 2990 | integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== 2991 | 2992 | resolve@^1.10.0, resolve@^1.3.2, resolve@^1.9.0: 2993 | version "1.19.0" 2994 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" 2995 | integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== 2996 | dependencies: 2997 | is-core-module "^2.1.0" 2998 | path-parse "^1.0.6" 2999 | 3000 | responselike@^1.0.2: 3001 | version "1.0.2" 3002 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 3003 | integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= 3004 | dependencies: 3005 | lowercase-keys "^1.0.0" 3006 | 3007 | safe-buffer@5.1.2, safe-buffer@~5.1.1: 3008 | version "5.1.2" 3009 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3010 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 3011 | 3012 | safe-buffer@^5.1.0: 3013 | version "5.2.1" 3014 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 3015 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 3016 | 3017 | "safer-buffer@>= 2.1.2 < 3": 3018 | version "2.1.2" 3019 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3020 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 3021 | 3022 | scheduler@^0.20.1: 3023 | version "0.20.1" 3024 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.1.tgz#da0b907e24026b01181ecbc75efdc7f27b5a000c" 3025 | integrity sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw== 3026 | dependencies: 3027 | loose-envify "^1.1.0" 3028 | object-assign "^4.1.1" 3029 | 3030 | schema-utils@^2.6.5: 3031 | version "2.7.1" 3032 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" 3033 | integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== 3034 | dependencies: 3035 | "@types/json-schema" "^7.0.5" 3036 | ajv "^6.12.4" 3037 | ajv-keywords "^3.5.2" 3038 | 3039 | schema-utils@^3.0.0: 3040 | version "3.0.0" 3041 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef" 3042 | integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== 3043 | dependencies: 3044 | "@types/json-schema" "^7.0.6" 3045 | ajv "^6.12.5" 3046 | ajv-keywords "^3.5.2" 3047 | 3048 | semver-diff@^3.1.1: 3049 | version "3.1.1" 3050 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" 3051 | integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== 3052 | dependencies: 3053 | semver "^6.3.0" 3054 | 3055 | "semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.6.0, semver@^5.7.1: 3056 | version "5.7.1" 3057 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 3058 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 3059 | 3060 | semver@7.0.0: 3061 | version "7.0.0" 3062 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 3063 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 3064 | 3065 | semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: 3066 | version "6.3.0" 3067 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 3068 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 3069 | 3070 | send@0.17.1: 3071 | version "0.17.1" 3072 | resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" 3073 | integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== 3074 | dependencies: 3075 | debug "2.6.9" 3076 | depd "~1.1.2" 3077 | destroy "~1.0.4" 3078 | encodeurl "~1.0.2" 3079 | escape-html "~1.0.3" 3080 | etag "~1.8.1" 3081 | fresh "0.5.2" 3082 | http-errors "~1.7.2" 3083 | mime "1.6.0" 3084 | ms "2.1.1" 3085 | on-finished "~2.3.0" 3086 | range-parser "~1.2.1" 3087 | statuses "~1.5.0" 3088 | 3089 | serialize-javascript@^5.0.1: 3090 | version "5.0.1" 3091 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4" 3092 | integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA== 3093 | dependencies: 3094 | randombytes "^2.1.0" 3095 | 3096 | serve-static@1.14.1: 3097 | version "1.14.1" 3098 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" 3099 | integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== 3100 | dependencies: 3101 | encodeurl "~1.0.2" 3102 | escape-html "~1.0.3" 3103 | parseurl "~1.3.3" 3104 | send "0.17.1" 3105 | 3106 | setprototypeof@1.1.1: 3107 | version "1.1.1" 3108 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 3109 | integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 3110 | 3111 | shallowequal@^1.1.0: 3112 | version "1.1.0" 3113 | resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" 3114 | integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== 3115 | 3116 | shebang-command@^1.2.0: 3117 | version "1.2.0" 3118 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3119 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 3120 | dependencies: 3121 | shebang-regex "^1.0.0" 3122 | 3123 | shebang-command@^2.0.0: 3124 | version "2.0.0" 3125 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 3126 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 3127 | dependencies: 3128 | shebang-regex "^3.0.0" 3129 | 3130 | shebang-regex@^1.0.0: 3131 | version "1.0.0" 3132 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3133 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 3134 | 3135 | shebang-regex@^3.0.0: 3136 | version "3.0.0" 3137 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 3138 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 3139 | 3140 | shell-quote@^1.6.1: 3141 | version "1.7.2" 3142 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" 3143 | integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== 3144 | 3145 | signal-exit@^3.0.2: 3146 | version "3.0.3" 3147 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 3148 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 3149 | 3150 | source-list-map@^2.0.1: 3151 | version "2.0.1" 3152 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" 3153 | integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== 3154 | 3155 | source-map-support@~0.5.19: 3156 | version "0.5.19" 3157 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 3158 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 3159 | dependencies: 3160 | buffer-from "^1.0.0" 3161 | source-map "^0.6.0" 3162 | 3163 | source-map@^0.5.0: 3164 | version "0.5.7" 3165 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3166 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3167 | 3168 | source-map@^0.6.0, source-map@^0.6.1: 3169 | version "0.6.1" 3170 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3171 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3172 | 3173 | source-map@~0.7.2: 3174 | version "0.7.3" 3175 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 3176 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 3177 | 3178 | spdx-correct@^3.0.0: 3179 | version "3.1.1" 3180 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 3181 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 3182 | dependencies: 3183 | spdx-expression-parse "^3.0.0" 3184 | spdx-license-ids "^3.0.0" 3185 | 3186 | spdx-exceptions@^2.1.0: 3187 | version "2.3.0" 3188 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 3189 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 3190 | 3191 | spdx-expression-parse@^3.0.0: 3192 | version "3.0.1" 3193 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 3194 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 3195 | dependencies: 3196 | spdx-exceptions "^2.1.0" 3197 | spdx-license-ids "^3.0.0" 3198 | 3199 | spdx-license-ids@^3.0.0: 3200 | version "3.0.6" 3201 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz#c80757383c28abf7296744998cbc106ae8b854ce" 3202 | integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw== 3203 | 3204 | "statuses@>= 1.5.0 < 2", statuses@~1.5.0: 3205 | version "1.5.0" 3206 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 3207 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 3208 | 3209 | string-width@^3.0.0: 3210 | version "3.1.0" 3211 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 3212 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 3213 | dependencies: 3214 | emoji-regex "^7.0.1" 3215 | is-fullwidth-code-point "^2.0.0" 3216 | strip-ansi "^5.1.0" 3217 | 3218 | string-width@^4.0.0, string-width@^4.1.0: 3219 | version "4.2.0" 3220 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 3221 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 3222 | dependencies: 3223 | emoji-regex "^8.0.0" 3224 | is-fullwidth-code-point "^3.0.0" 3225 | strip-ansi "^6.0.0" 3226 | 3227 | string.prototype.padend@^3.0.0: 3228 | version "3.1.1" 3229 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.1.tgz#824c84265dbac46cade2b957b38b6a5d8d1683c5" 3230 | integrity sha512-eCzTASPnoCr5Ht+Vn1YXgm8SB015hHKgEIMu9Nr9bQmLhRBxKRfmzSj/IQsxDFc8JInJDDFA0qXwK+xxI7wDkg== 3231 | dependencies: 3232 | call-bind "^1.0.0" 3233 | define-properties "^1.1.3" 3234 | es-abstract "^1.18.0-next.1" 3235 | 3236 | string.prototype.trimend@^1.0.1: 3237 | version "1.0.3" 3238 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b" 3239 | integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== 3240 | dependencies: 3241 | call-bind "^1.0.0" 3242 | define-properties "^1.1.3" 3243 | 3244 | string.prototype.trimstart@^1.0.1: 3245 | version "1.0.3" 3246 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa" 3247 | integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== 3248 | dependencies: 3249 | call-bind "^1.0.0" 3250 | define-properties "^1.1.3" 3251 | 3252 | strip-ansi@^5.1.0: 3253 | version "5.2.0" 3254 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 3255 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 3256 | dependencies: 3257 | ansi-regex "^4.1.0" 3258 | 3259 | strip-ansi@^6.0.0: 3260 | version "6.0.0" 3261 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 3262 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 3263 | dependencies: 3264 | ansi-regex "^5.0.0" 3265 | 3266 | strip-bom@^3.0.0: 3267 | version "3.0.0" 3268 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3269 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 3270 | 3271 | strip-final-newline@^2.0.0: 3272 | version "2.0.0" 3273 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 3274 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 3275 | 3276 | strip-json-comments@~2.0.1: 3277 | version "2.0.1" 3278 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3279 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 3280 | 3281 | supports-color@^5.3.0, supports-color@^5.5.0: 3282 | version "5.5.0" 3283 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3284 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3285 | dependencies: 3286 | has-flag "^3.0.0" 3287 | 3288 | supports-color@^7.0.0, supports-color@^7.1.0: 3289 | version "7.2.0" 3290 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 3291 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3292 | dependencies: 3293 | has-flag "^4.0.0" 3294 | 3295 | table-layout@^1.0.1: 3296 | version "1.0.1" 3297 | resolved "https://registry.yarnpkg.com/table-layout/-/table-layout-1.0.1.tgz#8411181ee951278ad0638aea2f779a9ce42894f9" 3298 | integrity sha512-dEquqYNJiGwY7iPfZ3wbXDI944iqanTSchrACLL2nOB+1r+h1Nzu2eH+DuPPvWvm5Ry7iAPeFlgEtP5bIp5U7Q== 3299 | dependencies: 3300 | array-back "^4.0.1" 3301 | deep-extend "~0.6.0" 3302 | typical "^5.2.0" 3303 | wordwrapjs "^4.0.0" 3304 | 3305 | tapable@^2.0.0: 3306 | version "2.1.1" 3307 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.1.1.tgz#b01cc1902d42a7bb30514e320ce21c456f72fd3f" 3308 | integrity sha512-Wib1S8m2wdpLbmQz0RBEVosIyvb/ykfKXf3ZIDqvWoMg/zTNm6G/tDSuUM61J1kNCDXWJrLHGSFeMhAG+gAGpQ== 3309 | 3310 | term-size@^2.1.0: 3311 | version "2.2.1" 3312 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" 3313 | integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== 3314 | 3315 | terser-webpack-plugin@^5.0.3: 3316 | version "5.0.3" 3317 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.0.3.tgz#ec60542db2421f45735c719d2e17dabfbb2e3e42" 3318 | integrity sha512-zFdGk8Lh9ZJGPxxPE6jwysOlATWB8GMW8HcfGULWA/nPal+3VdATflQvSBSLQJRCmYZnfFJl6vkRTiwJGNgPiQ== 3319 | dependencies: 3320 | jest-worker "^26.6.1" 3321 | p-limit "^3.0.2" 3322 | schema-utils "^3.0.0" 3323 | serialize-javascript "^5.0.1" 3324 | source-map "^0.6.1" 3325 | terser "^5.3.8" 3326 | 3327 | terser@^5.3.8: 3328 | version "5.5.0" 3329 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.5.0.tgz#1406fcb4d4bc517add3b22a9694284c040e33448" 3330 | integrity sha512-eopt1Gf7/AQyPhpygdKePTzaet31TvQxXvrf7xYUvD/d8qkCJm4SKPDzu+GHK5ZaYTn8rvttfqaZc3swK21e5g== 3331 | dependencies: 3332 | commander "^2.20.0" 3333 | source-map "~0.7.2" 3334 | source-map-support "~0.5.19" 3335 | 3336 | tiny-invariant@^1.0.2: 3337 | version "1.1.0" 3338 | resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875" 3339 | integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw== 3340 | 3341 | tiny-warning@^1.0.0, tiny-warning@^1.0.3: 3342 | version "1.0.3" 3343 | resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" 3344 | integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== 3345 | 3346 | to-fast-properties@^2.0.0: 3347 | version "2.0.0" 3348 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3349 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3350 | 3351 | to-readable-stream@^1.0.0: 3352 | version "1.0.0" 3353 | resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 3354 | integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== 3355 | 3356 | to-regex-range@^5.0.1: 3357 | version "5.0.1" 3358 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3359 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3360 | dependencies: 3361 | is-number "^7.0.0" 3362 | 3363 | toidentifier@1.0.0: 3364 | version "1.0.0" 3365 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 3366 | integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== 3367 | 3368 | touch@^3.1.0: 3369 | version "3.1.0" 3370 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 3371 | integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== 3372 | dependencies: 3373 | nopt "~1.0.10" 3374 | 3375 | tslib@^1.9.0: 3376 | version "1.14.1" 3377 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 3378 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 3379 | 3380 | type-fest@^0.8.1: 3381 | version "0.8.1" 3382 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 3383 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 3384 | 3385 | type-is@~1.6.17, type-is@~1.6.18: 3386 | version "1.6.18" 3387 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 3388 | integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== 3389 | dependencies: 3390 | media-typer "0.3.0" 3391 | mime-types "~2.1.24" 3392 | 3393 | typedarray-to-buffer@^3.1.5: 3394 | version "3.1.5" 3395 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 3396 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 3397 | dependencies: 3398 | is-typedarray "^1.0.0" 3399 | 3400 | typical@^5.0.0, typical@^5.2.0: 3401 | version "5.2.0" 3402 | resolved "https://registry.yarnpkg.com/typical/-/typical-5.2.0.tgz#4daaac4f2b5315460804f0acf6cb69c52bb93066" 3403 | integrity sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg== 3404 | 3405 | undefsafe@^2.0.3: 3406 | version "2.0.3" 3407 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.3.tgz#6b166e7094ad46313b2202da7ecc2cd7cc6e7aae" 3408 | integrity sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A== 3409 | dependencies: 3410 | debug "^2.2.0" 3411 | 3412 | unicode-canonical-property-names-ecmascript@^1.0.4: 3413 | version "1.0.4" 3414 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 3415 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 3416 | 3417 | unicode-match-property-ecmascript@^1.0.4: 3418 | version "1.0.4" 3419 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 3420 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 3421 | dependencies: 3422 | unicode-canonical-property-names-ecmascript "^1.0.4" 3423 | unicode-property-aliases-ecmascript "^1.0.4" 3424 | 3425 | unicode-match-property-value-ecmascript@^1.2.0: 3426 | version "1.2.0" 3427 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 3428 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 3429 | 3430 | unicode-property-aliases-ecmascript@^1.0.4: 3431 | version "1.1.0" 3432 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 3433 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 3434 | 3435 | unique-string@^2.0.0: 3436 | version "2.0.0" 3437 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" 3438 | integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== 3439 | dependencies: 3440 | crypto-random-string "^2.0.0" 3441 | 3442 | unpipe@1.0.0, unpipe@~1.0.0: 3443 | version "1.0.0" 3444 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3445 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 3446 | 3447 | update-notifier@^4.1.0: 3448 | version "4.1.3" 3449 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.3.tgz#be86ee13e8ce48fb50043ff72057b5bd598e1ea3" 3450 | integrity sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A== 3451 | dependencies: 3452 | boxen "^4.2.0" 3453 | chalk "^3.0.0" 3454 | configstore "^5.0.1" 3455 | has-yarn "^2.1.0" 3456 | import-lazy "^2.1.0" 3457 | is-ci "^2.0.0" 3458 | is-installed-globally "^0.3.1" 3459 | is-npm "^4.0.0" 3460 | is-yarn-global "^0.3.0" 3461 | latest-version "^5.0.0" 3462 | pupa "^2.0.1" 3463 | semver-diff "^3.1.1" 3464 | xdg-basedir "^4.0.0" 3465 | 3466 | uri-js@^4.2.2: 3467 | version "4.4.0" 3468 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" 3469 | integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== 3470 | dependencies: 3471 | punycode "^2.1.0" 3472 | 3473 | url-parse-lax@^3.0.0: 3474 | version "3.0.0" 3475 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 3476 | integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= 3477 | dependencies: 3478 | prepend-http "^2.0.0" 3479 | 3480 | utils-merge@1.0.1: 3481 | version "1.0.1" 3482 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 3483 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 3484 | 3485 | v8-compile-cache@^2.2.0: 3486 | version "2.2.0" 3487 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132" 3488 | integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== 3489 | 3490 | validate-npm-package-license@^3.0.1: 3491 | version "3.0.4" 3492 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3493 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 3494 | dependencies: 3495 | spdx-correct "^3.0.0" 3496 | spdx-expression-parse "^3.0.0" 3497 | 3498 | value-equal@^1.0.1: 3499 | version "1.0.1" 3500 | resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" 3501 | integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== 3502 | 3503 | vary@~1.1.2: 3504 | version "1.1.2" 3505 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 3506 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 3507 | 3508 | watchpack@^2.0.0: 3509 | version "2.0.1" 3510 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.0.1.tgz#2f2192c542c82a3bcde76acd3411470c120426a8" 3511 | integrity sha512-vO8AKGX22ZRo6PiOFM9dC0re8IcKh8Kd/aH2zeqUc6w4/jBGlTy2P7fTC6ekT0NjVeGjgU2dGC5rNstKkeLEQg== 3512 | dependencies: 3513 | glob-to-regexp "^0.4.1" 3514 | graceful-fs "^4.1.2" 3515 | 3516 | webpack-cli@^4.2.0: 3517 | version "4.2.0" 3518 | resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.2.0.tgz#10a09030ad2bd4d8b0f78322fba6ea43ec56aaaa" 3519 | integrity sha512-EIl3k88vaF4fSxWSgtAQR+VwicfLMTZ9amQtqS4o+TDPW9HGaEpbFBbAZ4A3ZOT5SOnMxNOzROsSTPiE8tBJPA== 3520 | dependencies: 3521 | "@webpack-cli/info" "^1.1.0" 3522 | "@webpack-cli/serve" "^1.1.0" 3523 | colorette "^1.2.1" 3524 | command-line-usage "^6.1.0" 3525 | commander "^6.2.0" 3526 | enquirer "^2.3.6" 3527 | execa "^4.1.0" 3528 | import-local "^3.0.2" 3529 | interpret "^2.2.0" 3530 | leven "^3.1.0" 3531 | rechoir "^0.7.0" 3532 | v8-compile-cache "^2.2.0" 3533 | webpack-merge "^4.2.2" 3534 | 3535 | webpack-merge@^4.2.2: 3536 | version "4.2.2" 3537 | resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d" 3538 | integrity sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g== 3539 | dependencies: 3540 | lodash "^4.17.15" 3541 | 3542 | webpack-sources@^2.1.1: 3543 | version "2.2.0" 3544 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.2.0.tgz#058926f39e3d443193b6c31547229806ffd02bac" 3545 | integrity sha512-bQsA24JLwcnWGArOKUxYKhX3Mz/nK1Xf6hxullKERyktjNMC4x8koOeaDNTA2fEJ09BdWLbM/iTW0ithREUP0w== 3546 | dependencies: 3547 | source-list-map "^2.0.1" 3548 | source-map "^0.6.1" 3549 | 3550 | webpack-stats-plugin@^1.0.2: 3551 | version "1.0.2" 3552 | resolved "https://registry.yarnpkg.com/webpack-stats-plugin/-/webpack-stats-plugin-1.0.2.tgz#bddca3c64bb1e1bd9de96dcb8e21739423fe2180" 3553 | integrity sha512-7G8gSRMtXhld6VBJ3OXoBxPeopyLM4T/QpUUudEuH9N+hhb1AGHmARYQsPMgeJBPsrBGUuQWKRh1FECfUhYkQw== 3554 | 3555 | webpack@^5.6.0: 3556 | version "5.6.0" 3557 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.6.0.tgz#282d10434c403b070ed91d459b385e873b51a07d" 3558 | integrity sha512-SIeFuBhuheKElRbd84O35UhKc0nxlgSwtzm2ksZ0BVhRJqxVJxEguT/pYhfiR0le/pxTa1VsCp7EOYyTsa6XOA== 3559 | dependencies: 3560 | "@types/eslint-scope" "^3.7.0" 3561 | "@types/estree" "^0.0.45" 3562 | "@webassemblyjs/ast" "1.9.0" 3563 | "@webassemblyjs/helper-module-context" "1.9.0" 3564 | "@webassemblyjs/wasm-edit" "1.9.0" 3565 | "@webassemblyjs/wasm-parser" "1.9.0" 3566 | acorn "^8.0.4" 3567 | browserslist "^4.14.5" 3568 | chrome-trace-event "^1.0.2" 3569 | enhanced-resolve "^5.3.1" 3570 | eslint-scope "^5.1.1" 3571 | events "^3.2.0" 3572 | glob-to-regexp "^0.4.1" 3573 | graceful-fs "^4.2.4" 3574 | json-parse-better-errors "^1.0.2" 3575 | loader-runner "^4.1.0" 3576 | mime-types "^2.1.27" 3577 | neo-async "^2.6.2" 3578 | pkg-dir "^4.2.0" 3579 | schema-utils "^3.0.0" 3580 | tapable "^2.0.0" 3581 | terser-webpack-plugin "^5.0.3" 3582 | watchpack "^2.0.0" 3583 | webpack-sources "^2.1.1" 3584 | 3585 | which@^1.2.9: 3586 | version "1.3.1" 3587 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3588 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3589 | dependencies: 3590 | isexe "^2.0.0" 3591 | 3592 | which@^2.0.1: 3593 | version "2.0.2" 3594 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 3595 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3596 | dependencies: 3597 | isexe "^2.0.0" 3598 | 3599 | widest-line@^3.1.0: 3600 | version "3.1.0" 3601 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" 3602 | integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== 3603 | dependencies: 3604 | string-width "^4.0.0" 3605 | 3606 | wordwrapjs@^4.0.0: 3607 | version "4.0.0" 3608 | resolved "https://registry.yarnpkg.com/wordwrapjs/-/wordwrapjs-4.0.0.tgz#9aa9394155993476e831ba8e59fb5795ebde6800" 3609 | integrity sha512-Svqw723a3R34KvsMgpjFBYCgNOSdcW3mQFK4wIfhGQhtaFVOJmdYoXgi63ne3dTlWgatVcUc7t4HtQ/+bUVIzQ== 3610 | dependencies: 3611 | reduce-flatten "^2.0.0" 3612 | typical "^5.0.0" 3613 | 3614 | wrappy@1: 3615 | version "1.0.2" 3616 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3617 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3618 | 3619 | write-file-atomic@^3.0.0: 3620 | version "3.0.3" 3621 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 3622 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 3623 | dependencies: 3624 | imurmurhash "^0.1.4" 3625 | is-typedarray "^1.0.0" 3626 | signal-exit "^3.0.2" 3627 | typedarray-to-buffer "^3.1.5" 3628 | 3629 | xdg-basedir@^4.0.0: 3630 | version "4.0.0" 3631 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" 3632 | integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== 3633 | --------------------------------------------------------------------------------