├── .env.example ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── auth │ │ └── [...nextauth].ts └── index.tsx ├── postcss.config.js ├── renovate.json ├── screenshot.png ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── types └── next-auth.d.ts ├── utils └── withSSR.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | GOOGLE_CLIENT_ID="foobarbaz1234.apps.googleusercontent.com" 2 | GOOGLE_CLIENT_SECRET="sssh!" 3 | NEXTAUTH_SECRET="setme2something" -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "next/core-web-vitals", 4 | "eslint:recommended", 5 | "prettier", 6 | "plugin:@typescript-eslint/recommended" 7 | ], 8 | "rules": { 9 | "@typescript-eslint/no-unused-vars": [ 10 | "error" 11 | ], 12 | "@typescript-eslint/explicit-function-return-type": "off", 13 | "@typescript-eslint/explicit-module-boundary-types": "off", 14 | "@typescript-eslint/no-explicit-any": "off" 15 | } 16 | } -------------------------------------------------------------------------------- /.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 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "bracketSameLine": true, 3 | "bracketSpacing": true, 4 | "printWidth": 80, 5 | "semi": false, 6 | "singleQuote": true, 7 | "tabWidth": 2, 8 | "trailingComma": "none", 9 | "useTabs": false 10 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Tim Feeley 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nextauthjs-server-side-props-wrapper 2 | 3 | 4 | 5 | I wrote this POC to protect authenticated SSR pages with NextAuth.js 6 | at render time. 7 | 8 | I wanted to enjoy the benefits of `InferGetServerSidePropsType` as well, 9 | especially since I'm using this in an enviornmnent where `prisma` could 10 | return some gnarly objects to traverse. 11 | 12 | This little snippet shows how I went about composing my components in a 13 | reusable way that would play nicely with prop type inference. 14 | 15 | When you wrap your `getServerSideProps` function with `withAuthSsr`, 16 | you'll be able to access the `session` object inside of the `req` 17 | context of your SSR function, like so: 18 | 19 | ```ts 20 | export const getServerSideProps = withAuthSsr( 21 | async ({ req }) => { 22 | 23 | const dataForUser = await lookupByUserId(req.session.user.id) 24 | 25 | return { 26 | props: { 27 | dataForUser, 28 | ...(req.session && { session: req.session }) 29 | } 30 | } 31 | } 32 | ) 33 | ``` 34 | 35 | You can pass an optional second parameter in the form of a URL to automatically redirect unauthenticated users, for example: 36 | 37 | ```ts 38 | export const getServerSideProps = withAuthSsr( 39 | async ({ req }) => { return { props: { /* props */ }} }, 40 | '/auth/login' 41 | ) 42 | ``` 43 | 44 | I'm still learning so please feel free to submit any corrections or improvements. 45 | 46 | I hope this can help you in a project of your own! 47 | 48 | This was inspired by similar implementations from [iron-session](https://github.com/vvo/iron-session/blob/cfa5c808bbe7d6ef6b88daa603d8aca7af7ae830/next/index.ts) and [next-firebase-auth](https://github.com/gladly-team/next-firebase-auth/blob/6df19d9010dd3cf5b8f3c654c6d4a04e6878ef21/src/withAuthUserTokenSSR.js). -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | swcMinify: true 5 | } 6 | 7 | module.exports = nextConfig 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nextauthjs-server-side-props-wrapper", 3 | "version": "0.1.0", 4 | "author": { 5 | "email": "tim@timfeeley.com", 6 | "name": "Tim Feeley" 7 | }, 8 | "scripts": { 9 | "dev": "next dev", 10 | "build": "next build", 11 | "start": "next start", 12 | "lint": "next lint" 13 | }, 14 | "dependencies": { 15 | "next": "12.1.4", 16 | "next-auth": "^4.3.1", 17 | "react": "18.2.0", 18 | "react-dom": "18.2.0" 19 | }, 20 | "devDependencies": { 21 | "@types/node": "17.0.23", 22 | "@types/react": "18.0.30", 23 | "@types/tailwindcss": "3.0.10", 24 | "@typescript-eslint/eslint-plugin": "5.57.0", 25 | "@typescript-eslint/parser": "5.57.0", 26 | "autoprefixer": "10.4.14", 27 | "eslint": "8.36.0", 28 | "eslint-config-next": "12.1.4", 29 | "eslint-config-prettier": "8.8.0", 30 | "eslint-plugin-prettier": "4.0.0", 31 | "postcss": "8.4.21", 32 | "prettier": "2.8.7", 33 | "tailwindcss": "3.0.23", 34 | "typescript": "5.0.2" 35 | } 36 | } -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import '@/styles/globals.css' 2 | 3 | import { NextComponentType } from 'next' 4 | import type { AppContext, AppInitialProps, AppProps } from 'next/app' 5 | import App from 'next/app' 6 | import { getSession, SessionProvider } from 'next-auth/react' 7 | 8 | const MyApp: NextComponentType = ({ 9 | Component, 10 | pageProps 11 | }: AppProps) => { 12 | /** 13 | * The documentation at https://next-auth.js.org/getting-started/example#configure-shared-session-state 14 | * suggests pulling `session` out of the `pageProps` via the spread operator 15 | * (e.g. `pageProps: { session, ...pageProps }`), but I've found this has 16 | * the unintended side-effect of making the session object inaccessible 17 | * within the page rendering component. 18 | */ 19 | return ( 20 | 21 | 22 | 23 | ) 24 | } 25 | 26 | /** 27 | * Upon initial mount, populate the `session` page prop with 28 | * results from the server. 29 | * 30 | * This is optional; I've found that it reduces page flashes 31 | * when an auth'd user arrives for the first time, but there 32 | * may be other implications. 33 | */ 34 | MyApp.getInitialProps = async (appContext) => { 35 | const appProps = await App.getInitialProps(appContext) 36 | const session = await getSession(appContext.ctx) 37 | 38 | return { ...appProps, pageProps: { session } } 39 | } 40 | 41 | export default MyApp 42 | -------------------------------------------------------------------------------- /pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- 1 | import NextAuth from 'next-auth' 2 | import GoogleAuth from 'next-auth/providers/google' 3 | 4 | export default NextAuth({ 5 | callbacks: { 6 | /** 7 | * This is a utility function that doesn't affect any of the SSR stuff. 8 | * However, I often find that I want to perform operations using the 9 | * signed-in user's ID as part of the SSR. 10 | * 11 | * So, I've extended this function to return include an `id` property 12 | * inside of the `user` object. 13 | */ 14 | session: ({ session, token }) => { 15 | if (token && token.sub) { 16 | session.user.id = token.sub 17 | } 18 | return { ...session } 19 | } 20 | }, 21 | 22 | providers: [ 23 | GoogleAuth({ 24 | clientId: process.env.GOOGLE_CLIENT_ID || '', 25 | clientSecret: process.env.GOOGLE_CLIENT_SECRET || '' 26 | }) 27 | ] 28 | }) 29 | -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | import { InferGetServerSidePropsType, NextPage } from 'next' 2 | import { signIn, signOut } from 'next-auth/react' 3 | 4 | import { withAuthSsr } from '@/utils/withSSR' 5 | 6 | const Home: NextPage< 7 | InferGetServerSidePropsType 8 | > = ({ host }) => { 9 | return ( 10 |
11 |
{host}
12 |
13 | 23 | 33 |
34 |
35 | ) 36 | } 37 | 38 | /** 39 | * Wrap the getServerSideProps function with `withAuthSsr`, 40 | * and your the context's `req` object will get augmented 41 | * with the return value of `getSession()` for you to do 42 | * with as you please. 43 | * 44 | * Here, we're just passing the value along. 45 | */ 46 | export const getServerSideProps = withAuthSsr( 47 | async (ctx) => { 48 | return { 49 | props: { 50 | host: ctx.req.headers.host, 51 | ...(ctx.req.session && { session: ctx.req.session }) 52 | } 53 | } 54 | } 55 | /* If you provide a path as an optional second parameter, 56 | the user will be redirected to this page if unauthed. */ 57 | // '/login' 58 | ) 59 | 60 | export default Home 61 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "schedule": [ 4 | "before 3am on the first day of the month" 5 | ] 6 | "extends": [ 7 | "config:base" 8 | ], 9 | "packageRules": [ 10 | { 11 | "matchUpdateTypes": ["minor", "patch", "pin", "digest"], 12 | "automerge": true, 13 | "groupName": "all non-major dependencies", 14 | "groupSlug": "all-minor-patch" 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timfee/nextauthjs-server-side-props-wrapper/114bfbdef38b6a10daf7ac2745a1c2d715320aba/screenshot.png -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: [ 3 | './pages/**/*.{js,ts,jsx,tsx}', 4 | './components/**/*.{js,ts,jsx,tsx}' 5 | ], 6 | theme: { 7 | extend: {} 8 | }, 9 | plugins: [] 10 | } 11 | -------------------------------------------------------------------------------- /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": true, 12 | "forceConsistentCasingInFileNames": true, 13 | "noEmit": true, 14 | "esModuleInterop": true, 15 | "module": "esnext", 16 | "moduleResolution": "node", 17 | "resolveJsonModule": true, 18 | "isolatedModules": true, 19 | "jsx": "preserve", 20 | "incremental": true, 21 | "baseUrl": ".", 22 | "paths": { 23 | "@/store/*": [ 24 | "./store/*" 25 | ], 26 | "@/components/*": [ 27 | "./components/*" 28 | ], 29 | "@/pages/*": [ 30 | "./pages/*" 31 | ], 32 | "@/styles/*": [ 33 | "./styles/*" 34 | ], 35 | "@/utils/*": [ 36 | "./utils/*" 37 | ] 38 | } 39 | }, 40 | "include": [ 41 | "next-env.d.ts", 42 | "**/*.ts", 43 | "**/*.tsx" 44 | ], 45 | "exclude": [ 46 | "node_modules" 47 | ] 48 | } -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- 1 | import { DefaultSession } from 'next-auth' 2 | 3 | declare module 'next-auth' { 4 | interface Session { 5 | user: { id: string } & DefaultSession['user'] 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /utils/withSSR.ts: -------------------------------------------------------------------------------- 1 | import type { GetServerSidePropsContext, GetServerSidePropsResult } from 'next' 2 | import type { Session } from 'next-auth' 3 | import { getSession } from 'next-auth/react' 4 | 5 | export function withAuthSsr< 6 | P extends { [key: string]: unknown } = { [key: string]: unknown } 7 | >( 8 | handler: ( 9 | context: GetServerSidePropsContext & { req: { session?: Session } } 10 | ) => GetServerSidePropsResult

| Promise>, 11 | redirect?: string 12 | ) { 13 | return async function withAuthUserTokenSSR( 14 | context: GetServerSidePropsContext 15 | ) { 16 | const session = await getSession(context) 17 | 18 | if (session) { 19 | Object.defineProperty( 20 | context.req, 21 | 'session', 22 | getPropertyDescriptorForReqSession(session) 23 | ) 24 | } else if (redirect) { 25 | return { 26 | redirect: { 27 | destination: redirect, 28 | statusCode: 302 29 | } 30 | } as GetServerSidePropsResult

31 | } 32 | return handler(context) 33 | } 34 | } 35 | 36 | function getPropertyDescriptorForReqSession( 37 | session: Session 38 | ): PropertyDescriptor { 39 | return { 40 | enumerable: true, 41 | get() { 42 | return session 43 | }, 44 | set(value) { 45 | const keys = Object.keys(value) 46 | const currentKeys = Object.keys(session) 47 | 48 | currentKeys.forEach((key) => { 49 | if (!keys.includes(key)) { 50 | delete session[key] 51 | } 52 | }) 53 | 54 | keys.forEach((key) => { 55 | session[key] = value[key] 56 | }) 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.16.7" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" 8 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== 9 | dependencies: 10 | "@babel/highlight" "^7.16.7" 11 | 12 | "@babel/helper-validator-identifier@^7.16.7": 13 | version "7.16.7" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" 15 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== 16 | 17 | "@babel/highlight@^7.16.7": 18 | version "7.17.9" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.9.tgz#61b2ee7f32ea0454612def4fccdae0de232b73e3" 20 | integrity sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.16.7" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@babel/runtime-corejs3@^7.10.2": 27 | version "7.17.9" 28 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.9.tgz#3d02d0161f0fbf3ada8e88159375af97690f4055" 29 | integrity sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw== 30 | dependencies: 31 | core-js-pure "^3.20.2" 32 | regenerator-runtime "^0.13.4" 33 | 34 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3": 35 | version "7.17.9" 36 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.9.tgz#d19fbf802d01a8cb6cf053a64e472d42c434ba72" 37 | integrity sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg== 38 | dependencies: 39 | regenerator-runtime "^0.13.4" 40 | 41 | "@babel/runtime@^7.20.13": 42 | version "7.21.0" 43 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673" 44 | integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== 45 | dependencies: 46 | regenerator-runtime "^0.13.11" 47 | 48 | "@eslint-community/eslint-utils@^4.2.0": 49 | version "4.4.0" 50 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" 51 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 52 | dependencies: 53 | eslint-visitor-keys "^3.3.0" 54 | 55 | "@eslint-community/regexpp@^4.4.0": 56 | version "4.4.1" 57 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.1.tgz#087cb8d9d757bb22e9c9946c9c0c2bf8806830f1" 58 | integrity sha512-BISJ6ZE4xQsuL/FmsyRaiffpq977bMlsKfGHTQrOGFErfByxIe6iZTxPf/00Zon9b9a7iUykfQwejN3s2ZW/Bw== 59 | 60 | "@eslint/eslintrc@^2.0.1": 61 | version "2.0.1" 62 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.1.tgz#7888fe7ec8f21bc26d646dbd2c11cd776e21192d" 63 | integrity sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw== 64 | dependencies: 65 | ajv "^6.12.4" 66 | debug "^4.3.2" 67 | espree "^9.5.0" 68 | globals "^13.19.0" 69 | ignore "^5.2.0" 70 | import-fresh "^3.2.1" 71 | js-yaml "^4.1.0" 72 | minimatch "^3.1.2" 73 | strip-json-comments "^3.1.1" 74 | 75 | "@eslint/js@8.36.0": 76 | version "8.36.0" 77 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.36.0.tgz#9837f768c03a1e4a30bd304a64fb8844f0e72efe" 78 | integrity sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg== 79 | 80 | "@humanwhocodes/config-array@^0.11.8": 81 | version "0.11.8" 82 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" 83 | integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== 84 | dependencies: 85 | "@humanwhocodes/object-schema" "^1.2.1" 86 | debug "^4.1.1" 87 | minimatch "^3.0.5" 88 | 89 | "@humanwhocodes/module-importer@^1.0.1": 90 | version "1.0.1" 91 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 92 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 93 | 94 | "@humanwhocodes/object-schema@^1.2.1": 95 | version "1.2.1" 96 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 97 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 98 | 99 | "@next/env@12.1.4": 100 | version "12.1.4" 101 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.4.tgz#5af629b43075281ecd7f87938802b7cf5b67e94b" 102 | integrity sha512-7gQwotJDKnfMxxXd8xJ2vsX5AzyDxO3zou0+QOXX8/unypA6icw5+wf6A62yKZ6qQ4UZHHxS68pb6UV+wNneXg== 103 | 104 | "@next/eslint-plugin-next@12.1.4": 105 | version "12.1.4" 106 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.4.tgz#9c52637af8eecab24dac3f2e5098376f6fc2dff4" 107 | integrity sha512-BRy565KVK6Cdy8LHaHTiwctLqBu/RT84RLpESug70BDJzBlV8QBvODyx/j7wGhvYqp9kvstM05lyb6JaTkSCcQ== 108 | dependencies: 109 | glob "7.1.7" 110 | 111 | "@next/swc-android-arm-eabi@12.1.4": 112 | version "12.1.4" 113 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.4.tgz#c3dae178b7c15ad627d2e9b8dfb38caecb5c4ac7" 114 | integrity sha512-FJg/6a3s2YrUaqZ+/DJZzeZqfxbbWrynQMT1C5wlIEq9aDLXCFpPM/PiOyJh0ahxc0XPmi6uo38Poq+GJTuKWw== 115 | 116 | "@next/swc-android-arm64@12.1.4": 117 | version "12.1.4" 118 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.4.tgz#f320d60639e19ecffa1f9034829f2d95502a9a51" 119 | integrity sha512-LXraazvQQFBgxIg3Htny6G5V5he9EK7oS4jWtMdTGIikmD/OGByOv8ZjLuVLZLtVm3UIvaAiGtlQSLecxJoJDw== 120 | 121 | "@next/swc-darwin-arm64@12.1.4": 122 | version "12.1.4" 123 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.4.tgz#fd578278312613eddcf3aee26910100509941b63" 124 | integrity sha512-SSST/dBymecllZxcqTCcSTCu5o1NKk9I+xcvhn/O9nH6GWjgvGgGkNqLbCarCa0jJ1ukvlBA138FagyrmZ/4rQ== 125 | 126 | "@next/swc-darwin-x64@12.1.4": 127 | version "12.1.4" 128 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.4.tgz#ace5f80d8c8348efe194f6d7074c6213c52b3944" 129 | integrity sha512-p1lwdX0TVjaoDXQVuAkjtxVBbCL/urgxiMCBwuPDO7TikpXtSRivi+mIzBj5q7ypgICFmIAOW3TyupXeoPRAnA== 130 | 131 | "@next/swc-linux-arm-gnueabihf@12.1.4": 132 | version "12.1.4" 133 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.4.tgz#2bf2c83863635f19c71c226a2df936e001cce29c" 134 | integrity sha512-67PZlgkCn3TDxacdVft0xqDCL7Io1/C4xbAs0+oSQ0xzp6OzN2RNpuKjHJrJgKd0DsE1XZ9sCP27Qv0591yfyg== 135 | 136 | "@next/swc-linux-arm64-gnu@12.1.4": 137 | version "12.1.4" 138 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.4.tgz#d577190f641c9b4b463719dd6b8953b6ba9be8d9" 139 | integrity sha512-OnOWixhhw7aU22TQdQLYrgpgFq0oA1wGgnjAiHJ+St7MLj82KTDyM9UcymAMbGYy6nG/TFOOHdTmRMtCRNOw0g== 140 | 141 | "@next/swc-linux-arm64-musl@12.1.4": 142 | version "12.1.4" 143 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.4.tgz#e70ffe70393d8f9242deecdb282ce5a8fd588b14" 144 | integrity sha512-UoRMzPZnsAavdWtVylYxH8DNC7Uy0i6RrvNwT4PyQVdfANBn2omsUkcH5lgS2O7oaz0nAYLk1vqyZDO7+tJotA== 145 | 146 | "@next/swc-linux-x64-gnu@12.1.4": 147 | version "12.1.4" 148 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.4.tgz#91498a130387fb1961902f2bee55863f8e910cff" 149 | integrity sha512-nM+MA/frxlTLUKLJKorctdI20/ugfHRjVEEkcLp/58LGG7slNaP1E5d5dRA1yX6ISjPcQAkywas5VlGCg+uTvA== 150 | 151 | "@next/swc-linux-x64-musl@12.1.4": 152 | version "12.1.4" 153 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.4.tgz#78057b03c148c121553d41521ad38f6c732762ff" 154 | integrity sha512-GoRHxkuW4u4yKw734B9SzxJwVdyEJosaZ62P7ifOwcujTxhgBt3y76V2nNUrsSuopcKI2ZTDjaa+2wd5zyeXbA== 155 | 156 | "@next/swc-win32-arm64-msvc@12.1.4": 157 | version "12.1.4" 158 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.4.tgz#05bbaabacac23b8edf6caa99eb86b17550a09051" 159 | integrity sha512-6TQkQze0ievXwHJcVUrIULwCYVe3ccX6T0JgZ1SiMeXpHxISN7VJF/O8uSCw1JvXZYZ6ud0CJ7nfC5HXivgfPg== 160 | 161 | "@next/swc-win32-ia32-msvc@12.1.4": 162 | version "12.1.4" 163 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.4.tgz#8fd2fb48f04a2802e51fc320878bf6b411c1c866" 164 | integrity sha512-CsbX/IXuZ5VSmWCpSetG2HD6VO5FTsO39WNp2IR2Ut/uom9XtLDJAZqjQEnbUTLGHuwDKFjrIO3LkhtROXLE/g== 165 | 166 | "@next/swc-win32-x64-msvc@12.1.4": 167 | version "12.1.4" 168 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.4.tgz#a72ed44c9b1f850986a30fe36c59e01f8a79b5f3" 169 | integrity sha512-JtYuWzKXKLDMgE/xTcFtCm1MiCIRaAc5XYZfYX3n/ZWSI1SJS/GMm+Su0SAHJgRFavJh6U/p998YwO/iGTIgqQ== 170 | 171 | "@nodelib/fs.scandir@2.1.5": 172 | version "2.1.5" 173 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 174 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 175 | dependencies: 176 | "@nodelib/fs.stat" "2.0.5" 177 | run-parallel "^1.1.9" 178 | 179 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 180 | version "2.0.5" 181 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 182 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 183 | 184 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 185 | version "1.2.8" 186 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 187 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 188 | dependencies: 189 | "@nodelib/fs.scandir" "2.1.5" 190 | fastq "^1.6.0" 191 | 192 | "@panva/hkdf@^1.0.2": 193 | version "1.0.4" 194 | resolved "https://registry.yarnpkg.com/@panva/hkdf/-/hkdf-1.0.4.tgz#4e02bb248402ff6c5c024e23a68438e2b0e69d67" 195 | integrity sha512-003xWiCuvePbLaPHT+CRuaV4GlyCAVm6XYSbBZDHoWZGn1mNkVKFaDbGJjjxmEFvizUwlCoM6O18FCBMMky2zQ== 196 | 197 | "@rushstack/eslint-patch@1.0.8": 198 | version "1.0.8" 199 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.0.8.tgz#be3e914e84eacf16dbebd311c0d0b44aa1174c64" 200 | integrity sha512-ZK5v4bJwgXldAUA8r3q9YKfCwOqoHTK/ZqRjSeRXQrBXWouoPnS4MQtgC4AXGiiBuUu5wxrRgTlv0ktmM4P1Aw== 201 | 202 | "@types/json-schema@^7.0.9": 203 | version "7.0.11" 204 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" 205 | integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== 206 | 207 | "@types/json5@^0.0.29": 208 | version "0.0.29" 209 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 210 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 211 | 212 | "@types/node@17.0.23": 213 | version "17.0.23" 214 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.23.tgz#3b41a6e643589ac6442bdbd7a4a3ded62f33f7da" 215 | integrity sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw== 216 | 217 | "@types/parse-json@^4.0.0": 218 | version "4.0.0" 219 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 220 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 221 | 222 | "@types/prop-types@*": 223 | version "15.7.5" 224 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 225 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 226 | 227 | "@types/react@18.0.30": 228 | version "18.0.30" 229 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.30.tgz#83944e679fc7aeab3f042b76d63c4d755b56b7c4" 230 | integrity sha512-AnME2cHDH11Pxt/yYX6r0w448BfTwQOLEhQEjCdwB7QskEI7EKtxhGUsExTQe/MsY3D9D5rMtu62WRocw9A8FA== 231 | dependencies: 232 | "@types/prop-types" "*" 233 | "@types/scheduler" "*" 234 | csstype "^3.0.2" 235 | 236 | "@types/scheduler@*": 237 | version "0.16.2" 238 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 239 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 240 | 241 | "@types/semver@^7.3.12": 242 | version "7.3.13" 243 | resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" 244 | integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== 245 | 246 | "@types/tailwindcss@3.0.10": 247 | version "3.0.10" 248 | resolved "https://registry.yarnpkg.com/@types/tailwindcss/-/tailwindcss-3.0.10.tgz#cd54bad9c00b4823e9e33c67af585347f235aa11" 249 | integrity sha512-1UnZIHO0NOPyPlPFV0HuMjki2SHkvG9uBA1ZehWj/OQMSROk503nuNyyfmJSIT289yewxTbKoPG+KLxYRvfIIg== 250 | 251 | "@typescript-eslint/eslint-plugin@5.57.0": 252 | version "5.57.0" 253 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.57.0.tgz#52c8a7a4512f10e7249ca1e2e61f81c62c34365c" 254 | integrity sha512-itag0qpN6q2UMM6Xgk6xoHa0D0/P+M17THnr4SVgqn9Rgam5k/He33MA7/D7QoJcdMxHFyX7U9imaBonAX/6qA== 255 | dependencies: 256 | "@eslint-community/regexpp" "^4.4.0" 257 | "@typescript-eslint/scope-manager" "5.57.0" 258 | "@typescript-eslint/type-utils" "5.57.0" 259 | "@typescript-eslint/utils" "5.57.0" 260 | debug "^4.3.4" 261 | grapheme-splitter "^1.0.4" 262 | ignore "^5.2.0" 263 | natural-compare-lite "^1.4.0" 264 | semver "^7.3.7" 265 | tsutils "^3.21.0" 266 | 267 | "@typescript-eslint/parser@5.10.1": 268 | version "5.10.1" 269 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.10.1.tgz#4ce9633cc33fc70bc13786cb793c1a76fe5ad6bd" 270 | integrity sha512-GReo3tjNBwR5RnRO0K2wDIDN31cM3MmDtgyQ85oAxAmC5K3j/g85IjP+cDfcqDsDDBf1HNKQAD0WqOYL8jXqUA== 271 | dependencies: 272 | "@typescript-eslint/scope-manager" "5.10.1" 273 | "@typescript-eslint/types" "5.10.1" 274 | "@typescript-eslint/typescript-estree" "5.10.1" 275 | debug "^4.3.2" 276 | 277 | "@typescript-eslint/parser@5.57.0": 278 | version "5.57.0" 279 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.57.0.tgz#f675bf2cd1a838949fd0de5683834417b757e4fa" 280 | integrity sha512-orrduvpWYkgLCyAdNtR1QIWovcNZlEm6yL8nwH/eTxWLd8gsP+25pdLHYzL2QdkqrieaDwLpytHqycncv0woUQ== 281 | dependencies: 282 | "@typescript-eslint/scope-manager" "5.57.0" 283 | "@typescript-eslint/types" "5.57.0" 284 | "@typescript-eslint/typescript-estree" "5.57.0" 285 | debug "^4.3.4" 286 | 287 | "@typescript-eslint/scope-manager@5.10.1": 288 | version "5.10.1" 289 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.10.1.tgz#f0539c73804d2423506db2475352a4dec36cd809" 290 | integrity sha512-Lyvi559Gvpn94k7+ElXNMEnXu/iundV5uFmCUNnftbFrUbAJ1WBoaGgkbOBm07jVZa682oaBU37ao/NGGX4ZDg== 291 | dependencies: 292 | "@typescript-eslint/types" "5.10.1" 293 | "@typescript-eslint/visitor-keys" "5.10.1" 294 | 295 | "@typescript-eslint/scope-manager@5.57.0": 296 | version "5.57.0" 297 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.57.0.tgz#79ccd3fa7bde0758059172d44239e871e087ea36" 298 | integrity sha512-NANBNOQvllPlizl9LatX8+MHi7bx7WGIWYjPHDmQe5Si/0YEYfxSljJpoTyTWFTgRy3X8gLYSE4xQ2U+aCozSw== 299 | dependencies: 300 | "@typescript-eslint/types" "5.57.0" 301 | "@typescript-eslint/visitor-keys" "5.57.0" 302 | 303 | "@typescript-eslint/type-utils@5.57.0": 304 | version "5.57.0" 305 | resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.57.0.tgz#98e7531c4e927855d45bd362de922a619b4319f2" 306 | integrity sha512-kxXoq9zOTbvqzLbdNKy1yFrxLC6GDJFE2Yuo3KqSwTmDOFjUGeWSakgoXT864WcK5/NAJkkONCiKb1ddsqhLXQ== 307 | dependencies: 308 | "@typescript-eslint/typescript-estree" "5.57.0" 309 | "@typescript-eslint/utils" "5.57.0" 310 | debug "^4.3.4" 311 | tsutils "^3.21.0" 312 | 313 | "@typescript-eslint/types@5.10.1": 314 | version "5.10.1" 315 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.10.1.tgz#dca9bd4cb8c067fc85304a31f38ec4766ba2d1ea" 316 | integrity sha512-ZvxQ2QMy49bIIBpTqFiOenucqUyjTQ0WNLhBM6X1fh1NNlYAC6Kxsx8bRTY3jdYsYg44a0Z/uEgQkohbR0H87Q== 317 | 318 | "@typescript-eslint/types@5.57.0": 319 | version "5.57.0" 320 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.57.0.tgz#727bfa2b64c73a4376264379cf1f447998eaa132" 321 | integrity sha512-mxsod+aZRSyLT+jiqHw1KK6xrANm19/+VFALVFP5qa/aiJnlP38qpyaTd0fEKhWvQk6YeNZ5LGwI1pDpBRBhtQ== 322 | 323 | "@typescript-eslint/typescript-estree@5.10.1": 324 | version "5.10.1" 325 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.1.tgz#b268e67be0553f8790ba3fe87113282977adda15" 326 | integrity sha512-PwIGnH7jIueXv4opcwEbVGDATjGPO1dx9RkUl5LlHDSe+FXxPwFL5W/qYd5/NHr7f6lo/vvTrAzd0KlQtRusJQ== 327 | dependencies: 328 | "@typescript-eslint/types" "5.10.1" 329 | "@typescript-eslint/visitor-keys" "5.10.1" 330 | debug "^4.3.2" 331 | globby "^11.0.4" 332 | is-glob "^4.0.3" 333 | semver "^7.3.5" 334 | tsutils "^3.21.0" 335 | 336 | "@typescript-eslint/typescript-estree@5.57.0": 337 | version "5.57.0" 338 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.57.0.tgz#ebcd0ee3e1d6230e888d88cddf654252d41e2e40" 339 | integrity sha512-LTzQ23TV82KpO8HPnWuxM2V7ieXW8O142I7hQTxWIHDcCEIjtkat6H96PFkYBQqGFLW/G/eVVOB9Z8rcvdY/Vw== 340 | dependencies: 341 | "@typescript-eslint/types" "5.57.0" 342 | "@typescript-eslint/visitor-keys" "5.57.0" 343 | debug "^4.3.4" 344 | globby "^11.1.0" 345 | is-glob "^4.0.3" 346 | semver "^7.3.7" 347 | tsutils "^3.21.0" 348 | 349 | "@typescript-eslint/utils@5.57.0": 350 | version "5.57.0" 351 | resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.57.0.tgz#eab8f6563a2ac31f60f3e7024b91bf75f43ecef6" 352 | integrity sha512-ps/4WohXV7C+LTSgAL5CApxvxbMkl9B9AUZRtnEFonpIxZDIT7wC1xfvuJONMidrkB9scs4zhtRyIwHh4+18kw== 353 | dependencies: 354 | "@eslint-community/eslint-utils" "^4.2.0" 355 | "@types/json-schema" "^7.0.9" 356 | "@types/semver" "^7.3.12" 357 | "@typescript-eslint/scope-manager" "5.57.0" 358 | "@typescript-eslint/types" "5.57.0" 359 | "@typescript-eslint/typescript-estree" "5.57.0" 360 | eslint-scope "^5.1.1" 361 | semver "^7.3.7" 362 | 363 | "@typescript-eslint/visitor-keys@5.10.1": 364 | version "5.10.1" 365 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.1.tgz#29102de692f59d7d34ecc457ed59ab5fc558010b" 366 | integrity sha512-NjQ0Xinhy9IL979tpoTRuLKxMc0zJC7QVSdeerXs2/QvOy2yRkzX5dRb10X5woNUdJgU8G3nYRDlI33sq1K4YQ== 367 | dependencies: 368 | "@typescript-eslint/types" "5.10.1" 369 | eslint-visitor-keys "^3.0.0" 370 | 371 | "@typescript-eslint/visitor-keys@5.57.0": 372 | version "5.57.0" 373 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.57.0.tgz#e2b2f4174aff1d15eef887ce3d019ecc2d7a8ac1" 374 | integrity sha512-ery2g3k0hv5BLiKpPuwYt9KBkAp2ugT6VvyShXdLOkax895EC55sP0Tx5L0fZaQueiK3fBLvHVvEl3jFS5ia+g== 375 | dependencies: 376 | "@typescript-eslint/types" "5.57.0" 377 | eslint-visitor-keys "^3.3.0" 378 | 379 | acorn-jsx@^5.3.2: 380 | version "5.3.2" 381 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 382 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 383 | 384 | acorn-node@^1.6.1: 385 | version "1.8.2" 386 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 387 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 388 | dependencies: 389 | acorn "^7.0.0" 390 | acorn-walk "^7.0.0" 391 | xtend "^4.0.2" 392 | 393 | acorn-walk@^7.0.0: 394 | version "7.2.0" 395 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 396 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 397 | 398 | acorn@^7.0.0: 399 | version "7.4.1" 400 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 401 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 402 | 403 | acorn@^8.8.0: 404 | version "8.8.2" 405 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" 406 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== 407 | 408 | ajv@^6.10.0, ajv@^6.12.4: 409 | version "6.12.6" 410 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 411 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 412 | dependencies: 413 | fast-deep-equal "^3.1.1" 414 | fast-json-stable-stringify "^2.0.0" 415 | json-schema-traverse "^0.4.1" 416 | uri-js "^4.2.2" 417 | 418 | ansi-regex@^5.0.1: 419 | version "5.0.1" 420 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 421 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 422 | 423 | ansi-styles@^3.2.1: 424 | version "3.2.1" 425 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 426 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 427 | dependencies: 428 | color-convert "^1.9.0" 429 | 430 | ansi-styles@^4.1.0: 431 | version "4.3.0" 432 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 433 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 434 | dependencies: 435 | color-convert "^2.0.1" 436 | 437 | anymatch@~3.1.2: 438 | version "3.1.2" 439 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 440 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 441 | dependencies: 442 | normalize-path "^3.0.0" 443 | picomatch "^2.0.4" 444 | 445 | arg@^5.0.1: 446 | version "5.0.1" 447 | resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.1.tgz#eb0c9a8f77786cad2af8ff2b862899842d7b6adb" 448 | integrity sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA== 449 | 450 | argparse@^2.0.1: 451 | version "2.0.1" 452 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 453 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 454 | 455 | aria-query@^4.2.2: 456 | version "4.2.2" 457 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 458 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 459 | dependencies: 460 | "@babel/runtime" "^7.10.2" 461 | "@babel/runtime-corejs3" "^7.10.2" 462 | 463 | array-includes@^3.1.4: 464 | version "3.1.4" 465 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9" 466 | integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw== 467 | dependencies: 468 | call-bind "^1.0.2" 469 | define-properties "^1.1.3" 470 | es-abstract "^1.19.1" 471 | get-intrinsic "^1.1.1" 472 | is-string "^1.0.7" 473 | 474 | array-union@^2.1.0: 475 | version "2.1.0" 476 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 477 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 478 | 479 | array.prototype.flat@^1.2.5: 480 | version "1.2.5" 481 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13" 482 | integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg== 483 | dependencies: 484 | call-bind "^1.0.2" 485 | define-properties "^1.1.3" 486 | es-abstract "^1.19.0" 487 | 488 | array.prototype.flatmap@^1.2.5: 489 | version "1.2.5" 490 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446" 491 | integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA== 492 | dependencies: 493 | call-bind "^1.0.0" 494 | define-properties "^1.1.3" 495 | es-abstract "^1.19.0" 496 | 497 | ast-types-flow@^0.0.7: 498 | version "0.0.7" 499 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 500 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= 501 | 502 | autoprefixer@10.4.14: 503 | version "10.4.14" 504 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d" 505 | integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== 506 | dependencies: 507 | browserslist "^4.21.5" 508 | caniuse-lite "^1.0.30001464" 509 | fraction.js "^4.2.0" 510 | normalize-range "^0.1.2" 511 | picocolors "^1.0.0" 512 | postcss-value-parser "^4.2.0" 513 | 514 | axe-core@^4.3.5: 515 | version "4.4.1" 516 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413" 517 | integrity sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw== 518 | 519 | axobject-query@^2.2.0: 520 | version "2.2.0" 521 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 522 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 523 | 524 | balanced-match@^1.0.0: 525 | version "1.0.2" 526 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 527 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 528 | 529 | binary-extensions@^2.0.0: 530 | version "2.2.0" 531 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 532 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 533 | 534 | brace-expansion@^1.1.7: 535 | version "1.1.11" 536 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 537 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 538 | dependencies: 539 | balanced-match "^1.0.0" 540 | concat-map "0.0.1" 541 | 542 | braces@^3.0.2, braces@~3.0.2: 543 | version "3.0.2" 544 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 545 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 546 | dependencies: 547 | fill-range "^7.0.1" 548 | 549 | browserslist@^4.21.5: 550 | version "4.21.5" 551 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" 552 | integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== 553 | dependencies: 554 | caniuse-lite "^1.0.30001449" 555 | electron-to-chromium "^1.4.284" 556 | node-releases "^2.0.8" 557 | update-browserslist-db "^1.0.10" 558 | 559 | call-bind@^1.0.0, call-bind@^1.0.2: 560 | version "1.0.2" 561 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 562 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 563 | dependencies: 564 | function-bind "^1.1.1" 565 | get-intrinsic "^1.0.2" 566 | 567 | callsites@^3.0.0: 568 | version "3.1.0" 569 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 570 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 571 | 572 | camelcase-css@^2.0.1: 573 | version "2.0.1" 574 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 575 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 576 | 577 | caniuse-lite@^1.0.30001283: 578 | version "1.0.30001325" 579 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001325.tgz#2b4ad19b77aa36f61f2eaf72e636d7481d55e606" 580 | integrity sha512-sB1bZHjseSjDtijV1Hb7PB2Zd58Kyx+n/9EotvZ4Qcz2K3d0lWB8dB4nb8wN/TsOGFq3UuAm0zQZNQ4SoR7TrQ== 581 | 582 | caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001464: 583 | version "1.0.30001470" 584 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001470.tgz#09c8e87c711f75ff5d39804db2613dd593feeb10" 585 | integrity sha512-065uNwY6QtHCBOExzbV6m236DDhYCCtPmQUCoQtwkVqzud8v5QPidoMr6CoMkC2nfp6nksjttqWQRRh75LqUmA== 586 | 587 | chalk@^2.0.0: 588 | version "2.4.2" 589 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 590 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 591 | dependencies: 592 | ansi-styles "^3.2.1" 593 | escape-string-regexp "^1.0.5" 594 | supports-color "^5.3.0" 595 | 596 | chalk@^4.0.0, chalk@^4.1.2: 597 | version "4.1.2" 598 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 599 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 600 | dependencies: 601 | ansi-styles "^4.1.0" 602 | supports-color "^7.1.0" 603 | 604 | chokidar@^3.5.3: 605 | version "3.5.3" 606 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 607 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 608 | dependencies: 609 | anymatch "~3.1.2" 610 | braces "~3.0.2" 611 | glob-parent "~5.1.2" 612 | is-binary-path "~2.1.0" 613 | is-glob "~4.0.1" 614 | normalize-path "~3.0.0" 615 | readdirp "~3.6.0" 616 | optionalDependencies: 617 | fsevents "~2.3.2" 618 | 619 | color-convert@^1.9.0: 620 | version "1.9.3" 621 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 622 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 623 | dependencies: 624 | color-name "1.1.3" 625 | 626 | color-convert@^2.0.1: 627 | version "2.0.1" 628 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 629 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 630 | dependencies: 631 | color-name "~1.1.4" 632 | 633 | color-name@1.1.3: 634 | version "1.1.3" 635 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 636 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 637 | 638 | color-name@^1.1.4, color-name@~1.1.4: 639 | version "1.1.4" 640 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 641 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 642 | 643 | concat-map@0.0.1: 644 | version "0.0.1" 645 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 646 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 647 | 648 | cookie@^0.5.0: 649 | version "0.5.0" 650 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" 651 | integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== 652 | 653 | core-js-pure@^3.20.2: 654 | version "3.21.1" 655 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.21.1.tgz#8c4d1e78839f5f46208de7230cebfb72bc3bdb51" 656 | integrity sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ== 657 | 658 | cosmiconfig@^7.0.1: 659 | version "7.0.1" 660 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" 661 | integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== 662 | dependencies: 663 | "@types/parse-json" "^4.0.0" 664 | import-fresh "^3.2.1" 665 | parse-json "^5.0.0" 666 | path-type "^4.0.0" 667 | yaml "^1.10.0" 668 | 669 | cross-spawn@^7.0.2: 670 | version "7.0.3" 671 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 672 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 673 | dependencies: 674 | path-key "^3.1.0" 675 | shebang-command "^2.0.0" 676 | which "^2.0.1" 677 | 678 | cssesc@^3.0.0: 679 | version "3.0.0" 680 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 681 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 682 | 683 | csstype@^3.0.2: 684 | version "3.0.11" 685 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.11.tgz#d66700c5eacfac1940deb4e3ee5642792d85cd33" 686 | integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw== 687 | 688 | damerau-levenshtein@^1.0.7: 689 | version "1.0.8" 690 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 691 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 692 | 693 | debug@^2.6.9: 694 | version "2.6.9" 695 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 696 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 697 | dependencies: 698 | ms "2.0.0" 699 | 700 | debug@^3.2.7: 701 | version "3.2.7" 702 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 703 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 704 | dependencies: 705 | ms "^2.1.1" 706 | 707 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 708 | version "4.3.4" 709 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 710 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 711 | dependencies: 712 | ms "2.1.2" 713 | 714 | deep-is@^0.1.3: 715 | version "0.1.4" 716 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 717 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 718 | 719 | define-properties@^1.1.3: 720 | version "1.1.3" 721 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 722 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 723 | dependencies: 724 | object-keys "^1.0.12" 725 | 726 | defined@^1.0.0: 727 | version "1.0.0" 728 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 729 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 730 | 731 | detective@^5.2.0: 732 | version "5.2.0" 733 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" 734 | integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== 735 | dependencies: 736 | acorn-node "^1.6.1" 737 | defined "^1.0.0" 738 | minimist "^1.1.1" 739 | 740 | didyoumean@^1.2.2: 741 | version "1.2.2" 742 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" 743 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== 744 | 745 | dir-glob@^3.0.1: 746 | version "3.0.1" 747 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 748 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 749 | dependencies: 750 | path-type "^4.0.0" 751 | 752 | dlv@^1.1.3: 753 | version "1.1.3" 754 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" 755 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== 756 | 757 | doctrine@^2.1.0: 758 | version "2.1.0" 759 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 760 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 761 | dependencies: 762 | esutils "^2.0.2" 763 | 764 | doctrine@^3.0.0: 765 | version "3.0.0" 766 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 767 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 768 | dependencies: 769 | esutils "^2.0.2" 770 | 771 | electron-to-chromium@^1.4.284: 772 | version "1.4.340" 773 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.340.tgz#3a6d7414c1fc2dbf84b6f7af3ec24270606c85b8" 774 | integrity sha512-zx8hqumOqltKsv/MF50yvdAlPF9S/4PXbyfzJS6ZGhbddGkRegdwImmfSVqCkEziYzrIGZ/TlrzBND4FysfkDg== 775 | 776 | emoji-regex@^9.2.2: 777 | version "9.2.2" 778 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 779 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 780 | 781 | error-ex@^1.3.1: 782 | version "1.3.2" 783 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 784 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 785 | dependencies: 786 | is-arrayish "^0.2.1" 787 | 788 | es-abstract@^1.19.0, es-abstract@^1.19.1: 789 | version "1.19.2" 790 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.2.tgz#8f7b696d8f15b167ae3640b4060670f3d054143f" 791 | integrity sha512-gfSBJoZdlL2xRiOCy0g8gLMryhoe1TlimjzU99L/31Z8QEGIhVQI+EWwt5lT+AuU9SnorVupXFqqOGqGfsyO6w== 792 | dependencies: 793 | call-bind "^1.0.2" 794 | es-to-primitive "^1.2.1" 795 | function-bind "^1.1.1" 796 | get-intrinsic "^1.1.1" 797 | get-symbol-description "^1.0.0" 798 | has "^1.0.3" 799 | has-symbols "^1.0.3" 800 | internal-slot "^1.0.3" 801 | is-callable "^1.2.4" 802 | is-negative-zero "^2.0.2" 803 | is-regex "^1.1.4" 804 | is-shared-array-buffer "^1.0.1" 805 | is-string "^1.0.7" 806 | is-weakref "^1.0.2" 807 | object-inspect "^1.12.0" 808 | object-keys "^1.1.1" 809 | object.assign "^4.1.2" 810 | string.prototype.trimend "^1.0.4" 811 | string.prototype.trimstart "^1.0.4" 812 | unbox-primitive "^1.0.1" 813 | 814 | es-to-primitive@^1.2.1: 815 | version "1.2.1" 816 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 817 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 818 | dependencies: 819 | is-callable "^1.1.4" 820 | is-date-object "^1.0.1" 821 | is-symbol "^1.0.2" 822 | 823 | escalade@^3.1.1: 824 | version "3.1.1" 825 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 826 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 827 | 828 | escape-string-regexp@^1.0.5: 829 | version "1.0.5" 830 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 831 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 832 | 833 | escape-string-regexp@^4.0.0: 834 | version "4.0.0" 835 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 836 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 837 | 838 | eslint-config-next@12.1.4: 839 | version "12.1.4" 840 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.4.tgz#939ea2ff33034763300bf1e62482cea91212d274" 841 | integrity sha512-Uj0jrVjoQbg9qerxRjSHoOOv3PEzoZxpb8G9LYct25fsflP8xIiUq0l4WEu2KSB5owuLv5hie7wSMqPEsHj+bQ== 842 | dependencies: 843 | "@next/eslint-plugin-next" "12.1.4" 844 | "@rushstack/eslint-patch" "1.0.8" 845 | "@typescript-eslint/parser" "5.10.1" 846 | eslint-import-resolver-node "0.3.4" 847 | eslint-import-resolver-typescript "2.4.0" 848 | eslint-plugin-import "2.25.2" 849 | eslint-plugin-jsx-a11y "6.5.1" 850 | eslint-plugin-react "7.29.1" 851 | eslint-plugin-react-hooks "4.3.0" 852 | 853 | eslint-config-prettier@8.8.0: 854 | version "8.8.0" 855 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348" 856 | integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA== 857 | 858 | eslint-import-resolver-node@0.3.4: 859 | version "0.3.4" 860 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" 861 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== 862 | dependencies: 863 | debug "^2.6.9" 864 | resolve "^1.13.1" 865 | 866 | eslint-import-resolver-node@^0.3.6: 867 | version "0.3.6" 868 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" 869 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== 870 | dependencies: 871 | debug "^3.2.7" 872 | resolve "^1.20.0" 873 | 874 | eslint-import-resolver-typescript@2.4.0: 875 | version "2.4.0" 876 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.4.0.tgz#ec1e7063ebe807f0362a7320543aaed6fe1100e1" 877 | integrity sha512-useJKURidCcldRLCNKWemr1fFQL1SzB3G4a0li6lFGvlc5xGe1hY343bvG07cbpCzPuM/lK19FIJB3XGFSkplA== 878 | dependencies: 879 | debug "^4.1.1" 880 | glob "^7.1.6" 881 | is-glob "^4.0.1" 882 | resolve "^1.17.0" 883 | tsconfig-paths "^3.9.0" 884 | 885 | eslint-module-utils@^2.7.0: 886 | version "2.7.3" 887 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee" 888 | integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ== 889 | dependencies: 890 | debug "^3.2.7" 891 | find-up "^2.1.0" 892 | 893 | eslint-plugin-import@2.25.2: 894 | version "2.25.2" 895 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.2.tgz#b3b9160efddb702fc1636659e71ba1d10adbe9e9" 896 | integrity sha512-qCwQr9TYfoBHOFcVGKY9C9unq05uOxxdklmBXLVvcwo68y5Hta6/GzCZEMx2zQiu0woKNEER0LE7ZgaOfBU14g== 897 | dependencies: 898 | array-includes "^3.1.4" 899 | array.prototype.flat "^1.2.5" 900 | debug "^2.6.9" 901 | doctrine "^2.1.0" 902 | eslint-import-resolver-node "^0.3.6" 903 | eslint-module-utils "^2.7.0" 904 | has "^1.0.3" 905 | is-core-module "^2.7.0" 906 | is-glob "^4.0.3" 907 | minimatch "^3.0.4" 908 | object.values "^1.1.5" 909 | resolve "^1.20.0" 910 | tsconfig-paths "^3.11.0" 911 | 912 | eslint-plugin-jsx-a11y@6.5.1: 913 | version "6.5.1" 914 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8" 915 | integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g== 916 | dependencies: 917 | "@babel/runtime" "^7.16.3" 918 | aria-query "^4.2.2" 919 | array-includes "^3.1.4" 920 | ast-types-flow "^0.0.7" 921 | axe-core "^4.3.5" 922 | axobject-query "^2.2.0" 923 | damerau-levenshtein "^1.0.7" 924 | emoji-regex "^9.2.2" 925 | has "^1.0.3" 926 | jsx-ast-utils "^3.2.1" 927 | language-tags "^1.0.5" 928 | minimatch "^3.0.4" 929 | 930 | eslint-plugin-prettier@4.0.0: 931 | version "4.0.0" 932 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz#8b99d1e4b8b24a762472b4567992023619cb98e0" 933 | integrity sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ== 934 | dependencies: 935 | prettier-linter-helpers "^1.0.0" 936 | 937 | eslint-plugin-react-hooks@4.3.0: 938 | version "4.3.0" 939 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172" 940 | integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA== 941 | 942 | eslint-plugin-react@7.29.1: 943 | version "7.29.1" 944 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.29.1.tgz#6c40bc83142bb63d132a1b3565e2ea655411f800" 945 | integrity sha512-WtzRpHMhsOX05ZrkyaaqmLl2uXGqmYooCfBxftJKlkYdsltiufGgfU7uuoHwR2lBam2Kh/EIVID4aU9e3kbCMA== 946 | dependencies: 947 | array-includes "^3.1.4" 948 | array.prototype.flatmap "^1.2.5" 949 | doctrine "^2.1.0" 950 | estraverse "^5.3.0" 951 | jsx-ast-utils "^2.4.1 || ^3.0.0" 952 | minimatch "^3.1.2" 953 | object.entries "^1.1.5" 954 | object.fromentries "^2.0.5" 955 | object.hasown "^1.1.0" 956 | object.values "^1.1.5" 957 | prop-types "^15.8.1" 958 | resolve "^2.0.0-next.3" 959 | semver "^6.3.0" 960 | string.prototype.matchall "^4.0.6" 961 | 962 | eslint-scope@^5.1.1: 963 | version "5.1.1" 964 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 965 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 966 | dependencies: 967 | esrecurse "^4.3.0" 968 | estraverse "^4.1.1" 969 | 970 | eslint-scope@^7.1.1: 971 | version "7.1.1" 972 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 973 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 974 | dependencies: 975 | esrecurse "^4.3.0" 976 | estraverse "^5.2.0" 977 | 978 | eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0: 979 | version "3.3.0" 980 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 981 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 982 | 983 | eslint@8.36.0: 984 | version "8.36.0" 985 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.36.0.tgz#1bd72202200a5492f91803b113fb8a83b11285cf" 986 | integrity sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw== 987 | dependencies: 988 | "@eslint-community/eslint-utils" "^4.2.0" 989 | "@eslint-community/regexpp" "^4.4.0" 990 | "@eslint/eslintrc" "^2.0.1" 991 | "@eslint/js" "8.36.0" 992 | "@humanwhocodes/config-array" "^0.11.8" 993 | "@humanwhocodes/module-importer" "^1.0.1" 994 | "@nodelib/fs.walk" "^1.2.8" 995 | ajv "^6.10.0" 996 | chalk "^4.0.0" 997 | cross-spawn "^7.0.2" 998 | debug "^4.3.2" 999 | doctrine "^3.0.0" 1000 | escape-string-regexp "^4.0.0" 1001 | eslint-scope "^7.1.1" 1002 | eslint-visitor-keys "^3.3.0" 1003 | espree "^9.5.0" 1004 | esquery "^1.4.2" 1005 | esutils "^2.0.2" 1006 | fast-deep-equal "^3.1.3" 1007 | file-entry-cache "^6.0.1" 1008 | find-up "^5.0.0" 1009 | glob-parent "^6.0.2" 1010 | globals "^13.19.0" 1011 | grapheme-splitter "^1.0.4" 1012 | ignore "^5.2.0" 1013 | import-fresh "^3.0.0" 1014 | imurmurhash "^0.1.4" 1015 | is-glob "^4.0.0" 1016 | is-path-inside "^3.0.3" 1017 | js-sdsl "^4.1.4" 1018 | js-yaml "^4.1.0" 1019 | json-stable-stringify-without-jsonify "^1.0.1" 1020 | levn "^0.4.1" 1021 | lodash.merge "^4.6.2" 1022 | minimatch "^3.1.2" 1023 | natural-compare "^1.4.0" 1024 | optionator "^0.9.1" 1025 | strip-ansi "^6.0.1" 1026 | strip-json-comments "^3.1.0" 1027 | text-table "^0.2.0" 1028 | 1029 | espree@^9.5.0: 1030 | version "9.5.0" 1031 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.0.tgz#3646d4e3f58907464edba852fa047e6a27bdf113" 1032 | integrity sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw== 1033 | dependencies: 1034 | acorn "^8.8.0" 1035 | acorn-jsx "^5.3.2" 1036 | eslint-visitor-keys "^3.3.0" 1037 | 1038 | esquery@^1.4.2: 1039 | version "1.5.0" 1040 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" 1041 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 1042 | dependencies: 1043 | estraverse "^5.1.0" 1044 | 1045 | esrecurse@^4.3.0: 1046 | version "4.3.0" 1047 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1048 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1049 | dependencies: 1050 | estraverse "^5.2.0" 1051 | 1052 | estraverse@^4.1.1: 1053 | version "4.3.0" 1054 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1055 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1056 | 1057 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 1058 | version "5.3.0" 1059 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1060 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1061 | 1062 | esutils@^2.0.2: 1063 | version "2.0.3" 1064 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1065 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1066 | 1067 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1068 | version "3.1.3" 1069 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1070 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1071 | 1072 | fast-diff@^1.1.2: 1073 | version "1.2.0" 1074 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 1075 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 1076 | 1077 | fast-glob@^3.2.11, fast-glob@^3.2.9: 1078 | version "3.2.11" 1079 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" 1080 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== 1081 | dependencies: 1082 | "@nodelib/fs.stat" "^2.0.2" 1083 | "@nodelib/fs.walk" "^1.2.3" 1084 | glob-parent "^5.1.2" 1085 | merge2 "^1.3.0" 1086 | micromatch "^4.0.4" 1087 | 1088 | fast-json-stable-stringify@^2.0.0: 1089 | version "2.1.0" 1090 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1091 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1092 | 1093 | fast-levenshtein@^2.0.6: 1094 | version "2.0.6" 1095 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1096 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1097 | 1098 | fastq@^1.6.0: 1099 | version "1.13.0" 1100 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 1101 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 1102 | dependencies: 1103 | reusify "^1.0.4" 1104 | 1105 | file-entry-cache@^6.0.1: 1106 | version "6.0.1" 1107 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 1108 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1109 | dependencies: 1110 | flat-cache "^3.0.4" 1111 | 1112 | fill-range@^7.0.1: 1113 | version "7.0.1" 1114 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1115 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1116 | dependencies: 1117 | to-regex-range "^5.0.1" 1118 | 1119 | find-up@^2.1.0: 1120 | version "2.1.0" 1121 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1122 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 1123 | dependencies: 1124 | locate-path "^2.0.0" 1125 | 1126 | find-up@^5.0.0: 1127 | version "5.0.0" 1128 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1129 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1130 | dependencies: 1131 | locate-path "^6.0.0" 1132 | path-exists "^4.0.0" 1133 | 1134 | flat-cache@^3.0.4: 1135 | version "3.0.4" 1136 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 1137 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 1138 | dependencies: 1139 | flatted "^3.1.0" 1140 | rimraf "^3.0.2" 1141 | 1142 | flatted@^3.1.0: 1143 | version "3.2.5" 1144 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" 1145 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== 1146 | 1147 | fraction.js@^4.2.0: 1148 | version "4.2.0" 1149 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" 1150 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== 1151 | 1152 | fs.realpath@^1.0.0: 1153 | version "1.0.0" 1154 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1155 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1156 | 1157 | fsevents@~2.3.2: 1158 | version "2.3.2" 1159 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1160 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1161 | 1162 | function-bind@^1.1.1: 1163 | version "1.1.1" 1164 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1165 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1166 | 1167 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 1168 | version "1.1.1" 1169 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 1170 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 1171 | dependencies: 1172 | function-bind "^1.1.1" 1173 | has "^1.0.3" 1174 | has-symbols "^1.0.1" 1175 | 1176 | get-symbol-description@^1.0.0: 1177 | version "1.0.0" 1178 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1179 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1180 | dependencies: 1181 | call-bind "^1.0.2" 1182 | get-intrinsic "^1.1.1" 1183 | 1184 | glob-parent@^5.1.2, glob-parent@~5.1.2: 1185 | version "5.1.2" 1186 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1187 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1188 | dependencies: 1189 | is-glob "^4.0.1" 1190 | 1191 | glob-parent@^6.0.2: 1192 | version "6.0.2" 1193 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1194 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1195 | dependencies: 1196 | is-glob "^4.0.3" 1197 | 1198 | glob@7.1.7: 1199 | version "7.1.7" 1200 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 1201 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1202 | dependencies: 1203 | fs.realpath "^1.0.0" 1204 | inflight "^1.0.4" 1205 | inherits "2" 1206 | minimatch "^3.0.4" 1207 | once "^1.3.0" 1208 | path-is-absolute "^1.0.0" 1209 | 1210 | glob@^7.1.3, glob@^7.1.6: 1211 | version "7.2.0" 1212 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1213 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1214 | dependencies: 1215 | fs.realpath "^1.0.0" 1216 | inflight "^1.0.4" 1217 | inherits "2" 1218 | minimatch "^3.0.4" 1219 | once "^1.3.0" 1220 | path-is-absolute "^1.0.0" 1221 | 1222 | globals@^13.19.0: 1223 | version "13.20.0" 1224 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" 1225 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 1226 | dependencies: 1227 | type-fest "^0.20.2" 1228 | 1229 | globby@^11.0.4, globby@^11.1.0: 1230 | version "11.1.0" 1231 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1232 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1233 | dependencies: 1234 | array-union "^2.1.0" 1235 | dir-glob "^3.0.1" 1236 | fast-glob "^3.2.9" 1237 | ignore "^5.2.0" 1238 | merge2 "^1.4.1" 1239 | slash "^3.0.0" 1240 | 1241 | grapheme-splitter@^1.0.4: 1242 | version "1.0.4" 1243 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1244 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1245 | 1246 | has-bigints@^1.0.1: 1247 | version "1.0.1" 1248 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 1249 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 1250 | 1251 | has-flag@^3.0.0: 1252 | version "3.0.0" 1253 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1254 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1255 | 1256 | has-flag@^4.0.0: 1257 | version "4.0.0" 1258 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1259 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1260 | 1261 | has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: 1262 | version "1.0.3" 1263 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1264 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1265 | 1266 | has-tostringtag@^1.0.0: 1267 | version "1.0.0" 1268 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1269 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1270 | dependencies: 1271 | has-symbols "^1.0.2" 1272 | 1273 | has@^1.0.3: 1274 | version "1.0.3" 1275 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1276 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1277 | dependencies: 1278 | function-bind "^1.1.1" 1279 | 1280 | ignore@^5.2.0: 1281 | version "5.2.0" 1282 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 1283 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 1284 | 1285 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1286 | version "3.3.0" 1287 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1288 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1289 | dependencies: 1290 | parent-module "^1.0.0" 1291 | resolve-from "^4.0.0" 1292 | 1293 | imurmurhash@^0.1.4: 1294 | version "0.1.4" 1295 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1296 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1297 | 1298 | inflight@^1.0.4: 1299 | version "1.0.6" 1300 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1301 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1302 | dependencies: 1303 | once "^1.3.0" 1304 | wrappy "1" 1305 | 1306 | inherits@2: 1307 | version "2.0.4" 1308 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1309 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1310 | 1311 | internal-slot@^1.0.3: 1312 | version "1.0.3" 1313 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1314 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1315 | dependencies: 1316 | get-intrinsic "^1.1.0" 1317 | has "^1.0.3" 1318 | side-channel "^1.0.4" 1319 | 1320 | is-arrayish@^0.2.1: 1321 | version "0.2.1" 1322 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1323 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1324 | 1325 | is-bigint@^1.0.1: 1326 | version "1.0.4" 1327 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1328 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1329 | dependencies: 1330 | has-bigints "^1.0.1" 1331 | 1332 | is-binary-path@~2.1.0: 1333 | version "2.1.0" 1334 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1335 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1336 | dependencies: 1337 | binary-extensions "^2.0.0" 1338 | 1339 | is-boolean-object@^1.1.0: 1340 | version "1.1.2" 1341 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1342 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1343 | dependencies: 1344 | call-bind "^1.0.2" 1345 | has-tostringtag "^1.0.0" 1346 | 1347 | is-callable@^1.1.4, is-callable@^1.2.4: 1348 | version "1.2.4" 1349 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" 1350 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 1351 | 1352 | is-core-module@^2.2.0, is-core-module@^2.7.0, is-core-module@^2.8.1: 1353 | version "2.8.1" 1354 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" 1355 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== 1356 | dependencies: 1357 | has "^1.0.3" 1358 | 1359 | is-date-object@^1.0.1: 1360 | version "1.0.5" 1361 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1362 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1363 | dependencies: 1364 | has-tostringtag "^1.0.0" 1365 | 1366 | is-extglob@^2.1.1: 1367 | version "2.1.1" 1368 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1369 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1370 | 1371 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 1372 | version "4.0.3" 1373 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1374 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1375 | dependencies: 1376 | is-extglob "^2.1.1" 1377 | 1378 | is-negative-zero@^2.0.2: 1379 | version "2.0.2" 1380 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1381 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1382 | 1383 | is-number-object@^1.0.4: 1384 | version "1.0.7" 1385 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1386 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1387 | dependencies: 1388 | has-tostringtag "^1.0.0" 1389 | 1390 | is-number@^7.0.0: 1391 | version "7.0.0" 1392 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1393 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1394 | 1395 | is-path-inside@^3.0.3: 1396 | version "3.0.3" 1397 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1398 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1399 | 1400 | is-regex@^1.1.4: 1401 | version "1.1.4" 1402 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1403 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1404 | dependencies: 1405 | call-bind "^1.0.2" 1406 | has-tostringtag "^1.0.0" 1407 | 1408 | is-shared-array-buffer@^1.0.1: 1409 | version "1.0.2" 1410 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1411 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1412 | dependencies: 1413 | call-bind "^1.0.2" 1414 | 1415 | is-string@^1.0.5, is-string@^1.0.7: 1416 | version "1.0.7" 1417 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1418 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1419 | dependencies: 1420 | has-tostringtag "^1.0.0" 1421 | 1422 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1423 | version "1.0.4" 1424 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1425 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1426 | dependencies: 1427 | has-symbols "^1.0.2" 1428 | 1429 | is-weakref@^1.0.2: 1430 | version "1.0.2" 1431 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1432 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1433 | dependencies: 1434 | call-bind "^1.0.2" 1435 | 1436 | isexe@^2.0.0: 1437 | version "2.0.0" 1438 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1439 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1440 | 1441 | jose@^4.10.0, jose@^4.11.4: 1442 | version "4.13.1" 1443 | resolved "https://registry.yarnpkg.com/jose/-/jose-4.13.1.tgz#449111bb5ab171db85c03f1bd2cb1647ca06db1c" 1444 | integrity sha512-MSJQC5vXco5Br38mzaQKiq9mwt7lwj2eXpgpRyQYNHYt2lq1PjkWa7DLXX0WVcQLE9HhMh3jPiufS7fhJf+CLQ== 1445 | 1446 | js-sdsl@^4.1.4: 1447 | version "4.4.0" 1448 | resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" 1449 | integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== 1450 | 1451 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1452 | version "4.0.0" 1453 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1454 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1455 | 1456 | js-yaml@^4.1.0: 1457 | version "4.1.0" 1458 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1459 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1460 | dependencies: 1461 | argparse "^2.0.1" 1462 | 1463 | json-parse-even-better-errors@^2.3.0: 1464 | version "2.3.1" 1465 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1466 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1467 | 1468 | json-schema-traverse@^0.4.1: 1469 | version "0.4.1" 1470 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1471 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1472 | 1473 | json-stable-stringify-without-jsonify@^1.0.1: 1474 | version "1.0.1" 1475 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1476 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1477 | 1478 | json5@^1.0.1: 1479 | version "1.0.1" 1480 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1481 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1482 | dependencies: 1483 | minimist "^1.2.0" 1484 | 1485 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1: 1486 | version "3.2.2" 1487 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.2.tgz#6ab1e52c71dfc0c0707008a91729a9491fe9f76c" 1488 | integrity sha512-HDAyJ4MNQBboGpUnHAVUNJs6X0lh058s6FuixsFGP7MgJYpD6Vasd6nzSG5iIfXu1zAYlHJ/zsOKNlrenTUBnw== 1489 | dependencies: 1490 | array-includes "^3.1.4" 1491 | object.assign "^4.1.2" 1492 | 1493 | language-subtag-registry@~0.3.2: 1494 | version "0.3.21" 1495 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" 1496 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== 1497 | 1498 | language-tags@^1.0.5: 1499 | version "1.0.5" 1500 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1501 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo= 1502 | dependencies: 1503 | language-subtag-registry "~0.3.2" 1504 | 1505 | levn@^0.4.1: 1506 | version "0.4.1" 1507 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1508 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1509 | dependencies: 1510 | prelude-ls "^1.2.1" 1511 | type-check "~0.4.0" 1512 | 1513 | lilconfig@^2.0.5: 1514 | version "2.0.5" 1515 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25" 1516 | integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg== 1517 | 1518 | lines-and-columns@^1.1.6: 1519 | version "1.2.4" 1520 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 1521 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1522 | 1523 | locate-path@^2.0.0: 1524 | version "2.0.0" 1525 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1526 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1527 | dependencies: 1528 | p-locate "^2.0.0" 1529 | path-exists "^3.0.0" 1530 | 1531 | locate-path@^6.0.0: 1532 | version "6.0.0" 1533 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1534 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1535 | dependencies: 1536 | p-locate "^5.0.0" 1537 | 1538 | lodash.merge@^4.6.2: 1539 | version "4.6.2" 1540 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1541 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1542 | 1543 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1544 | version "1.4.0" 1545 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1546 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1547 | dependencies: 1548 | js-tokens "^3.0.0 || ^4.0.0" 1549 | 1550 | lru-cache@^6.0.0: 1551 | version "6.0.0" 1552 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1553 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1554 | dependencies: 1555 | yallist "^4.0.0" 1556 | 1557 | lru-cache@^7.4.0: 1558 | version "7.8.0" 1559 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.8.0.tgz#649aaeb294a56297b5cbc5d70f198dcc5ebe5747" 1560 | integrity sha512-AmXqneQZL3KZMIgBpaPTeI6pfwh+xQ2vutMsyqOu1TBdEXFZgpG/80wuJ531w2ZN7TI0/oc8CPxzh/DKQudZqg== 1561 | 1562 | merge2@^1.3.0, merge2@^1.4.1: 1563 | version "1.4.1" 1564 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1565 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1566 | 1567 | micromatch@^4.0.4: 1568 | version "4.0.5" 1569 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1570 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1571 | dependencies: 1572 | braces "^3.0.2" 1573 | picomatch "^2.3.1" 1574 | 1575 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.2: 1576 | version "3.1.2" 1577 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1578 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1579 | dependencies: 1580 | brace-expansion "^1.1.7" 1581 | 1582 | minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.6: 1583 | version "1.2.6" 1584 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1585 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1586 | 1587 | ms@2.0.0: 1588 | version "2.0.0" 1589 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1590 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1591 | 1592 | ms@2.1.2: 1593 | version "2.1.2" 1594 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1595 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1596 | 1597 | ms@^2.1.1: 1598 | version "2.1.3" 1599 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1600 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1601 | 1602 | nanoid@^3.1.30, nanoid@^3.3.1: 1603 | version "3.3.2" 1604 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.2.tgz#c89622fafb4381cd221421c69ec58547a1eec557" 1605 | integrity sha512-CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA== 1606 | 1607 | nanoid@^3.3.4: 1608 | version "3.3.6" 1609 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" 1610 | integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== 1611 | 1612 | natural-compare-lite@^1.4.0: 1613 | version "1.4.0" 1614 | resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" 1615 | integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== 1616 | 1617 | natural-compare@^1.4.0: 1618 | version "1.4.0" 1619 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1620 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1621 | 1622 | next-auth@^4.3.1: 1623 | version "4.20.1" 1624 | resolved "https://registry.yarnpkg.com/next-auth/-/next-auth-4.20.1.tgz#6e65c4fde14171f6ce64f05f672f80f39fc418c7" 1625 | integrity sha512-ZcTUN4qzzZ/zJYgOW0hMXccpheWtAol8QOMdMts+LYRcsPGsqf2hEityyaKyECQVw1cWInb9dF3wYwI5GZdEmQ== 1626 | dependencies: 1627 | "@babel/runtime" "^7.20.13" 1628 | "@panva/hkdf" "^1.0.2" 1629 | cookie "^0.5.0" 1630 | jose "^4.11.4" 1631 | oauth "^0.9.15" 1632 | openid-client "^5.4.0" 1633 | preact "^10.6.3" 1634 | preact-render-to-string "^5.1.19" 1635 | uuid "^8.3.2" 1636 | 1637 | next@12.1.4: 1638 | version "12.1.4" 1639 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.4.tgz#597a9bdec7aec778b442c4f6d41afd2c64a54b23" 1640 | integrity sha512-DA4g97BM4Z0nKtDvCTm58RxdvoQyYzeg0AeVbh0N4Y/D8ELrNu47lQeEgRGF8hV4eQ+Sal90zxrJQQG/mPQ8CQ== 1641 | dependencies: 1642 | "@next/env" "12.1.4" 1643 | caniuse-lite "^1.0.30001283" 1644 | postcss "8.4.5" 1645 | styled-jsx "5.0.1" 1646 | optionalDependencies: 1647 | "@next/swc-android-arm-eabi" "12.1.4" 1648 | "@next/swc-android-arm64" "12.1.4" 1649 | "@next/swc-darwin-arm64" "12.1.4" 1650 | "@next/swc-darwin-x64" "12.1.4" 1651 | "@next/swc-linux-arm-gnueabihf" "12.1.4" 1652 | "@next/swc-linux-arm64-gnu" "12.1.4" 1653 | "@next/swc-linux-arm64-musl" "12.1.4" 1654 | "@next/swc-linux-x64-gnu" "12.1.4" 1655 | "@next/swc-linux-x64-musl" "12.1.4" 1656 | "@next/swc-win32-arm64-msvc" "12.1.4" 1657 | "@next/swc-win32-ia32-msvc" "12.1.4" 1658 | "@next/swc-win32-x64-msvc" "12.1.4" 1659 | 1660 | node-releases@^2.0.8: 1661 | version "2.0.10" 1662 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" 1663 | integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== 1664 | 1665 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1666 | version "3.0.0" 1667 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1668 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1669 | 1670 | normalize-range@^0.1.2: 1671 | version "0.1.2" 1672 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1673 | integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= 1674 | 1675 | oauth@^0.9.15: 1676 | version "0.9.15" 1677 | resolved "https://registry.yarnpkg.com/oauth/-/oauth-0.9.15.tgz#bd1fefaf686c96b75475aed5196412ff60cfb9c1" 1678 | integrity sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA== 1679 | 1680 | object-assign@^4.1.1: 1681 | version "4.1.1" 1682 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1683 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1684 | 1685 | object-hash@^2.0.1, object-hash@^2.2.0: 1686 | version "2.2.0" 1687 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5" 1688 | integrity sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw== 1689 | 1690 | object-inspect@^1.12.0, object-inspect@^1.9.0: 1691 | version "1.12.0" 1692 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0" 1693 | integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== 1694 | 1695 | object-keys@^1.0.12, object-keys@^1.1.1: 1696 | version "1.1.1" 1697 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1698 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1699 | 1700 | object.assign@^4.1.2: 1701 | version "4.1.2" 1702 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1703 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1704 | dependencies: 1705 | call-bind "^1.0.0" 1706 | define-properties "^1.1.3" 1707 | has-symbols "^1.0.1" 1708 | object-keys "^1.1.1" 1709 | 1710 | object.entries@^1.1.5: 1711 | version "1.1.5" 1712 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 1713 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 1714 | dependencies: 1715 | call-bind "^1.0.2" 1716 | define-properties "^1.1.3" 1717 | es-abstract "^1.19.1" 1718 | 1719 | object.fromentries@^2.0.5: 1720 | version "2.0.5" 1721 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 1722 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 1723 | dependencies: 1724 | call-bind "^1.0.2" 1725 | define-properties "^1.1.3" 1726 | es-abstract "^1.19.1" 1727 | 1728 | object.hasown@^1.1.0: 1729 | version "1.1.0" 1730 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5" 1731 | integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg== 1732 | dependencies: 1733 | define-properties "^1.1.3" 1734 | es-abstract "^1.19.1" 1735 | 1736 | object.values@^1.1.5: 1737 | version "1.1.5" 1738 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 1739 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 1740 | dependencies: 1741 | call-bind "^1.0.2" 1742 | define-properties "^1.1.3" 1743 | es-abstract "^1.19.1" 1744 | 1745 | oidc-token-hash@^5.0.1: 1746 | version "5.0.1" 1747 | resolved "https://registry.yarnpkg.com/oidc-token-hash/-/oidc-token-hash-5.0.1.tgz#ae6beec3ec20f0fd885e5400d175191d6e2f10c6" 1748 | integrity sha512-EvoOtz6FIEBzE+9q253HsLCVRiK/0doEJ2HCvvqMQb3dHZrP3WlJKYtJ55CRTw4jmYomzH4wkPuCj/I3ZvpKxQ== 1749 | 1750 | once@^1.3.0: 1751 | version "1.4.0" 1752 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1753 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1754 | dependencies: 1755 | wrappy "1" 1756 | 1757 | openid-client@^5.4.0: 1758 | version "5.4.0" 1759 | resolved "https://registry.yarnpkg.com/openid-client/-/openid-client-5.4.0.tgz#77f1cda14e2911446f16ea3f455fc7c405103eac" 1760 | integrity sha512-hgJa2aQKcM2hn3eyVtN12tEA45ECjTJPXCgUh5YzTzy9qwapCvmDTVPWOcWVL0d34zeQoQ/hbG9lJhl3AYxJlQ== 1761 | dependencies: 1762 | jose "^4.10.0" 1763 | lru-cache "^6.0.0" 1764 | object-hash "^2.0.1" 1765 | oidc-token-hash "^5.0.1" 1766 | 1767 | optionator@^0.9.1: 1768 | version "0.9.1" 1769 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1770 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1771 | dependencies: 1772 | deep-is "^0.1.3" 1773 | fast-levenshtein "^2.0.6" 1774 | levn "^0.4.1" 1775 | prelude-ls "^1.2.1" 1776 | type-check "^0.4.0" 1777 | word-wrap "^1.2.3" 1778 | 1779 | p-limit@^1.1.0: 1780 | version "1.3.0" 1781 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1782 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1783 | dependencies: 1784 | p-try "^1.0.0" 1785 | 1786 | p-limit@^3.0.2: 1787 | version "3.1.0" 1788 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1789 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1790 | dependencies: 1791 | yocto-queue "^0.1.0" 1792 | 1793 | p-locate@^2.0.0: 1794 | version "2.0.0" 1795 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1796 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1797 | dependencies: 1798 | p-limit "^1.1.0" 1799 | 1800 | p-locate@^5.0.0: 1801 | version "5.0.0" 1802 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1803 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1804 | dependencies: 1805 | p-limit "^3.0.2" 1806 | 1807 | p-try@^1.0.0: 1808 | version "1.0.0" 1809 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1810 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1811 | 1812 | parent-module@^1.0.0: 1813 | version "1.0.1" 1814 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1815 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1816 | dependencies: 1817 | callsites "^3.0.0" 1818 | 1819 | parse-json@^5.0.0: 1820 | version "5.2.0" 1821 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 1822 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1823 | dependencies: 1824 | "@babel/code-frame" "^7.0.0" 1825 | error-ex "^1.3.1" 1826 | json-parse-even-better-errors "^2.3.0" 1827 | lines-and-columns "^1.1.6" 1828 | 1829 | path-exists@^3.0.0: 1830 | version "3.0.0" 1831 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1832 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1833 | 1834 | path-exists@^4.0.0: 1835 | version "4.0.0" 1836 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1837 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1838 | 1839 | path-is-absolute@^1.0.0: 1840 | version "1.0.1" 1841 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1842 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1843 | 1844 | path-key@^3.1.0: 1845 | version "3.1.1" 1846 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1847 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1848 | 1849 | path-parse@^1.0.6, path-parse@^1.0.7: 1850 | version "1.0.7" 1851 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1852 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1853 | 1854 | path-type@^4.0.0: 1855 | version "4.0.0" 1856 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1857 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1858 | 1859 | picocolors@^1.0.0: 1860 | version "1.0.0" 1861 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1862 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1863 | 1864 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 1865 | version "2.3.1" 1866 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1867 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1868 | 1869 | postcss-js@^4.0.0: 1870 | version "4.0.0" 1871 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00" 1872 | integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== 1873 | dependencies: 1874 | camelcase-css "^2.0.1" 1875 | 1876 | postcss-load-config@^3.1.0: 1877 | version "3.1.4" 1878 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" 1879 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== 1880 | dependencies: 1881 | lilconfig "^2.0.5" 1882 | yaml "^1.10.2" 1883 | 1884 | postcss-nested@5.0.6: 1885 | version "5.0.6" 1886 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc" 1887 | integrity sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA== 1888 | dependencies: 1889 | postcss-selector-parser "^6.0.6" 1890 | 1891 | postcss-selector-parser@^6.0.6, postcss-selector-parser@^6.0.9: 1892 | version "6.0.10" 1893 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" 1894 | integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== 1895 | dependencies: 1896 | cssesc "^3.0.0" 1897 | util-deprecate "^1.0.2" 1898 | 1899 | postcss-value-parser@^4.2.0: 1900 | version "4.2.0" 1901 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" 1902 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 1903 | 1904 | postcss@8.4.21: 1905 | version "8.4.21" 1906 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.21.tgz#c639b719a57efc3187b13a1d765675485f4134f4" 1907 | integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== 1908 | dependencies: 1909 | nanoid "^3.3.4" 1910 | picocolors "^1.0.0" 1911 | source-map-js "^1.0.2" 1912 | 1913 | postcss@8.4.5: 1914 | version "8.4.5" 1915 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" 1916 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== 1917 | dependencies: 1918 | nanoid "^3.1.30" 1919 | picocolors "^1.0.0" 1920 | source-map-js "^1.0.1" 1921 | 1922 | postcss@^8.4.6: 1923 | version "8.4.12" 1924 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.12.tgz#1e7de78733b28970fa4743f7da6f3763648b1905" 1925 | integrity sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg== 1926 | dependencies: 1927 | nanoid "^3.3.1" 1928 | picocolors "^1.0.0" 1929 | source-map-js "^1.0.2" 1930 | 1931 | preact-render-to-string@^5.1.19: 1932 | version "5.2.6" 1933 | resolved "https://registry.yarnpkg.com/preact-render-to-string/-/preact-render-to-string-5.2.6.tgz#0ff0c86cd118d30affb825193f18e92bd59d0604" 1934 | integrity sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw== 1935 | dependencies: 1936 | pretty-format "^3.8.0" 1937 | 1938 | preact@^10.6.3: 1939 | version "10.13.2" 1940 | resolved "https://registry.yarnpkg.com/preact/-/preact-10.13.2.tgz#2c40c73d57248b57234c4ae6cd9ab9d8186ebc0a" 1941 | integrity sha512-q44QFLhOhty2Bd0Y46fnYW0gD/cbVM9dUVtNTDKPcdXSMA7jfY+Jpd6rk3GB0lcQss0z5s/6CmVP0Z/hV+g6pw== 1942 | 1943 | prelude-ls@^1.2.1: 1944 | version "1.2.1" 1945 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1946 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1947 | 1948 | prettier-linter-helpers@^1.0.0: 1949 | version "1.0.0" 1950 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 1951 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 1952 | dependencies: 1953 | fast-diff "^1.1.2" 1954 | 1955 | prettier@2.8.7: 1956 | version "2.8.7" 1957 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450" 1958 | integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw== 1959 | 1960 | pretty-format@^3.8.0: 1961 | version "3.8.0" 1962 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-3.8.0.tgz#bfbed56d5e9a776645f4b1ff7aa1a3ac4fa3c385" 1963 | integrity sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew== 1964 | 1965 | prop-types@^15.8.1: 1966 | version "15.8.1" 1967 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1968 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1969 | dependencies: 1970 | loose-envify "^1.4.0" 1971 | object-assign "^4.1.1" 1972 | react-is "^16.13.1" 1973 | 1974 | punycode@^2.1.0: 1975 | version "2.1.1" 1976 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1977 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1978 | 1979 | queue-microtask@^1.2.2: 1980 | version "1.2.3" 1981 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1982 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1983 | 1984 | quick-lru@^5.1.1: 1985 | version "5.1.1" 1986 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 1987 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 1988 | 1989 | react-dom@18.2.0: 1990 | version "18.2.0" 1991 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1992 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1993 | dependencies: 1994 | loose-envify "^1.1.0" 1995 | scheduler "^0.23.0" 1996 | 1997 | react-is@^16.13.1: 1998 | version "16.13.1" 1999 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 2000 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 2001 | 2002 | react@18.2.0: 2003 | version "18.2.0" 2004 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 2005 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 2006 | dependencies: 2007 | loose-envify "^1.1.0" 2008 | 2009 | readdirp@~3.6.0: 2010 | version "3.6.0" 2011 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 2012 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 2013 | dependencies: 2014 | picomatch "^2.2.1" 2015 | 2016 | regenerator-runtime@^0.13.11: 2017 | version "0.13.11" 2018 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" 2019 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== 2020 | 2021 | regenerator-runtime@^0.13.4: 2022 | version "0.13.9" 2023 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 2024 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 2025 | 2026 | regexp.prototype.flags@^1.4.1: 2027 | version "1.4.1" 2028 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz#b3f4c0059af9e47eca9f3f660e51d81307e72307" 2029 | integrity sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ== 2030 | dependencies: 2031 | call-bind "^1.0.2" 2032 | define-properties "^1.1.3" 2033 | 2034 | resolve-from@^4.0.0: 2035 | version "4.0.0" 2036 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2037 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2038 | 2039 | resolve@^1.13.1, resolve@^1.17.0, resolve@^1.20.0, resolve@^1.22.0: 2040 | version "1.22.0" 2041 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" 2042 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 2043 | dependencies: 2044 | is-core-module "^2.8.1" 2045 | path-parse "^1.0.7" 2046 | supports-preserve-symlinks-flag "^1.0.0" 2047 | 2048 | resolve@^2.0.0-next.3: 2049 | version "2.0.0-next.3" 2050 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46" 2051 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q== 2052 | dependencies: 2053 | is-core-module "^2.2.0" 2054 | path-parse "^1.0.6" 2055 | 2056 | reusify@^1.0.4: 2057 | version "1.0.4" 2058 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 2059 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2060 | 2061 | rimraf@^3.0.2: 2062 | version "3.0.2" 2063 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2064 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2065 | dependencies: 2066 | glob "^7.1.3" 2067 | 2068 | run-parallel@^1.1.9: 2069 | version "1.2.0" 2070 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 2071 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2072 | dependencies: 2073 | queue-microtask "^1.2.2" 2074 | 2075 | scheduler@^0.23.0: 2076 | version "0.23.0" 2077 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 2078 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 2079 | dependencies: 2080 | loose-envify "^1.1.0" 2081 | 2082 | semver@^6.3.0: 2083 | version "6.3.0" 2084 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2085 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2086 | 2087 | semver@^7.3.5: 2088 | version "7.3.6" 2089 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.6.tgz#5d73886fb9c0c6602e79440b97165c29581cbb2b" 2090 | integrity sha512-HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w== 2091 | dependencies: 2092 | lru-cache "^7.4.0" 2093 | 2094 | semver@^7.3.7: 2095 | version "7.3.8" 2096 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 2097 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 2098 | dependencies: 2099 | lru-cache "^6.0.0" 2100 | 2101 | shebang-command@^2.0.0: 2102 | version "2.0.0" 2103 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2104 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2105 | dependencies: 2106 | shebang-regex "^3.0.0" 2107 | 2108 | shebang-regex@^3.0.0: 2109 | version "3.0.0" 2110 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2111 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2112 | 2113 | side-channel@^1.0.4: 2114 | version "1.0.4" 2115 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 2116 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 2117 | dependencies: 2118 | call-bind "^1.0.0" 2119 | get-intrinsic "^1.0.2" 2120 | object-inspect "^1.9.0" 2121 | 2122 | slash@^3.0.0: 2123 | version "3.0.0" 2124 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2125 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2126 | 2127 | source-map-js@^1.0.1, source-map-js@^1.0.2: 2128 | version "1.0.2" 2129 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 2130 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 2131 | 2132 | string.prototype.matchall@^4.0.6: 2133 | version "4.0.7" 2134 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" 2135 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== 2136 | dependencies: 2137 | call-bind "^1.0.2" 2138 | define-properties "^1.1.3" 2139 | es-abstract "^1.19.1" 2140 | get-intrinsic "^1.1.1" 2141 | has-symbols "^1.0.3" 2142 | internal-slot "^1.0.3" 2143 | regexp.prototype.flags "^1.4.1" 2144 | side-channel "^1.0.4" 2145 | 2146 | string.prototype.trimend@^1.0.4: 2147 | version "1.0.4" 2148 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 2149 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 2150 | dependencies: 2151 | call-bind "^1.0.2" 2152 | define-properties "^1.1.3" 2153 | 2154 | string.prototype.trimstart@^1.0.4: 2155 | version "1.0.4" 2156 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 2157 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 2158 | dependencies: 2159 | call-bind "^1.0.2" 2160 | define-properties "^1.1.3" 2161 | 2162 | strip-ansi@^6.0.1: 2163 | version "6.0.1" 2164 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2165 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2166 | dependencies: 2167 | ansi-regex "^5.0.1" 2168 | 2169 | strip-bom@^3.0.0: 2170 | version "3.0.0" 2171 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2172 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 2173 | 2174 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 2175 | version "3.1.1" 2176 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2177 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2178 | 2179 | styled-jsx@5.0.1: 2180 | version "5.0.1" 2181 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.1.tgz#78fecbbad2bf95ce6cd981a08918ce4696f5fc80" 2182 | integrity sha512-+PIZ/6Uk40mphiQJJI1202b+/dYeTVd9ZnMPR80pgiWbjIwvN2zIp4r9et0BgqBuShh48I0gttPlAXA7WVvBxw== 2183 | 2184 | supports-color@^5.3.0: 2185 | version "5.5.0" 2186 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2187 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2188 | dependencies: 2189 | has-flag "^3.0.0" 2190 | 2191 | supports-color@^7.1.0: 2192 | version "7.2.0" 2193 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2194 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2195 | dependencies: 2196 | has-flag "^4.0.0" 2197 | 2198 | supports-preserve-symlinks-flag@^1.0.0: 2199 | version "1.0.0" 2200 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2201 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2202 | 2203 | tailwindcss@3.0.23: 2204 | version "3.0.23" 2205 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.0.23.tgz#c620521d53a289650872a66adfcb4129d2200d10" 2206 | integrity sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA== 2207 | dependencies: 2208 | arg "^5.0.1" 2209 | chalk "^4.1.2" 2210 | chokidar "^3.5.3" 2211 | color-name "^1.1.4" 2212 | cosmiconfig "^7.0.1" 2213 | detective "^5.2.0" 2214 | didyoumean "^1.2.2" 2215 | dlv "^1.1.3" 2216 | fast-glob "^3.2.11" 2217 | glob-parent "^6.0.2" 2218 | is-glob "^4.0.3" 2219 | normalize-path "^3.0.0" 2220 | object-hash "^2.2.0" 2221 | postcss "^8.4.6" 2222 | postcss-js "^4.0.0" 2223 | postcss-load-config "^3.1.0" 2224 | postcss-nested "5.0.6" 2225 | postcss-selector-parser "^6.0.9" 2226 | postcss-value-parser "^4.2.0" 2227 | quick-lru "^5.1.1" 2228 | resolve "^1.22.0" 2229 | 2230 | text-table@^0.2.0: 2231 | version "0.2.0" 2232 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2233 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 2234 | 2235 | to-regex-range@^5.0.1: 2236 | version "5.0.1" 2237 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2238 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2239 | dependencies: 2240 | is-number "^7.0.0" 2241 | 2242 | tsconfig-paths@^3.11.0, tsconfig-paths@^3.9.0: 2243 | version "3.14.1" 2244 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" 2245 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 2246 | dependencies: 2247 | "@types/json5" "^0.0.29" 2248 | json5 "^1.0.1" 2249 | minimist "^1.2.6" 2250 | strip-bom "^3.0.0" 2251 | 2252 | tslib@^1.8.1: 2253 | version "1.14.1" 2254 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 2255 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 2256 | 2257 | tsutils@^3.21.0: 2258 | version "3.21.0" 2259 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 2260 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 2261 | dependencies: 2262 | tslib "^1.8.1" 2263 | 2264 | type-check@^0.4.0, type-check@~0.4.0: 2265 | version "0.4.0" 2266 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2267 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2268 | dependencies: 2269 | prelude-ls "^1.2.1" 2270 | 2271 | type-fest@^0.20.2: 2272 | version "0.20.2" 2273 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2274 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2275 | 2276 | typescript@5.0.2: 2277 | version "5.0.2" 2278 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.2.tgz#891e1a90c5189d8506af64b9ef929fca99ba1ee5" 2279 | integrity sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw== 2280 | 2281 | unbox-primitive@^1.0.1: 2282 | version "1.0.1" 2283 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" 2284 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 2285 | dependencies: 2286 | function-bind "^1.1.1" 2287 | has-bigints "^1.0.1" 2288 | has-symbols "^1.0.2" 2289 | which-boxed-primitive "^1.0.2" 2290 | 2291 | update-browserslist-db@^1.0.10: 2292 | version "1.0.10" 2293 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" 2294 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== 2295 | dependencies: 2296 | escalade "^3.1.1" 2297 | picocolors "^1.0.0" 2298 | 2299 | uri-js@^4.2.2: 2300 | version "4.4.1" 2301 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2302 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2303 | dependencies: 2304 | punycode "^2.1.0" 2305 | 2306 | util-deprecate@^1.0.2: 2307 | version "1.0.2" 2308 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2309 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2310 | 2311 | uuid@^8.3.2: 2312 | version "8.3.2" 2313 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 2314 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 2315 | 2316 | which-boxed-primitive@^1.0.2: 2317 | version "1.0.2" 2318 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2319 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2320 | dependencies: 2321 | is-bigint "^1.0.1" 2322 | is-boolean-object "^1.1.0" 2323 | is-number-object "^1.0.4" 2324 | is-string "^1.0.5" 2325 | is-symbol "^1.0.3" 2326 | 2327 | which@^2.0.1: 2328 | version "2.0.2" 2329 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2330 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2331 | dependencies: 2332 | isexe "^2.0.0" 2333 | 2334 | word-wrap@^1.2.3: 2335 | version "1.2.3" 2336 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2337 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2338 | 2339 | wrappy@1: 2340 | version "1.0.2" 2341 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2342 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2343 | 2344 | xtend@^4.0.2: 2345 | version "4.0.2" 2346 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2347 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2348 | 2349 | yallist@^4.0.0: 2350 | version "4.0.0" 2351 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2352 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2353 | 2354 | yaml@^1.10.0, yaml@^1.10.2: 2355 | version "1.10.2" 2356 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 2357 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 2358 | 2359 | yocto-queue@^0.1.0: 2360 | version "0.1.0" 2361 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2362 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2363 | --------------------------------------------------------------------------------