├── example ├── .eslintrc.json ├── next.config.js ├── public │ ├── favicon.ico │ └── vercel.svg ├── pages │ ├── api │ │ └── imageProxy.ts │ └── index.tsx ├── next-env.d.ts ├── .gitignore ├── package.json ├── tsconfig.json ├── README.md └── yarn.lock ├── renovate.json ├── .prettierrc ├── .npmignore ├── src ├── types.ts └── index.ts ├── tsconfig.json ├── package.json ├── .gitignore └── README.md /example/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /example/next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | } 4 | -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/next-image-proxy/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "config:base" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 140, 3 | "tabWidth": 2, 4 | "useTabs": false, 5 | "semi": false, 6 | "singleQuote": true, 7 | "trailingComma": "all" 8 | } -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # sources 2 | preview 3 | src 4 | 5 | # locks 6 | package-lock.json 7 | yarn-lock.json 8 | 9 | # configs 10 | tslint.json 11 | tsconfig.json 12 | .prettierrc -------------------------------------------------------------------------------- /example/pages/api/imageProxy.ts: -------------------------------------------------------------------------------- 1 | import { withImageProxy } from '@blazity/next-image-proxy' 2 | 3 | export default withImageProxy({ whitelistedPatterns: [/^https?:\/\/(.*).medium.com/] }) 4 | -------------------------------------------------------------------------------- /example/next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | export type DeepPartial = T extends Function 2 | ? T 3 | : T extends object 4 | ? { [P in keyof T]?: DeepPartial } 5 | : T; 6 | 7 | export interface Options { 8 | whitelistedPatterns: (string | RegExp)[]; 9 | messages: { 10 | wrongFormat: string; 11 | notWhitelisted: string; 12 | imageFetchError: string; 13 | }; 14 | fallbackUrl: string; 15 | } 16 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env.local 29 | .env.development.local 30 | .env.test.local 31 | .env.production.local 32 | 33 | # vercel 34 | .vercel 35 | -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@blazity/next-image-proxy": "1.0.2", 13 | "next": "12.3.4", 14 | "react": "17.0.2", 15 | "react-dom": "17.0.2" 16 | }, 17 | "devDependencies": { 18 | "@types/node": "^18.0.0", 19 | "@types/react": "^17.0.39", 20 | "eslint": "8.46.0", 21 | "eslint-config-next": "12.3.4", 22 | "typescript": "^5.0.0" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "esnext", 4 | "module": "esnext", 5 | "jsx": "react", 6 | "declaration": true, 7 | "outDir": "lib", 8 | "strict": true, 9 | "noUnusedLocals": true, 10 | "noUnusedParameters": true, 11 | "noImplicitReturns": true, 12 | "noFallthroughCasesInSwitch": true, 13 | "allowSyntheticDefaultImports": true, 14 | "esModuleInterop": true, 15 | "moduleResolution": "node", 16 | "skipLibCheck": true, 17 | "baseUrl": "." 18 | }, 19 | "include": ["src", "node_modules/next/types/global.d.ts", "global.d.ts"], 20 | "exclude": ["node_modules", "lib", "**/*.spec.ts", "example"] 21 | } 22 | -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": [ 5 | "dom", 6 | "dom.iterable", 7 | "esnext" 8 | ], 9 | "allowJs": true, 10 | "skipLibCheck": true, 11 | "strict": false, 12 | "forceConsistentCasingInFileNames": true, 13 | "noEmit": true, 14 | "incremental": true, 15 | "esModuleInterop": true, 16 | "module": "esnext", 17 | "moduleResolution": "node", 18 | "resolveJsonModule": true, 19 | "isolatedModules": true, 20 | "jsx": "preserve" 21 | }, 22 | "include": [ 23 | "next-env.d.ts", 24 | "**/*.ts", 25 | "**/*.tsx" 26 | ], 27 | "exclude": [ 28 | "node_modules" 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /example/pages/index.tsx: -------------------------------------------------------------------------------- 1 | import NextImage from 'next/image' 2 | 3 | export default function Homepage() { 4 | return ( 5 | <> 6 | 11 | 16 | 21 | > 22 | ) 23 | } 24 | -------------------------------------------------------------------------------- /example/public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). 2 | 3 | ## Getting Started 4 | 5 | First, run the development server: 6 | 7 | ```bash 8 | npm run dev 9 | # or 10 | yarn dev 11 | ``` 12 | 13 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 14 | 15 | You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file. 16 | 17 | [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`. 18 | 19 | The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. 20 | 21 | ## Learn More 22 | 23 | To learn more about Next.js, take a look at the following resources: 24 | 25 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 26 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 27 | 28 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 29 | 30 | ## Deploy on Vercel 31 | 32 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 33 | 34 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 35 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@blazity/next-image-proxy", 3 | "version": "1.0.2", 4 | "description": "Next.js image proxy. Makes it possible to use dynamic domains in next/image component.", 5 | "author": "Bart Stefanski (https://bstefanski.com/)", 6 | "license": "MIT", 7 | "source": "src/index.ts", 8 | "main": "./lib/next-image-proxy.cjs", 9 | "module": "./lib/next-image-proxy.module.js", 10 | "unpkg": "./lib/next-image-proxy.umd.js", 11 | "types": "./lib/index.d.ts", 12 | "files": [ 13 | "lib" 14 | ], 15 | "scripts": { 16 | "prepublishOnly": "npm run build", 17 | "prebuild": "rimraf lib", 18 | "build": "microbundle", 19 | "build:watch": "microbundle watch" 20 | }, 21 | "repository": { 22 | "type": "git", 23 | "url": "git+https://github.com/bmstefanski/next-image-proxy.git" 24 | }, 25 | "keywords": [ 26 | "nextjs", 27 | "nextjs-plugin" 28 | ], 29 | "bugs": { 30 | "url": "https://github.com/bmstefanski/next-image-proxy/issues" 31 | }, 32 | "homepage": "https://github.com/bmstefanski/next-image-proxy#readme", 33 | "peerDependencies": { 34 | "next": ">=9.0.0", 35 | "react": ">=16.0.0", 36 | "react-dom": ">=16.0.0" 37 | }, 38 | "devDependencies": { 39 | "@types/lodash.merge": "^4.6.6", 40 | "@types/next": "^9.0.0", 41 | "@types/node": "^18.0.0", 42 | "@types/react": "^17.0.18", 43 | "@types/user-agents": "^1.0.2", 44 | "microbundle": "^0.15.0", 45 | "prettier": "^3.0.0", 46 | "react": ">=16.0.0", 47 | "react-dom": ">=16.0.0", 48 | "typescript": "^5.0.0" 49 | }, 50 | "dependencies": { 51 | "isomorphic-unfetch": "^4.0.0", 52 | "lodash.merge": "^4.6.2", 53 | "user-agents": "^1.0.934" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | 106 | # build 107 | lib/ 108 | 109 | .vscode/ -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { NextApiRequest, NextApiResponse } from 'next' 2 | import fetch from 'isomorphic-unfetch' 3 | import stream, { Stream } from 'stream' 4 | import merge from 'lodash.merge' 5 | import UserAgent from 'user-agents' 6 | import { DeepPartial, Options } from './types' 7 | 8 | export function withImageProxy(passedOptions?: DeepPartial) { 9 | const defaultOptions: Options = { 10 | whitelistedPatterns: [], 11 | fallbackUrl: '', 12 | messages: { 13 | wrongFormat: 'Image url not provided or has wrong format', 14 | notWhitelisted: 'Provided image url is not whitelisted', 15 | imageFetchError: "Couldn't fetch the image", 16 | }, 17 | } 18 | 19 | const options: Options = merge(defaultOptions, passedOptions) 20 | 21 | return async function (req: NextApiRequest, res: NextApiResponse) { 22 | const imageUrl = req.query.imageUrl 23 | 24 | if (!imageUrl || (imageUrl && Array.isArray(imageUrl))) { 25 | res.status(400).send({ message: options.messages.wrongFormat }) 26 | return 27 | } 28 | 29 | const isAllowed = isUrlWhitelisted(imageUrl, options.whitelistedPatterns) 30 | 31 | if (!isAllowed) { 32 | res.status(422).send({ message: options.messages.notWhitelisted }) 33 | return 34 | } 35 | 36 | const imageBlob = await fetchImageBlob(imageUrl) 37 | 38 | if (!imageBlob) { 39 | handleFallback(res, options) 40 | return 41 | } 42 | 43 | pipeImage(res, imageBlob, options) 44 | } 45 | } 46 | 47 | function pipeImage(res: NextApiResponse, imageBlob: ReadableStream, options: Options) { 48 | const passThrough = new Stream.PassThrough() 49 | 50 | stream.pipeline(imageBlob as unknown as NodeJS.ReadableStream, passThrough, (err) => { 51 | if (err) { 52 | console.log(err) 53 | handleFallback(res, options) 54 | return 55 | } 56 | }) 57 | passThrough.pipe(res) 58 | } 59 | 60 | function handleFallback(res: NextApiResponse, options: Options) { 61 | if (options.fallbackUrl.trim()) { 62 | res.redirect(options.fallbackUrl) 63 | } else { 64 | res.status(422).send({ message: options.messages.imageFetchError }) 65 | } 66 | } 67 | 68 | async function fetchImageBlob(url: string) { 69 | return await fetch(url, { 70 | headers: { 'user-agent': new UserAgent().toString() }, 71 | }).then((data) => data.body) 72 | } 73 | 74 | function isUrlWhitelisted(url: string, whitelistedPatterns: Options['whitelistedPatterns']) { 75 | return whitelistedPatterns.some((singleHost) => { 76 | return url.match(singleHost) 77 | }) 78 | } 79 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > :warning: **Next has this feature built-in**: [If you're using Next.js 12.3 or higher, you don't have to use this library](https://nextjs.org/blog/next-12-3#remote-patterns-stable) 2 | 3 | 4 | Next.js Image Proxy 5 | Image proxy for Next.js. Makes it possible to use dynamic domains in next/image component. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ## ❔ Motivation 17 | 18 | This library makes it possible to use `next/image` with dynamic domains. If you work with external providers, like Facebook, Instagram, Etsy, Medium, and others, the images often have dynamic subdomains. For example, you might get the first image from `scontent-akl1-1.cdninstagram.com` and the second one from `scontent-akl3-1.cdninstagram.com`. Although adding them one by one to the config could work temporarily, it would not be reliable since they can change at any time. The whole issue could be resolved by adding a regex pattern to `next.config.js`, but unfortunately, Next.js doesn't support that. 19 | 20 | If you want to follow the discussion about Next.js supporting it outside of the box, please refer to this [Discussion](https://github.com/vercel/next.js/discussions/18429) and this [Pull Request](https://github.com/vercel/next.js/pull/27345) 21 | 22 | You have to remember that there're some cons: 23 | 24 | - You can create a security loophole if your regex isn't strict enough 25 | - Since it is a proxy, it will increase bandwidth costs. But the increase will be marginal unless you're working on big scale project (i.e. mils of requests per month) 26 | 27 | Limitations: 28 | - Might not work on Netlify 29 | - Might not work with serverless-next.js 30 | 31 | ## 🧰 Installation 32 | 33 | ``` 34 | $ npm i --save @blazity/next-image-proxy 35 | 36 | # or 37 | 38 | $ yarn add @blazity/next-image-proxy 39 | ``` 40 | 41 | ## 💻 Use 42 | 43 | It is really simple to setup, you just need to add a new API route that exports one function. The name of the endpoint is up to you. 44 | 45 | ```tsx 46 | // pages/api/imageProxy.ts 47 | 48 | import { withImageProxy } from '@blazity/next-image-proxy' 49 | 50 | export default withImageProxy({ whitelistedPatterns: [/^https?:\/\/(.*).medium.com/] }) 51 | ``` 52 | 53 | and now you prefix the image you want to use: 54 | 55 | ```tsx 56 | import NextImage from 'next/image' 57 | 58 | export function SomeComponent() { 59 | const actualImageUrl = 'https://cdn-images-1.medium.com/max/1024/1*xYoAR2XRmoCmC9SONuTb-Q.png' 60 | 61 | return 62 | } 63 | ``` 64 | 65 | ## Support 66 | 67 | If you're looking for help or simply want to share your thoughts about the project, we encourage you to join our Discord community. Here's the link: [https://blazity.com/discord](https://blazity.com/discord). It's a space where we exchange ideas and help one another. Everyone's input is appreciated, and we look forward to welcoming you. 68 | 69 | ## 🤲🏻 Contributing 70 | 71 | Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. 72 | 73 | - If you have suggestions for adding or removing projects, feel free to [open an issue](https://github.com/Blazity/next-saas-starter/issues/new) to discuss it, or directly create a pull request after you edit the _README.md_ file with necessary changes. 74 | - Create individual PR for each suggestion. 75 | 76 | 77 | ### Creating A Pull Request 78 | 79 | 1. Fork the Project 80 | 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 81 | 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 82 | 4. Push to the Branch (`git push origin feature/AmazingFeature`) 83 | 5. Open a Pull Request 84 | -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@aashutoshrathi/word-wrap@^1.2.3": 6 | version "1.2.6" 7 | resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" 8 | integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== 9 | 10 | "@babel/runtime-corejs3@^7.10.2": 11 | version "7.17.2" 12 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.2.tgz#fdca2cd05fba63388babe85d349b6801b008fd13" 13 | integrity sha512-NcKtr2epxfIrNM4VOmPKO46TvDMCBhgi2CrSHaEarrz+Plk2K5r9QemmOFTGpZaoKnWoGH5MO+CzeRsih/Fcgg== 14 | dependencies: 15 | core-js-pure "^3.20.2" 16 | regenerator-runtime "^0.13.4" 17 | 18 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3": 19 | version "7.17.2" 20 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.2.tgz#66f68591605e59da47523c631416b18508779941" 21 | integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw== 22 | dependencies: 23 | regenerator-runtime "^0.13.4" 24 | 25 | "@blazity/next-image-proxy@1.0.2": 26 | version "1.0.2" 27 | resolved "https://registry.yarnpkg.com/@blazity/next-image-proxy/-/next-image-proxy-1.0.2.tgz#1ea8514981465cecedbb93e9b1788eb25538df2d" 28 | integrity sha512-GCMYWYx3NCE+uVZTPISPqeg9BISK/0ilu07N85a7ZBs8BTBdozsfIUkS/9Dsl4AAT3pPKAJa0n8zMLJBN9Si5w== 29 | dependencies: 30 | isomorphic-unfetch "^3.1.0" 31 | lodash.merge "^4.6.2" 32 | user-agents "^1.0.934" 33 | 34 | "@eslint-community/eslint-utils@^4.2.0": 35 | version "4.4.0" 36 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" 37 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 38 | dependencies: 39 | eslint-visitor-keys "^3.3.0" 40 | 41 | "@eslint-community/regexpp@^4.6.1": 42 | version "4.6.2" 43 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8" 44 | integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== 45 | 46 | "@eslint/eslintrc@^2.1.1": 47 | version "2.1.1" 48 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.1.tgz#18d635e24ad35f7276e8a49d135c7d3ca6a46f93" 49 | integrity sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA== 50 | dependencies: 51 | ajv "^6.12.4" 52 | debug "^4.3.2" 53 | espree "^9.6.0" 54 | globals "^13.19.0" 55 | ignore "^5.2.0" 56 | import-fresh "^3.2.1" 57 | js-yaml "^4.1.0" 58 | minimatch "^3.1.2" 59 | strip-json-comments "^3.1.1" 60 | 61 | "@eslint/js@^8.46.0": 62 | version "8.46.0" 63 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.46.0.tgz#3f7802972e8b6fe3f88ed1aabc74ec596c456db6" 64 | integrity sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA== 65 | 66 | "@humanwhocodes/config-array@^0.11.10": 67 | version "0.11.10" 68 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" 69 | integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== 70 | dependencies: 71 | "@humanwhocodes/object-schema" "^1.2.1" 72 | debug "^4.1.1" 73 | minimatch "^3.0.5" 74 | 75 | "@humanwhocodes/module-importer@^1.0.1": 76 | version "1.0.1" 77 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 78 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 79 | 80 | "@humanwhocodes/object-schema@^1.2.1": 81 | version "1.2.1" 82 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 83 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 84 | 85 | "@next/env@12.3.4": 86 | version "12.3.4" 87 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.3.4.tgz#c787837d36fcad75d72ff8df6b57482027d64a47" 88 | integrity sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A== 89 | 90 | "@next/eslint-plugin-next@12.3.4": 91 | version "12.3.4" 92 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.4.tgz#e7dc00e2e89ed361f111d687b8534483ec15518b" 93 | integrity sha512-BFwj8ykJY+zc1/jWANsDprDIu2MgwPOIKxNVnrKvPs+f5TPegrVnem8uScND+1veT4B7F6VeqgaNLFW1Hzl9Og== 94 | dependencies: 95 | glob "7.1.7" 96 | 97 | "@next/swc-android-arm-eabi@12.3.4": 98 | version "12.3.4" 99 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.3.4.tgz#fd1c2dafe92066c6120761c6a39d19e666dc5dd0" 100 | integrity sha512-cM42Cw6V4Bz/2+j/xIzO8nK/Q3Ly+VSlZJTa1vHzsocJRYz8KT6MrreXaci2++SIZCF1rVRCDgAg5PpqRibdIA== 101 | 102 | "@next/swc-android-arm64@12.3.4": 103 | version "12.3.4" 104 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.3.4.tgz#11a146dae7b8bca007239b21c616e83f77b19ed4" 105 | integrity sha512-5jf0dTBjL+rabWjGj3eghpLUxCukRhBcEJgwLedewEA/LJk2HyqCvGIwj5rH+iwmq1llCWbOky2dO3pVljrapg== 106 | 107 | "@next/swc-darwin-arm64@12.3.4": 108 | version "12.3.4" 109 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.3.4.tgz#14ac8357010c95e67327f47082af9c9d75d5be79" 110 | integrity sha512-DqsSTd3FRjQUR6ao0E1e2OlOcrF5br+uegcEGPVonKYJpcr0MJrtYmPxd4v5T6UCJZ+XzydF7eQo5wdGvSZAyA== 111 | 112 | "@next/swc-darwin-x64@12.3.4": 113 | version "12.3.4" 114 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.3.4.tgz#e7dc63cd2ac26d15fb84d4d2997207fb9ba7da0f" 115 | integrity sha512-PPF7tbWD4k0dJ2EcUSnOsaOJ5rhT3rlEt/3LhZUGiYNL8KvoqczFrETlUx0cUYaXe11dRA3F80Hpt727QIwByQ== 116 | 117 | "@next/swc-freebsd-x64@12.3.4": 118 | version "12.3.4" 119 | resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.3.4.tgz#fe7ceec58746fdf03f1fcb37ec1331c28e76af93" 120 | integrity sha512-KM9JXRXi/U2PUM928z7l4tnfQ9u8bTco/jb939pdFUHqc28V43Ohd31MmZD1QzEK4aFlMRaIBQOWQZh4D/E5lQ== 121 | 122 | "@next/swc-linux-arm-gnueabihf@12.3.4": 123 | version "12.3.4" 124 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.3.4.tgz#d7016934d02bfc8bd69818ffb0ae364b77b17af7" 125 | integrity sha512-3zqD3pO+z5CZyxtKDTnOJ2XgFFRUBciOox6EWkoZvJfc9zcidNAQxuwonUeNts6Xbm8Wtm5YGIRC0x+12YH7kw== 126 | 127 | "@next/swc-linux-arm64-gnu@12.3.4": 128 | version "12.3.4" 129 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.3.4.tgz#43a7bc409b03487bff5beb99479cacdc7bd29af5" 130 | integrity sha512-kiX0vgJGMZVv+oo1QuObaYulXNvdH/IINmvdZnVzMO/jic/B8EEIGlZ8Bgvw8LCjH3zNVPO3mGrdMvnEEPEhKA== 131 | 132 | "@next/swc-linux-arm64-musl@12.3.4": 133 | version "12.3.4" 134 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.3.4.tgz#4d1db6de6dc982b974cd1c52937111e3e4a34bd3" 135 | integrity sha512-EETZPa1juczrKLWk5okoW2hv7D7WvonU+Cf2CgsSoxgsYbUCZ1voOpL4JZTOb6IbKMDo6ja+SbY0vzXZBUMvkQ== 136 | 137 | "@next/swc-linux-x64-gnu@12.3.4": 138 | version "12.3.4" 139 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.3.4.tgz#c3b414d77bab08b35f7dd8943d5586f0adb15e38" 140 | integrity sha512-4csPbRbfZbuWOk3ATyWcvVFdD9/Rsdq5YHKvRuEni68OCLkfy4f+4I9OBpyK1SKJ00Cih16NJbHE+k+ljPPpag== 141 | 142 | "@next/swc-linux-x64-musl@12.3.4": 143 | version "12.3.4" 144 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.3.4.tgz#187a883ec09eb2442a5ebf126826e19037313c61" 145 | integrity sha512-YeBmI+63Ro75SUiL/QXEVXQ19T++58aI/IINOyhpsRL1LKdyfK/35iilraZEFz9bLQrwy1LYAR5lK200A9Gjbg== 146 | 147 | "@next/swc-win32-arm64-msvc@12.3.4": 148 | version "12.3.4" 149 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.3.4.tgz#89befa84e453ed2ef9a888f375eba565a0fde80b" 150 | integrity sha512-Sd0qFUJv8Tj0PukAYbCCDbmXcMkbIuhnTeHm9m4ZGjCf6kt7E/RMs55Pd3R5ePjOkN7dJEuxYBehawTR/aPDSQ== 151 | 152 | "@next/swc-win32-ia32-msvc@12.3.4": 153 | version "12.3.4" 154 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.3.4.tgz#cb50c08f0e40ead63642a7f269f0c8254261f17c" 155 | integrity sha512-rt/vv/vg/ZGGkrkKcuJ0LyliRdbskQU+91bje+PgoYmxTZf/tYs6IfbmgudBJk6gH3QnjHWbkphDdRQrseRefQ== 156 | 157 | "@next/swc-win32-x64-msvc@12.3.4": 158 | version "12.3.4" 159 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.3.4.tgz#d28ea15a72cdcf96201c60a43e9630cd7fda168f" 160 | integrity sha512-DQ20JEfTBZAgF8QCjYfJhv2/279M6onxFjdG/+5B0Cyj00/EdBxiWb2eGGFgQhrBbNv/lsvzFbbi0Ptf8Vw/bg== 161 | 162 | "@nodelib/fs.scandir@2.1.5": 163 | version "2.1.5" 164 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 165 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 166 | dependencies: 167 | "@nodelib/fs.stat" "2.0.5" 168 | run-parallel "^1.1.9" 169 | 170 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 171 | version "2.0.5" 172 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 173 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 174 | 175 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 176 | version "1.2.8" 177 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 178 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 179 | dependencies: 180 | "@nodelib/fs.scandir" "2.1.5" 181 | fastq "^1.6.0" 182 | 183 | "@rushstack/eslint-patch@^1.1.3": 184 | version "1.2.0" 185 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" 186 | integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== 187 | 188 | "@swc/helpers@0.4.11": 189 | version "0.4.11" 190 | resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.11.tgz#db23a376761b3d31c26502122f349a21b592c8de" 191 | integrity sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw== 192 | dependencies: 193 | tslib "^2.4.0" 194 | 195 | "@types/json5@^0.0.29": 196 | version "0.0.29" 197 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 198 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 199 | 200 | "@types/node@^18.0.0": 201 | version "18.17.1" 202 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.17.1.tgz#84c32903bf3a09f7878c391d31ff08f6fe7d8335" 203 | integrity sha512-xlR1jahfizdplZYRU59JlUx9uzF1ARa8jbhM11ccpCJya8kvos5jwdm2ZAgxSCwOl0fq21svP18EVwPBXMQudw== 204 | 205 | "@types/prop-types@*": 206 | version "15.7.5" 207 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 208 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 209 | 210 | "@types/react@^17.0.39": 211 | version "17.0.62" 212 | resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.62.tgz#2efe8ddf8533500ec44b1334dd1a97caa2f860e3" 213 | integrity sha512-eANCyz9DG8p/Vdhr0ZKST8JV12PhH2ACCDYlFw6DIO+D+ca+uP4jtEDEpVqXZrh/uZdXQGwk7whJa3ah5DtyLw== 214 | dependencies: 215 | "@types/prop-types" "*" 216 | "@types/scheduler" "*" 217 | csstype "^3.0.2" 218 | 219 | "@types/scheduler@*": 220 | version "0.16.3" 221 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" 222 | integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== 223 | 224 | "@typescript-eslint/parser@^5.21.0": 225 | version "5.59.6" 226 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.6.tgz#bd36f71f5a529f828e20b627078d3ed6738dbb40" 227 | integrity sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA== 228 | dependencies: 229 | "@typescript-eslint/scope-manager" "5.59.6" 230 | "@typescript-eslint/types" "5.59.6" 231 | "@typescript-eslint/typescript-estree" "5.59.6" 232 | debug "^4.3.4" 233 | 234 | "@typescript-eslint/scope-manager@5.59.6": 235 | version "5.59.6" 236 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz#d43a3687aa4433868527cfe797eb267c6be35f19" 237 | integrity sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ== 238 | dependencies: 239 | "@typescript-eslint/types" "5.59.6" 240 | "@typescript-eslint/visitor-keys" "5.59.6" 241 | 242 | "@typescript-eslint/types@5.59.6": 243 | version "5.59.6" 244 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.6.tgz#5a6557a772af044afe890d77c6a07e8c23c2460b" 245 | integrity sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA== 246 | 247 | "@typescript-eslint/typescript-estree@5.59.6": 248 | version "5.59.6" 249 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz#2fb80522687bd3825504925ea7e1b8de7bb6251b" 250 | integrity sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA== 251 | dependencies: 252 | "@typescript-eslint/types" "5.59.6" 253 | "@typescript-eslint/visitor-keys" "5.59.6" 254 | debug "^4.3.4" 255 | globby "^11.1.0" 256 | is-glob "^4.0.3" 257 | semver "^7.3.7" 258 | tsutils "^3.21.0" 259 | 260 | "@typescript-eslint/visitor-keys@5.59.6": 261 | version "5.59.6" 262 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz#673fccabf28943847d0c8e9e8d008e3ada7be6bb" 263 | integrity sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q== 264 | dependencies: 265 | "@typescript-eslint/types" "5.59.6" 266 | eslint-visitor-keys "^3.3.0" 267 | 268 | acorn-jsx@^5.3.2: 269 | version "5.3.2" 270 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 271 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 272 | 273 | acorn@^8.9.0: 274 | version "8.9.0" 275 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" 276 | integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== 277 | 278 | ajv@^6.12.4: 279 | version "6.12.6" 280 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 281 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 282 | dependencies: 283 | fast-deep-equal "^3.1.1" 284 | fast-json-stable-stringify "^2.0.0" 285 | json-schema-traverse "^0.4.1" 286 | uri-js "^4.2.2" 287 | 288 | ansi-regex@^5.0.1: 289 | version "5.0.1" 290 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 291 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 292 | 293 | ansi-styles@^4.1.0: 294 | version "4.3.0" 295 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 296 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 297 | dependencies: 298 | color-convert "^2.0.1" 299 | 300 | argparse@^2.0.1: 301 | version "2.0.1" 302 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 303 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 304 | 305 | aria-query@^4.2.2: 306 | version "4.2.2" 307 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 308 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 309 | dependencies: 310 | "@babel/runtime" "^7.10.2" 311 | "@babel/runtime-corejs3" "^7.10.2" 312 | 313 | array-buffer-byte-length@^1.0.0: 314 | version "1.0.0" 315 | resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" 316 | integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== 317 | dependencies: 318 | call-bind "^1.0.2" 319 | is-array-buffer "^3.0.1" 320 | 321 | array-includes@^3.1.3, array-includes@^3.1.4: 322 | version "3.1.4" 323 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9" 324 | integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw== 325 | dependencies: 326 | call-bind "^1.0.2" 327 | define-properties "^1.1.3" 328 | es-abstract "^1.19.1" 329 | get-intrinsic "^1.1.1" 330 | is-string "^1.0.7" 331 | 332 | array-includes@^3.1.6: 333 | version "3.1.6" 334 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" 335 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 336 | dependencies: 337 | call-bind "^1.0.2" 338 | define-properties "^1.1.4" 339 | es-abstract "^1.20.4" 340 | get-intrinsic "^1.1.3" 341 | is-string "^1.0.7" 342 | 343 | array-union@^2.1.0: 344 | version "2.1.0" 345 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 346 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 347 | 348 | array.prototype.flat@^1.3.1: 349 | version "1.3.1" 350 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" 351 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== 352 | dependencies: 353 | call-bind "^1.0.2" 354 | define-properties "^1.1.4" 355 | es-abstract "^1.20.4" 356 | es-shim-unscopables "^1.0.0" 357 | 358 | array.prototype.flatmap@^1.3.1: 359 | version "1.3.1" 360 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" 361 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 362 | dependencies: 363 | call-bind "^1.0.2" 364 | define-properties "^1.1.4" 365 | es-abstract "^1.20.4" 366 | es-shim-unscopables "^1.0.0" 367 | 368 | array.prototype.tosorted@^1.1.1: 369 | version "1.1.1" 370 | resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" 371 | integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== 372 | dependencies: 373 | call-bind "^1.0.2" 374 | define-properties "^1.1.4" 375 | es-abstract "^1.20.4" 376 | es-shim-unscopables "^1.0.0" 377 | get-intrinsic "^1.1.3" 378 | 379 | ast-types-flow@^0.0.7: 380 | version "0.0.7" 381 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 382 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= 383 | 384 | available-typed-arrays@^1.0.5: 385 | version "1.0.5" 386 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" 387 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 388 | 389 | axe-core@^4.3.5: 390 | version "4.4.1" 391 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413" 392 | integrity sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw== 393 | 394 | axobject-query@^2.2.0: 395 | version "2.2.0" 396 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 397 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 398 | 399 | balanced-match@^1.0.0: 400 | version "1.0.2" 401 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 402 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 403 | 404 | brace-expansion@^1.1.7: 405 | version "1.1.11" 406 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 407 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 408 | dependencies: 409 | balanced-match "^1.0.0" 410 | concat-map "0.0.1" 411 | 412 | braces@^3.0.1: 413 | version "3.0.2" 414 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 415 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 416 | dependencies: 417 | fill-range "^7.0.1" 418 | 419 | call-bind@^1.0.0, call-bind@^1.0.2: 420 | version "1.0.2" 421 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 422 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 423 | dependencies: 424 | function-bind "^1.1.1" 425 | get-intrinsic "^1.0.2" 426 | 427 | callsites@^3.0.0: 428 | version "3.1.0" 429 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 430 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 431 | 432 | caniuse-lite@^1.0.30001406: 433 | version "1.0.30001488" 434 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001488.tgz#d19d7b6e913afae3e98f023db97c19e9ddc5e91f" 435 | integrity sha512-NORIQuuL4xGpIy6iCCQGN4iFjlBXtfKWIenlUuyZJumLRIindLb7wXM+GO8erEhb7vXfcnf4BAg2PrSDN5TNLQ== 436 | 437 | chalk@^4.0.0: 438 | version "4.1.2" 439 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 440 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 441 | dependencies: 442 | ansi-styles "^4.1.0" 443 | supports-color "^7.1.0" 444 | 445 | color-convert@^2.0.1: 446 | version "2.0.1" 447 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 448 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 449 | dependencies: 450 | color-name "~1.1.4" 451 | 452 | color-name@~1.1.4: 453 | version "1.1.4" 454 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 455 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 456 | 457 | concat-map@0.0.1: 458 | version "0.0.1" 459 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 460 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 461 | 462 | core-js-pure@^3.20.2: 463 | version "3.21.1" 464 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.21.1.tgz#8c4d1e78839f5f46208de7230cebfb72bc3bdb51" 465 | integrity sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ== 466 | 467 | cross-spawn@^7.0.2: 468 | version "7.0.3" 469 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 470 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 471 | dependencies: 472 | path-key "^3.1.0" 473 | shebang-command "^2.0.0" 474 | which "^2.0.1" 475 | 476 | csstype@^3.0.2: 477 | version "3.1.2" 478 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" 479 | integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== 480 | 481 | damerau-levenshtein@^1.0.7: 482 | version "1.0.8" 483 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 484 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 485 | 486 | debug@^3.2.7: 487 | version "3.2.7" 488 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 489 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 490 | dependencies: 491 | ms "^2.1.1" 492 | 493 | debug@^4.1.1, debug@^4.3.2: 494 | version "4.3.3" 495 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" 496 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 497 | dependencies: 498 | ms "2.1.2" 499 | 500 | debug@^4.3.4: 501 | version "4.3.4" 502 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 503 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 504 | dependencies: 505 | ms "2.1.2" 506 | 507 | deep-is@^0.1.3: 508 | version "0.1.4" 509 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 510 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 511 | 512 | define-properties@^1.1.3: 513 | version "1.1.3" 514 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 515 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 516 | dependencies: 517 | object-keys "^1.0.12" 518 | 519 | define-properties@^1.1.4, define-properties@^1.2.0: 520 | version "1.2.0" 521 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" 522 | integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== 523 | dependencies: 524 | has-property-descriptors "^1.0.0" 525 | object-keys "^1.1.1" 526 | 527 | detect-indent@~6.0.0: 528 | version "6.0.0" 529 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.0.0.tgz#0abd0f549f69fc6659a254fe96786186b6f528fd" 530 | integrity sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== 531 | 532 | dir-glob@^3.0.1: 533 | version "3.0.1" 534 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 535 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 536 | dependencies: 537 | path-type "^4.0.0" 538 | 539 | docopt@~0.6.2: 540 | version "0.6.2" 541 | resolved "https://registry.yarnpkg.com/docopt/-/docopt-0.6.2.tgz#b28e9e2220da5ec49f7ea5bb24a47787405eeb11" 542 | integrity sha1-so6eIiDaXsSffqW7JKR3h0Be6xE= 543 | 544 | doctrine@^2.1.0: 545 | version "2.1.0" 546 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 547 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 548 | dependencies: 549 | esutils "^2.0.2" 550 | 551 | doctrine@^3.0.0: 552 | version "3.0.0" 553 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 554 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 555 | dependencies: 556 | esutils "^2.0.2" 557 | 558 | dot-json@^1.2.2: 559 | version "1.2.2" 560 | resolved "https://registry.yarnpkg.com/dot-json/-/dot-json-1.2.2.tgz#7d35abece4aa22aa75a761388953f98495401bcc" 561 | integrity sha512-AKL+GsO4wSEU4LU+fAk/PqN4nQ6PB1vT3HpMiZous9xCzK5S0kh4DzfUY0EfU67jsIXLlu0ty71659N9Nmg+Tw== 562 | dependencies: 563 | detect-indent "~6.0.0" 564 | docopt "~0.6.2" 565 | underscore-keypath "~0.0.22" 566 | 567 | emoji-regex@^9.2.2: 568 | version "9.2.2" 569 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 570 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 571 | 572 | es-abstract@^1.19.0, es-abstract@^1.19.1: 573 | version "1.19.1" 574 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3" 575 | integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w== 576 | dependencies: 577 | call-bind "^1.0.2" 578 | es-to-primitive "^1.2.1" 579 | function-bind "^1.1.1" 580 | get-intrinsic "^1.1.1" 581 | get-symbol-description "^1.0.0" 582 | has "^1.0.3" 583 | has-symbols "^1.0.2" 584 | internal-slot "^1.0.3" 585 | is-callable "^1.2.4" 586 | is-negative-zero "^2.0.1" 587 | is-regex "^1.1.4" 588 | is-shared-array-buffer "^1.0.1" 589 | is-string "^1.0.7" 590 | is-weakref "^1.0.1" 591 | object-inspect "^1.11.0" 592 | object-keys "^1.1.1" 593 | object.assign "^4.1.2" 594 | string.prototype.trimend "^1.0.4" 595 | string.prototype.trimstart "^1.0.4" 596 | unbox-primitive "^1.0.1" 597 | 598 | es-abstract@^1.20.4: 599 | version "1.21.2" 600 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff" 601 | integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== 602 | dependencies: 603 | array-buffer-byte-length "^1.0.0" 604 | available-typed-arrays "^1.0.5" 605 | call-bind "^1.0.2" 606 | es-set-tostringtag "^2.0.1" 607 | es-to-primitive "^1.2.1" 608 | function.prototype.name "^1.1.5" 609 | get-intrinsic "^1.2.0" 610 | get-symbol-description "^1.0.0" 611 | globalthis "^1.0.3" 612 | gopd "^1.0.1" 613 | has "^1.0.3" 614 | has-property-descriptors "^1.0.0" 615 | has-proto "^1.0.1" 616 | has-symbols "^1.0.3" 617 | internal-slot "^1.0.5" 618 | is-array-buffer "^3.0.2" 619 | is-callable "^1.2.7" 620 | is-negative-zero "^2.0.2" 621 | is-regex "^1.1.4" 622 | is-shared-array-buffer "^1.0.2" 623 | is-string "^1.0.7" 624 | is-typed-array "^1.1.10" 625 | is-weakref "^1.0.2" 626 | object-inspect "^1.12.3" 627 | object-keys "^1.1.1" 628 | object.assign "^4.1.4" 629 | regexp.prototype.flags "^1.4.3" 630 | safe-regex-test "^1.0.0" 631 | string.prototype.trim "^1.2.7" 632 | string.prototype.trimend "^1.0.6" 633 | string.prototype.trimstart "^1.0.6" 634 | typed-array-length "^1.0.4" 635 | unbox-primitive "^1.0.2" 636 | which-typed-array "^1.1.9" 637 | 638 | es-set-tostringtag@^2.0.1: 639 | version "2.0.1" 640 | resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" 641 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== 642 | dependencies: 643 | get-intrinsic "^1.1.3" 644 | has "^1.0.3" 645 | has-tostringtag "^1.0.0" 646 | 647 | es-shim-unscopables@^1.0.0: 648 | version "1.0.0" 649 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 650 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 651 | dependencies: 652 | has "^1.0.3" 653 | 654 | es-to-primitive@^1.2.1: 655 | version "1.2.1" 656 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 657 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 658 | dependencies: 659 | is-callable "^1.1.4" 660 | is-date-object "^1.0.1" 661 | is-symbol "^1.0.2" 662 | 663 | escape-string-regexp@^4.0.0: 664 | version "4.0.0" 665 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 666 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 667 | 668 | eslint-config-next@12.3.4: 669 | version "12.3.4" 670 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.3.4.tgz#3d4d9e74b919b879c4cc79c61bdc388fb2b964ee" 671 | integrity sha512-WuT3gvgi7Bwz00AOmKGhOeqnyA5P29Cdyr0iVjLyfDbk+FANQKcOjFUTZIdyYfe5Tq1x4TGcmoe4CwctGvFjHQ== 672 | dependencies: 673 | "@next/eslint-plugin-next" "12.3.4" 674 | "@rushstack/eslint-patch" "^1.1.3" 675 | "@typescript-eslint/parser" "^5.21.0" 676 | eslint-import-resolver-node "^0.3.6" 677 | eslint-import-resolver-typescript "^2.7.1" 678 | eslint-plugin-import "^2.26.0" 679 | eslint-plugin-jsx-a11y "^6.5.1" 680 | eslint-plugin-react "^7.31.7" 681 | eslint-plugin-react-hooks "^4.5.0" 682 | 683 | eslint-import-resolver-node@^0.3.6: 684 | version "0.3.6" 685 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" 686 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== 687 | dependencies: 688 | debug "^3.2.7" 689 | resolve "^1.20.0" 690 | 691 | eslint-import-resolver-node@^0.3.7: 692 | version "0.3.7" 693 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" 694 | integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== 695 | dependencies: 696 | debug "^3.2.7" 697 | is-core-module "^2.11.0" 698 | resolve "^1.22.1" 699 | 700 | eslint-import-resolver-typescript@^2.7.1: 701 | version "2.7.1" 702 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751" 703 | integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ== 704 | dependencies: 705 | debug "^4.3.4" 706 | glob "^7.2.0" 707 | is-glob "^4.0.3" 708 | resolve "^1.22.0" 709 | tsconfig-paths "^3.14.1" 710 | 711 | eslint-module-utils@^2.7.4: 712 | version "2.8.0" 713 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" 714 | integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== 715 | dependencies: 716 | debug "^3.2.7" 717 | 718 | eslint-plugin-import@^2.26.0: 719 | version "2.27.5" 720 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" 721 | integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== 722 | dependencies: 723 | array-includes "^3.1.6" 724 | array.prototype.flat "^1.3.1" 725 | array.prototype.flatmap "^1.3.1" 726 | debug "^3.2.7" 727 | doctrine "^2.1.0" 728 | eslint-import-resolver-node "^0.3.7" 729 | eslint-module-utils "^2.7.4" 730 | has "^1.0.3" 731 | is-core-module "^2.11.0" 732 | is-glob "^4.0.3" 733 | minimatch "^3.1.2" 734 | object.values "^1.1.6" 735 | resolve "^1.22.1" 736 | semver "^6.3.0" 737 | tsconfig-paths "^3.14.1" 738 | 739 | eslint-plugin-jsx-a11y@^6.5.1: 740 | version "6.5.1" 741 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8" 742 | integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g== 743 | dependencies: 744 | "@babel/runtime" "^7.16.3" 745 | aria-query "^4.2.2" 746 | array-includes "^3.1.4" 747 | ast-types-flow "^0.0.7" 748 | axe-core "^4.3.5" 749 | axobject-query "^2.2.0" 750 | damerau-levenshtein "^1.0.7" 751 | emoji-regex "^9.2.2" 752 | has "^1.0.3" 753 | jsx-ast-utils "^3.2.1" 754 | language-tags "^1.0.5" 755 | minimatch "^3.0.4" 756 | 757 | eslint-plugin-react-hooks@^4.5.0: 758 | version "4.6.0" 759 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 760 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 761 | 762 | eslint-plugin-react@^7.31.7: 763 | version "7.32.2" 764 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10" 765 | integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== 766 | dependencies: 767 | array-includes "^3.1.6" 768 | array.prototype.flatmap "^1.3.1" 769 | array.prototype.tosorted "^1.1.1" 770 | doctrine "^2.1.0" 771 | estraverse "^5.3.0" 772 | jsx-ast-utils "^2.4.1 || ^3.0.0" 773 | minimatch "^3.1.2" 774 | object.entries "^1.1.6" 775 | object.fromentries "^2.0.6" 776 | object.hasown "^1.1.2" 777 | object.values "^1.1.6" 778 | prop-types "^15.8.1" 779 | resolve "^2.0.0-next.4" 780 | semver "^6.3.0" 781 | string.prototype.matchall "^4.0.8" 782 | 783 | eslint-scope@^7.2.2: 784 | version "7.2.2" 785 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" 786 | integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== 787 | dependencies: 788 | esrecurse "^4.3.0" 789 | estraverse "^5.2.0" 790 | 791 | eslint-visitor-keys@^3.3.0: 792 | version "3.3.0" 793 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 794 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 795 | 796 | eslint-visitor-keys@^3.4.1: 797 | version "3.4.1" 798 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" 799 | integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== 800 | 801 | eslint-visitor-keys@^3.4.2: 802 | version "3.4.2" 803 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz#8c2095440eca8c933bedcadf16fefa44dbe9ba5f" 804 | integrity sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw== 805 | 806 | eslint@8.46.0: 807 | version "8.46.0" 808 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.46.0.tgz#a06a0ff6974e53e643acc42d1dcf2e7f797b3552" 809 | integrity sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg== 810 | dependencies: 811 | "@eslint-community/eslint-utils" "^4.2.0" 812 | "@eslint-community/regexpp" "^4.6.1" 813 | "@eslint/eslintrc" "^2.1.1" 814 | "@eslint/js" "^8.46.0" 815 | "@humanwhocodes/config-array" "^0.11.10" 816 | "@humanwhocodes/module-importer" "^1.0.1" 817 | "@nodelib/fs.walk" "^1.2.8" 818 | ajv "^6.12.4" 819 | chalk "^4.0.0" 820 | cross-spawn "^7.0.2" 821 | debug "^4.3.2" 822 | doctrine "^3.0.0" 823 | escape-string-regexp "^4.0.0" 824 | eslint-scope "^7.2.2" 825 | eslint-visitor-keys "^3.4.2" 826 | espree "^9.6.1" 827 | esquery "^1.4.2" 828 | esutils "^2.0.2" 829 | fast-deep-equal "^3.1.3" 830 | file-entry-cache "^6.0.1" 831 | find-up "^5.0.0" 832 | glob-parent "^6.0.2" 833 | globals "^13.19.0" 834 | graphemer "^1.4.0" 835 | ignore "^5.2.0" 836 | imurmurhash "^0.1.4" 837 | is-glob "^4.0.0" 838 | is-path-inside "^3.0.3" 839 | js-yaml "^4.1.0" 840 | json-stable-stringify-without-jsonify "^1.0.1" 841 | levn "^0.4.1" 842 | lodash.merge "^4.6.2" 843 | minimatch "^3.1.2" 844 | natural-compare "^1.4.0" 845 | optionator "^0.9.3" 846 | strip-ansi "^6.0.1" 847 | text-table "^0.2.0" 848 | 849 | espree@^9.6.0: 850 | version "9.6.0" 851 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.0.tgz#80869754b1c6560f32e3b6929194a3fe07c5b82f" 852 | integrity sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A== 853 | dependencies: 854 | acorn "^8.9.0" 855 | acorn-jsx "^5.3.2" 856 | eslint-visitor-keys "^3.4.1" 857 | 858 | espree@^9.6.1: 859 | version "9.6.1" 860 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" 861 | integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== 862 | dependencies: 863 | acorn "^8.9.0" 864 | acorn-jsx "^5.3.2" 865 | eslint-visitor-keys "^3.4.1" 866 | 867 | esquery@^1.4.2: 868 | version "1.5.0" 869 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" 870 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 871 | dependencies: 872 | estraverse "^5.1.0" 873 | 874 | esrecurse@^4.3.0: 875 | version "4.3.0" 876 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 877 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 878 | dependencies: 879 | estraverse "^5.2.0" 880 | 881 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 882 | version "5.3.0" 883 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 884 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 885 | 886 | esutils@^2.0.2: 887 | version "2.0.3" 888 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 889 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 890 | 891 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 892 | version "3.1.3" 893 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 894 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 895 | 896 | fast-glob@^3.2.9: 897 | version "3.2.11" 898 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" 899 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== 900 | dependencies: 901 | "@nodelib/fs.stat" "^2.0.2" 902 | "@nodelib/fs.walk" "^1.2.3" 903 | glob-parent "^5.1.2" 904 | merge2 "^1.3.0" 905 | micromatch "^4.0.4" 906 | 907 | fast-json-stable-stringify@^2.0.0: 908 | version "2.1.0" 909 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 910 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 911 | 912 | fast-levenshtein@^2.0.6: 913 | version "2.0.6" 914 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 915 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 916 | 917 | fastq@^1.6.0: 918 | version "1.13.0" 919 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 920 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 921 | dependencies: 922 | reusify "^1.0.4" 923 | 924 | file-entry-cache@^6.0.1: 925 | version "6.0.1" 926 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 927 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 928 | dependencies: 929 | flat-cache "^3.0.4" 930 | 931 | fill-range@^7.0.1: 932 | version "7.0.1" 933 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 934 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 935 | dependencies: 936 | to-regex-range "^5.0.1" 937 | 938 | find-up@^5.0.0: 939 | version "5.0.0" 940 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 941 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 942 | dependencies: 943 | locate-path "^6.0.0" 944 | path-exists "^4.0.0" 945 | 946 | flat-cache@^3.0.4: 947 | version "3.0.4" 948 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 949 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 950 | dependencies: 951 | flatted "^3.1.0" 952 | rimraf "^3.0.2" 953 | 954 | flatted@^3.1.0: 955 | version "3.2.5" 956 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" 957 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== 958 | 959 | for-each@^0.3.3: 960 | version "0.3.3" 961 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" 962 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 963 | dependencies: 964 | is-callable "^1.1.3" 965 | 966 | fs.realpath@^1.0.0: 967 | version "1.0.0" 968 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 969 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 970 | 971 | function-bind@^1.1.1: 972 | version "1.1.1" 973 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 974 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 975 | 976 | function.prototype.name@^1.1.5: 977 | version "1.1.5" 978 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 979 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 980 | dependencies: 981 | call-bind "^1.0.2" 982 | define-properties "^1.1.3" 983 | es-abstract "^1.19.0" 984 | functions-have-names "^1.2.2" 985 | 986 | functions-have-names@^1.2.2, functions-have-names@^1.2.3: 987 | version "1.2.3" 988 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 989 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 990 | 991 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 992 | version "1.1.1" 993 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 994 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 995 | dependencies: 996 | function-bind "^1.1.1" 997 | has "^1.0.3" 998 | has-symbols "^1.0.1" 999 | 1000 | get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: 1001 | version "1.2.1" 1002 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" 1003 | integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== 1004 | dependencies: 1005 | function-bind "^1.1.1" 1006 | has "^1.0.3" 1007 | has-proto "^1.0.1" 1008 | has-symbols "^1.0.3" 1009 | 1010 | get-symbol-description@^1.0.0: 1011 | version "1.0.0" 1012 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1013 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1014 | dependencies: 1015 | call-bind "^1.0.2" 1016 | get-intrinsic "^1.1.1" 1017 | 1018 | glob-parent@^5.1.2: 1019 | version "5.1.2" 1020 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1021 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1022 | dependencies: 1023 | is-glob "^4.0.1" 1024 | 1025 | glob-parent@^6.0.2: 1026 | version "6.0.2" 1027 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1028 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1029 | dependencies: 1030 | is-glob "^4.0.3" 1031 | 1032 | glob@7.1.7: 1033 | version "7.1.7" 1034 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 1035 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1036 | dependencies: 1037 | fs.realpath "^1.0.0" 1038 | inflight "^1.0.4" 1039 | inherits "2" 1040 | minimatch "^3.0.4" 1041 | once "^1.3.0" 1042 | path-is-absolute "^1.0.0" 1043 | 1044 | glob@^7.1.3: 1045 | version "7.2.0" 1046 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1047 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1048 | dependencies: 1049 | fs.realpath "^1.0.0" 1050 | inflight "^1.0.4" 1051 | inherits "2" 1052 | minimatch "^3.0.4" 1053 | once "^1.3.0" 1054 | path-is-absolute "^1.0.0" 1055 | 1056 | glob@^7.2.0: 1057 | version "7.2.3" 1058 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1059 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1060 | dependencies: 1061 | fs.realpath "^1.0.0" 1062 | inflight "^1.0.4" 1063 | inherits "2" 1064 | minimatch "^3.1.1" 1065 | once "^1.3.0" 1066 | path-is-absolute "^1.0.0" 1067 | 1068 | globals@^13.19.0: 1069 | version "13.20.0" 1070 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" 1071 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 1072 | dependencies: 1073 | type-fest "^0.20.2" 1074 | 1075 | globalthis@^1.0.3: 1076 | version "1.0.3" 1077 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" 1078 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1079 | dependencies: 1080 | define-properties "^1.1.3" 1081 | 1082 | globby@^11.1.0: 1083 | version "11.1.0" 1084 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1085 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1086 | dependencies: 1087 | array-union "^2.1.0" 1088 | dir-glob "^3.0.1" 1089 | fast-glob "^3.2.9" 1090 | ignore "^5.2.0" 1091 | merge2 "^1.4.1" 1092 | slash "^3.0.0" 1093 | 1094 | gopd@^1.0.1: 1095 | version "1.0.1" 1096 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" 1097 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 1098 | dependencies: 1099 | get-intrinsic "^1.1.3" 1100 | 1101 | graphemer@^1.4.0: 1102 | version "1.4.0" 1103 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" 1104 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 1105 | 1106 | has-bigints@^1.0.1: 1107 | version "1.0.1" 1108 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 1109 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 1110 | 1111 | has-bigints@^1.0.2: 1112 | version "1.0.2" 1113 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1114 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1115 | 1116 | has-flag@^4.0.0: 1117 | version "4.0.0" 1118 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1119 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1120 | 1121 | has-property-descriptors@^1.0.0: 1122 | version "1.0.0" 1123 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1124 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1125 | dependencies: 1126 | get-intrinsic "^1.1.1" 1127 | 1128 | has-proto@^1.0.1: 1129 | version "1.0.1" 1130 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" 1131 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1132 | 1133 | has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: 1134 | version "1.0.3" 1135 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1136 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1137 | 1138 | has-tostringtag@^1.0.0: 1139 | version "1.0.0" 1140 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1141 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1142 | dependencies: 1143 | has-symbols "^1.0.2" 1144 | 1145 | has@^1.0.3: 1146 | version "1.0.3" 1147 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1148 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1149 | dependencies: 1150 | function-bind "^1.1.1" 1151 | 1152 | ignore@^5.2.0: 1153 | version "5.2.0" 1154 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 1155 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 1156 | 1157 | import-fresh@^3.2.1: 1158 | version "3.3.0" 1159 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1160 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1161 | dependencies: 1162 | parent-module "^1.0.0" 1163 | resolve-from "^4.0.0" 1164 | 1165 | imurmurhash@^0.1.4: 1166 | version "0.1.4" 1167 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1168 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1169 | 1170 | inflight@^1.0.4: 1171 | version "1.0.6" 1172 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1173 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1174 | dependencies: 1175 | once "^1.3.0" 1176 | wrappy "1" 1177 | 1178 | inherits@2: 1179 | version "2.0.4" 1180 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1181 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1182 | 1183 | internal-slot@^1.0.3: 1184 | version "1.0.3" 1185 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1186 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1187 | dependencies: 1188 | get-intrinsic "^1.1.0" 1189 | has "^1.0.3" 1190 | side-channel "^1.0.4" 1191 | 1192 | internal-slot@^1.0.5: 1193 | version "1.0.5" 1194 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" 1195 | integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== 1196 | dependencies: 1197 | get-intrinsic "^1.2.0" 1198 | has "^1.0.3" 1199 | side-channel "^1.0.4" 1200 | 1201 | is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: 1202 | version "3.0.2" 1203 | resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" 1204 | integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== 1205 | dependencies: 1206 | call-bind "^1.0.2" 1207 | get-intrinsic "^1.2.0" 1208 | is-typed-array "^1.1.10" 1209 | 1210 | is-bigint@^1.0.1: 1211 | version "1.0.4" 1212 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1213 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1214 | dependencies: 1215 | has-bigints "^1.0.1" 1216 | 1217 | is-boolean-object@^1.1.0: 1218 | version "1.1.2" 1219 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1220 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1221 | dependencies: 1222 | call-bind "^1.0.2" 1223 | has-tostringtag "^1.0.0" 1224 | 1225 | is-callable@^1.1.3, is-callable@^1.2.7: 1226 | version "1.2.7" 1227 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1228 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1229 | 1230 | is-callable@^1.1.4, is-callable@^1.2.4: 1231 | version "1.2.4" 1232 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" 1233 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 1234 | 1235 | is-core-module@^2.11.0, is-core-module@^2.9.0: 1236 | version "2.12.1" 1237 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" 1238 | integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== 1239 | dependencies: 1240 | has "^1.0.3" 1241 | 1242 | is-core-module@^2.8.1: 1243 | version "2.8.1" 1244 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" 1245 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== 1246 | dependencies: 1247 | has "^1.0.3" 1248 | 1249 | is-date-object@^1.0.1: 1250 | version "1.0.5" 1251 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1252 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1253 | dependencies: 1254 | has-tostringtag "^1.0.0" 1255 | 1256 | is-extglob@^2.1.1: 1257 | version "2.1.1" 1258 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1259 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1260 | 1261 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1262 | version "4.0.3" 1263 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1264 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1265 | dependencies: 1266 | is-extglob "^2.1.1" 1267 | 1268 | is-negative-zero@^2.0.1, is-negative-zero@^2.0.2: 1269 | version "2.0.2" 1270 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1271 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1272 | 1273 | is-number-object@^1.0.4: 1274 | version "1.0.6" 1275 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0" 1276 | integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== 1277 | dependencies: 1278 | has-tostringtag "^1.0.0" 1279 | 1280 | is-number@^7.0.0: 1281 | version "7.0.0" 1282 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1283 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1284 | 1285 | is-path-inside@^3.0.3: 1286 | version "3.0.3" 1287 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1288 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1289 | 1290 | is-regex@^1.1.4: 1291 | version "1.1.4" 1292 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1293 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1294 | dependencies: 1295 | call-bind "^1.0.2" 1296 | has-tostringtag "^1.0.0" 1297 | 1298 | is-shared-array-buffer@^1.0.1: 1299 | version "1.0.1" 1300 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6" 1301 | integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA== 1302 | 1303 | is-shared-array-buffer@^1.0.2: 1304 | version "1.0.2" 1305 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1306 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1307 | dependencies: 1308 | call-bind "^1.0.2" 1309 | 1310 | is-string@^1.0.5, is-string@^1.0.7: 1311 | version "1.0.7" 1312 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1313 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1314 | dependencies: 1315 | has-tostringtag "^1.0.0" 1316 | 1317 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1318 | version "1.0.4" 1319 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1320 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1321 | dependencies: 1322 | has-symbols "^1.0.2" 1323 | 1324 | is-typed-array@^1.1.10, is-typed-array@^1.1.9: 1325 | version "1.1.10" 1326 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" 1327 | integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== 1328 | dependencies: 1329 | available-typed-arrays "^1.0.5" 1330 | call-bind "^1.0.2" 1331 | for-each "^0.3.3" 1332 | gopd "^1.0.1" 1333 | has-tostringtag "^1.0.0" 1334 | 1335 | is-weakref@^1.0.1, is-weakref@^1.0.2: 1336 | version "1.0.2" 1337 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1338 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1339 | dependencies: 1340 | call-bind "^1.0.2" 1341 | 1342 | isexe@^2.0.0: 1343 | version "2.0.0" 1344 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1345 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1346 | 1347 | isomorphic-unfetch@^3.1.0: 1348 | version "3.1.0" 1349 | resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz#87341d5f4f7b63843d468438128cb087b7c3e98f" 1350 | integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q== 1351 | dependencies: 1352 | node-fetch "^2.6.1" 1353 | unfetch "^4.2.0" 1354 | 1355 | "js-tokens@^3.0.0 || ^4.0.0": 1356 | version "4.0.0" 1357 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1358 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1359 | 1360 | js-yaml@^4.1.0: 1361 | version "4.1.0" 1362 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1363 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1364 | dependencies: 1365 | argparse "^2.0.1" 1366 | 1367 | json-schema-traverse@^0.4.1: 1368 | version "0.4.1" 1369 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1370 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1371 | 1372 | json-stable-stringify-without-jsonify@^1.0.1: 1373 | version "1.0.1" 1374 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1375 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1376 | 1377 | json5@^1.0.2: 1378 | version "1.0.2" 1379 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" 1380 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== 1381 | dependencies: 1382 | minimist "^1.2.0" 1383 | 1384 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1: 1385 | version "3.2.1" 1386 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz#720b97bfe7d901b927d87c3773637ae8ea48781b" 1387 | integrity sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA== 1388 | dependencies: 1389 | array-includes "^3.1.3" 1390 | object.assign "^4.1.2" 1391 | 1392 | language-subtag-registry@~0.3.2: 1393 | version "0.3.21" 1394 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" 1395 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== 1396 | 1397 | language-tags@^1.0.5: 1398 | version "1.0.5" 1399 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1400 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo= 1401 | dependencies: 1402 | language-subtag-registry "~0.3.2" 1403 | 1404 | levn@^0.4.1: 1405 | version "0.4.1" 1406 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1407 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1408 | dependencies: 1409 | prelude-ls "^1.2.1" 1410 | type-check "~0.4.0" 1411 | 1412 | locate-path@^6.0.0: 1413 | version "6.0.0" 1414 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1415 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1416 | dependencies: 1417 | p-locate "^5.0.0" 1418 | 1419 | lodash.clonedeep@^4.5.0: 1420 | version "4.5.0" 1421 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1422 | integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= 1423 | 1424 | lodash.merge@^4.6.2: 1425 | version "4.6.2" 1426 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1427 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1428 | 1429 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1430 | version "1.4.0" 1431 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1432 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1433 | dependencies: 1434 | js-tokens "^3.0.0 || ^4.0.0" 1435 | 1436 | lru-cache@^6.0.0: 1437 | version "6.0.0" 1438 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1439 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1440 | dependencies: 1441 | yallist "^4.0.0" 1442 | 1443 | merge2@^1.3.0, merge2@^1.4.1: 1444 | version "1.4.1" 1445 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1446 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1447 | 1448 | micromatch@^4.0.4: 1449 | version "4.0.4" 1450 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 1451 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 1452 | dependencies: 1453 | braces "^3.0.1" 1454 | picomatch "^2.2.3" 1455 | 1456 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1457 | version "3.1.2" 1458 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1459 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1460 | dependencies: 1461 | brace-expansion "^1.1.7" 1462 | 1463 | minimist@^1.2.0: 1464 | version "1.2.5" 1465 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1466 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1467 | 1468 | minimist@^1.2.6: 1469 | version "1.2.8" 1470 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" 1471 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== 1472 | 1473 | ms@2.1.2: 1474 | version "2.1.2" 1475 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1476 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1477 | 1478 | ms@^2.1.1: 1479 | version "2.1.3" 1480 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1481 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1482 | 1483 | nanoid@^3.3.4: 1484 | version "3.3.6" 1485 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" 1486 | integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== 1487 | 1488 | natural-compare@^1.4.0: 1489 | version "1.4.0" 1490 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1491 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1492 | 1493 | next@12.3.4: 1494 | version "12.3.4" 1495 | resolved "https://registry.yarnpkg.com/next/-/next-12.3.4.tgz#f2780a6ebbf367e071ce67e24bd8a6e05de2fcb1" 1496 | integrity sha512-VcyMJUtLZBGzLKo3oMxrEF0stxh8HwuW976pAzlHhI3t8qJ4SROjCrSh1T24bhrbjw55wfZXAbXPGwPt5FLRfQ== 1497 | dependencies: 1498 | "@next/env" "12.3.4" 1499 | "@swc/helpers" "0.4.11" 1500 | caniuse-lite "^1.0.30001406" 1501 | postcss "8.4.14" 1502 | styled-jsx "5.0.7" 1503 | use-sync-external-store "1.2.0" 1504 | optionalDependencies: 1505 | "@next/swc-android-arm-eabi" "12.3.4" 1506 | "@next/swc-android-arm64" "12.3.4" 1507 | "@next/swc-darwin-arm64" "12.3.4" 1508 | "@next/swc-darwin-x64" "12.3.4" 1509 | "@next/swc-freebsd-x64" "12.3.4" 1510 | "@next/swc-linux-arm-gnueabihf" "12.3.4" 1511 | "@next/swc-linux-arm64-gnu" "12.3.4" 1512 | "@next/swc-linux-arm64-musl" "12.3.4" 1513 | "@next/swc-linux-x64-gnu" "12.3.4" 1514 | "@next/swc-linux-x64-musl" "12.3.4" 1515 | "@next/swc-win32-arm64-msvc" "12.3.4" 1516 | "@next/swc-win32-ia32-msvc" "12.3.4" 1517 | "@next/swc-win32-x64-msvc" "12.3.4" 1518 | 1519 | node-fetch@^2.6.1: 1520 | version "2.6.7" 1521 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 1522 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 1523 | dependencies: 1524 | whatwg-url "^5.0.0" 1525 | 1526 | object-assign@^4.1.1: 1527 | version "4.1.1" 1528 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1529 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1530 | 1531 | object-inspect@^1.11.0, object-inspect@^1.9.0: 1532 | version "1.12.0" 1533 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0" 1534 | integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== 1535 | 1536 | object-inspect@^1.12.3: 1537 | version "1.12.3" 1538 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" 1539 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 1540 | 1541 | object-keys@^1.0.12, object-keys@^1.1.1: 1542 | version "1.1.1" 1543 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1544 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1545 | 1546 | object.assign@^4.1.2: 1547 | version "4.1.2" 1548 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1549 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1550 | dependencies: 1551 | call-bind "^1.0.0" 1552 | define-properties "^1.1.3" 1553 | has-symbols "^1.0.1" 1554 | object-keys "^1.1.1" 1555 | 1556 | object.assign@^4.1.4: 1557 | version "4.1.4" 1558 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1559 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1560 | dependencies: 1561 | call-bind "^1.0.2" 1562 | define-properties "^1.1.4" 1563 | has-symbols "^1.0.3" 1564 | object-keys "^1.1.1" 1565 | 1566 | object.entries@^1.1.6: 1567 | version "1.1.6" 1568 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" 1569 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== 1570 | dependencies: 1571 | call-bind "^1.0.2" 1572 | define-properties "^1.1.4" 1573 | es-abstract "^1.20.4" 1574 | 1575 | object.fromentries@^2.0.6: 1576 | version "2.0.6" 1577 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" 1578 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== 1579 | dependencies: 1580 | call-bind "^1.0.2" 1581 | define-properties "^1.1.4" 1582 | es-abstract "^1.20.4" 1583 | 1584 | object.hasown@^1.1.2: 1585 | version "1.1.2" 1586 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" 1587 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== 1588 | dependencies: 1589 | define-properties "^1.1.4" 1590 | es-abstract "^1.20.4" 1591 | 1592 | object.values@^1.1.6: 1593 | version "1.1.6" 1594 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" 1595 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 1596 | dependencies: 1597 | call-bind "^1.0.2" 1598 | define-properties "^1.1.4" 1599 | es-abstract "^1.20.4" 1600 | 1601 | once@^1.3.0: 1602 | version "1.4.0" 1603 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1604 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1605 | dependencies: 1606 | wrappy "1" 1607 | 1608 | optionator@^0.9.3: 1609 | version "0.9.3" 1610 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" 1611 | integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== 1612 | dependencies: 1613 | "@aashutoshrathi/word-wrap" "^1.2.3" 1614 | deep-is "^0.1.3" 1615 | fast-levenshtein "^2.0.6" 1616 | levn "^0.4.1" 1617 | prelude-ls "^1.2.1" 1618 | type-check "^0.4.0" 1619 | 1620 | p-limit@^3.0.2: 1621 | version "3.1.0" 1622 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1623 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1624 | dependencies: 1625 | yocto-queue "^0.1.0" 1626 | 1627 | p-locate@^5.0.0: 1628 | version "5.0.0" 1629 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1630 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1631 | dependencies: 1632 | p-limit "^3.0.2" 1633 | 1634 | parent-module@^1.0.0: 1635 | version "1.0.1" 1636 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1637 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1638 | dependencies: 1639 | callsites "^3.0.0" 1640 | 1641 | path-exists@^4.0.0: 1642 | version "4.0.0" 1643 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1644 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1645 | 1646 | path-is-absolute@^1.0.0: 1647 | version "1.0.1" 1648 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1649 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1650 | 1651 | path-key@^3.1.0: 1652 | version "3.1.1" 1653 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1654 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1655 | 1656 | path-parse@^1.0.7: 1657 | version "1.0.7" 1658 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1659 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1660 | 1661 | path-type@^4.0.0: 1662 | version "4.0.0" 1663 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1664 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1665 | 1666 | picocolors@^1.0.0: 1667 | version "1.0.0" 1668 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1669 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1670 | 1671 | picomatch@^2.2.3: 1672 | version "2.3.1" 1673 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1674 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1675 | 1676 | postcss@8.4.14: 1677 | version "8.4.14" 1678 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" 1679 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== 1680 | dependencies: 1681 | nanoid "^3.3.4" 1682 | picocolors "^1.0.0" 1683 | source-map-js "^1.0.2" 1684 | 1685 | prelude-ls@^1.2.1: 1686 | version "1.2.1" 1687 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1688 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1689 | 1690 | prop-types@^15.8.1: 1691 | version "15.8.1" 1692 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1693 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1694 | dependencies: 1695 | loose-envify "^1.4.0" 1696 | object-assign "^4.1.1" 1697 | react-is "^16.13.1" 1698 | 1699 | punycode@^2.1.0: 1700 | version "2.1.1" 1701 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1702 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1703 | 1704 | queue-microtask@^1.2.2: 1705 | version "1.2.3" 1706 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1707 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1708 | 1709 | react-dom@17.0.2: 1710 | version "17.0.2" 1711 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" 1712 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== 1713 | dependencies: 1714 | loose-envify "^1.1.0" 1715 | object-assign "^4.1.1" 1716 | scheduler "^0.20.2" 1717 | 1718 | react-is@^16.13.1: 1719 | version "16.13.1" 1720 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1721 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1722 | 1723 | react@17.0.2: 1724 | version "17.0.2" 1725 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" 1726 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== 1727 | dependencies: 1728 | loose-envify "^1.1.0" 1729 | object-assign "^4.1.1" 1730 | 1731 | regenerator-runtime@^0.13.4: 1732 | version "0.13.9" 1733 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 1734 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 1735 | 1736 | regexp.prototype.flags@^1.4.3: 1737 | version "1.5.0" 1738 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" 1739 | integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== 1740 | dependencies: 1741 | call-bind "^1.0.2" 1742 | define-properties "^1.2.0" 1743 | functions-have-names "^1.2.3" 1744 | 1745 | resolve-from@^4.0.0: 1746 | version "4.0.0" 1747 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1748 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1749 | 1750 | resolve@^1.20.0: 1751 | version "1.22.0" 1752 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" 1753 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 1754 | dependencies: 1755 | is-core-module "^2.8.1" 1756 | path-parse "^1.0.7" 1757 | supports-preserve-symlinks-flag "^1.0.0" 1758 | 1759 | resolve@^1.22.0, resolve@^1.22.1: 1760 | version "1.22.2" 1761 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" 1762 | integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== 1763 | dependencies: 1764 | is-core-module "^2.11.0" 1765 | path-parse "^1.0.7" 1766 | supports-preserve-symlinks-flag "^1.0.0" 1767 | 1768 | resolve@^2.0.0-next.4: 1769 | version "2.0.0-next.4" 1770 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1771 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1772 | dependencies: 1773 | is-core-module "^2.9.0" 1774 | path-parse "^1.0.7" 1775 | supports-preserve-symlinks-flag "^1.0.0" 1776 | 1777 | reusify@^1.0.4: 1778 | version "1.0.4" 1779 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1780 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1781 | 1782 | rimraf@^3.0.2: 1783 | version "3.0.2" 1784 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1785 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1786 | dependencies: 1787 | glob "^7.1.3" 1788 | 1789 | run-parallel@^1.1.9: 1790 | version "1.2.0" 1791 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1792 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1793 | dependencies: 1794 | queue-microtask "^1.2.2" 1795 | 1796 | safe-regex-test@^1.0.0: 1797 | version "1.0.0" 1798 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 1799 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1800 | dependencies: 1801 | call-bind "^1.0.2" 1802 | get-intrinsic "^1.1.3" 1803 | is-regex "^1.1.4" 1804 | 1805 | scheduler@^0.20.2: 1806 | version "0.20.2" 1807 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" 1808 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== 1809 | dependencies: 1810 | loose-envify "^1.1.0" 1811 | object-assign "^4.1.1" 1812 | 1813 | semver@^6.3.0: 1814 | version "6.3.0" 1815 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1816 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1817 | 1818 | semver@^7.3.7: 1819 | version "7.5.1" 1820 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec" 1821 | integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw== 1822 | dependencies: 1823 | lru-cache "^6.0.0" 1824 | 1825 | shebang-command@^2.0.0: 1826 | version "2.0.0" 1827 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1828 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1829 | dependencies: 1830 | shebang-regex "^3.0.0" 1831 | 1832 | shebang-regex@^3.0.0: 1833 | version "3.0.0" 1834 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1835 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1836 | 1837 | side-channel@^1.0.4: 1838 | version "1.0.4" 1839 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1840 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1841 | dependencies: 1842 | call-bind "^1.0.0" 1843 | get-intrinsic "^1.0.2" 1844 | object-inspect "^1.9.0" 1845 | 1846 | slash@^3.0.0: 1847 | version "3.0.0" 1848 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1849 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1850 | 1851 | source-map-js@^1.0.2: 1852 | version "1.0.2" 1853 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1854 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1855 | 1856 | string.prototype.matchall@^4.0.8: 1857 | version "4.0.8" 1858 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" 1859 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== 1860 | dependencies: 1861 | call-bind "^1.0.2" 1862 | define-properties "^1.1.4" 1863 | es-abstract "^1.20.4" 1864 | get-intrinsic "^1.1.3" 1865 | has-symbols "^1.0.3" 1866 | internal-slot "^1.0.3" 1867 | regexp.prototype.flags "^1.4.3" 1868 | side-channel "^1.0.4" 1869 | 1870 | string.prototype.trim@^1.2.7: 1871 | version "1.2.7" 1872 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" 1873 | integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== 1874 | dependencies: 1875 | call-bind "^1.0.2" 1876 | define-properties "^1.1.4" 1877 | es-abstract "^1.20.4" 1878 | 1879 | string.prototype.trimend@^1.0.4: 1880 | version "1.0.4" 1881 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 1882 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 1883 | dependencies: 1884 | call-bind "^1.0.2" 1885 | define-properties "^1.1.3" 1886 | 1887 | string.prototype.trimend@^1.0.6: 1888 | version "1.0.6" 1889 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" 1890 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 1891 | dependencies: 1892 | call-bind "^1.0.2" 1893 | define-properties "^1.1.4" 1894 | es-abstract "^1.20.4" 1895 | 1896 | string.prototype.trimstart@^1.0.4: 1897 | version "1.0.4" 1898 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 1899 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 1900 | dependencies: 1901 | call-bind "^1.0.2" 1902 | define-properties "^1.1.3" 1903 | 1904 | string.prototype.trimstart@^1.0.6: 1905 | version "1.0.6" 1906 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" 1907 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 1908 | dependencies: 1909 | call-bind "^1.0.2" 1910 | define-properties "^1.1.4" 1911 | es-abstract "^1.20.4" 1912 | 1913 | strip-ansi@^6.0.1: 1914 | version "6.0.1" 1915 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1916 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1917 | dependencies: 1918 | ansi-regex "^5.0.1" 1919 | 1920 | strip-bom@^3.0.0: 1921 | version "3.0.0" 1922 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1923 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1924 | 1925 | strip-json-comments@^3.1.1: 1926 | version "3.1.1" 1927 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1928 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1929 | 1930 | styled-jsx@5.0.7: 1931 | version "5.0.7" 1932 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.7.tgz#be44afc53771b983769ac654d355ca8d019dff48" 1933 | integrity sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA== 1934 | 1935 | supports-color@^7.1.0: 1936 | version "7.2.0" 1937 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1938 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1939 | dependencies: 1940 | has-flag "^4.0.0" 1941 | 1942 | supports-preserve-symlinks-flag@^1.0.0: 1943 | version "1.0.0" 1944 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1945 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1946 | 1947 | text-table@^0.2.0: 1948 | version "0.2.0" 1949 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1950 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1951 | 1952 | to-regex-range@^5.0.1: 1953 | version "5.0.1" 1954 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1955 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1956 | dependencies: 1957 | is-number "^7.0.0" 1958 | 1959 | tr46@~0.0.3: 1960 | version "0.0.3" 1961 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1962 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 1963 | 1964 | tsconfig-paths@^3.14.1: 1965 | version "3.14.2" 1966 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" 1967 | integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== 1968 | dependencies: 1969 | "@types/json5" "^0.0.29" 1970 | json5 "^1.0.2" 1971 | minimist "^1.2.6" 1972 | strip-bom "^3.0.0" 1973 | 1974 | tslib@^1.8.1: 1975 | version "1.14.1" 1976 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 1977 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 1978 | 1979 | tslib@^2.4.0: 1980 | version "2.5.2" 1981 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338" 1982 | integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA== 1983 | 1984 | tsutils@^3.21.0: 1985 | version "3.21.0" 1986 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 1987 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 1988 | dependencies: 1989 | tslib "^1.8.1" 1990 | 1991 | type-check@^0.4.0, type-check@~0.4.0: 1992 | version "0.4.0" 1993 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1994 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1995 | dependencies: 1996 | prelude-ls "^1.2.1" 1997 | 1998 | type-fest@^0.20.2: 1999 | version "0.20.2" 2000 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2001 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2002 | 2003 | typed-array-length@^1.0.4: 2004 | version "1.0.4" 2005 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" 2006 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 2007 | dependencies: 2008 | call-bind "^1.0.2" 2009 | for-each "^0.3.3" 2010 | is-typed-array "^1.1.9" 2011 | 2012 | typescript@^5.0.0: 2013 | version "5.1.6" 2014 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274" 2015 | integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA== 2016 | 2017 | unbox-primitive@^1.0.1: 2018 | version "1.0.1" 2019 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" 2020 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 2021 | dependencies: 2022 | function-bind "^1.1.1" 2023 | has-bigints "^1.0.1" 2024 | has-symbols "^1.0.2" 2025 | which-boxed-primitive "^1.0.2" 2026 | 2027 | unbox-primitive@^1.0.2: 2028 | version "1.0.2" 2029 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 2030 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2031 | dependencies: 2032 | call-bind "^1.0.2" 2033 | has-bigints "^1.0.2" 2034 | has-symbols "^1.0.3" 2035 | which-boxed-primitive "^1.0.2" 2036 | 2037 | underscore-keypath@~0.0.22: 2038 | version "0.0.22" 2039 | resolved "https://registry.yarnpkg.com/underscore-keypath/-/underscore-keypath-0.0.22.tgz#48a528392bb6efc424be1caa56da4b5faccf264d" 2040 | integrity sha1-SKUoOSu278QkvhyqVtpLX6zPJk0= 2041 | dependencies: 2042 | underscore "*" 2043 | 2044 | underscore@*: 2045 | version "1.13.2" 2046 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.2.tgz#276cea1e8b9722a8dbed0100a407dda572125881" 2047 | integrity sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g== 2048 | 2049 | unfetch@^4.2.0: 2050 | version "4.2.0" 2051 | resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" 2052 | integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== 2053 | 2054 | uri-js@^4.2.2: 2055 | version "4.4.1" 2056 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2057 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2058 | dependencies: 2059 | punycode "^2.1.0" 2060 | 2061 | use-sync-external-store@1.2.0: 2062 | version "1.2.0" 2063 | resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" 2064 | integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== 2065 | 2066 | user-agents@^1.0.934: 2067 | version "1.0.944" 2068 | resolved "https://registry.yarnpkg.com/user-agents/-/user-agents-1.0.944.tgz#bd15649f85ef24bce37040f0cdc79dabcf0d148f" 2069 | integrity sha512-vltDrRUjNL9DnfZQYL1QZaRPqf95azgw1f8FB3aLZ0UE8y6uaxyejW+I0yJSWyrF5sE5kBAJbIcvfK6sceM32g== 2070 | dependencies: 2071 | dot-json "^1.2.2" 2072 | lodash.clonedeep "^4.5.0" 2073 | 2074 | webidl-conversions@^3.0.0: 2075 | version "3.0.1" 2076 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2077 | integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= 2078 | 2079 | whatwg-url@^5.0.0: 2080 | version "5.0.0" 2081 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 2082 | integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= 2083 | dependencies: 2084 | tr46 "~0.0.3" 2085 | webidl-conversions "^3.0.0" 2086 | 2087 | which-boxed-primitive@^1.0.2: 2088 | version "1.0.2" 2089 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2090 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2091 | dependencies: 2092 | is-bigint "^1.0.1" 2093 | is-boolean-object "^1.1.0" 2094 | is-number-object "^1.0.4" 2095 | is-string "^1.0.5" 2096 | is-symbol "^1.0.3" 2097 | 2098 | which-typed-array@^1.1.9: 2099 | version "1.1.9" 2100 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" 2101 | integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== 2102 | dependencies: 2103 | available-typed-arrays "^1.0.5" 2104 | call-bind "^1.0.2" 2105 | for-each "^0.3.3" 2106 | gopd "^1.0.1" 2107 | has-tostringtag "^1.0.0" 2108 | is-typed-array "^1.1.10" 2109 | 2110 | which@^2.0.1: 2111 | version "2.0.2" 2112 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2113 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2114 | dependencies: 2115 | isexe "^2.0.0" 2116 | 2117 | wrappy@1: 2118 | version "1.0.2" 2119 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2120 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2121 | 2122 | yallist@^4.0.0: 2123 | version "4.0.0" 2124 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2125 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2126 | 2127 | yocto-queue@^0.1.0: 2128 | version "0.1.0" 2129 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2130 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2131 | --------------------------------------------------------------------------------
Image proxy for Next.js. Makes it possible to use dynamic domains in next/image component.