├── .eslintrc.json
├── src
├── app
│ ├── favicon.ico
│ ├── about
│ │ └── page.tsx
│ ├── layout.tsx
│ ├── globals.css
│ └── page.tsx
├── types
│ └── type.d.ts
└── components
│ ├── list.tsx
│ └── side.tsx
├── next.config.js
├── postcss.config.js
├── .idea
├── vcs.xml
├── jsLibraryMappings.xml
└── inspectionProfiles
│ └── Project_Default.xml
├── .editorconfig
├── tailwind.config.js
├── tsconfig.json
├── package.json
├── README.md
├── public
└── github.svg
├── .gitignore
├── LICENSE
└── pnpm-lock.yaml
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/src/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zsio/Free-GPT-No-Auth/HEAD/src/app/favicon.ico
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/src/app/about/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | export default function About() {
3 |
4 | return (
5 |
6 | 关于我
7 |
8 | )
9 | }
10 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/jsLibraryMappings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | end_of_line = crlf
6 | indent_size = 2
7 | indent_style = space
8 | insert_final_newline = true
9 | max_line_length = 120
10 | tab_width = 2
11 | trim_trailing_whitespace = true
12 |
--------------------------------------------------------------------------------
/src/types/type.d.ts:
--------------------------------------------------------------------------------
1 |
2 |
3 | export enum ModelType {
4 | 'gpt3',
5 | 'gpt4',
6 | }
7 |
8 | export interface Site {
9 | title: string
10 | url: string
11 | modelType: (keyof typeof ModelType)[]
12 | icon?: string
13 | newWindow?: boolean
14 | }
15 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/tailwind.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | module.exports = {
3 | content: [
4 | './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
5 | './src/components/**/*.{js,ts,jsx,tsx,mdx}',
6 | './src/app/**/*.{js,ts,jsx,tsx,mdx}',
7 | ],
8 | theme: {
9 | extend: {
10 | backgroundImage: {
11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
12 | 'gradient-conic':
13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
14 | },
15 | },
16 | },
17 | plugins: [require("daisyui")],
18 | }
19 |
--------------------------------------------------------------------------------
/src/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import './globals.css'
2 | import {Inter} from 'next/font/google'
3 |
4 | import { Analytics } from '@vercel/analytics/react';
5 |
6 |
7 | const inter = Inter({ subsets: ['latin'] })
8 |
9 | export const metadata = {
10 | title: '保持更新GPT',
11 | description: '收集免费、无需登录的GPT镜像站。此站点永久免费且保持更新。',
12 | }
13 |
14 |
15 | export default function RootLayout({
16 | children,
17 | }: {
18 | children: React.ReactNode
19 | }) {
20 | return (
21 |
22 |
{children}
23 |
24 |
25 | )
26 | }
27 |
--------------------------------------------------------------------------------
/src/app/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
5 | :root {
6 | --foreground-rgb: 0, 0, 0;
7 | --background-start-rgb: 214, 219, 220;
8 | --background-end-rgb: 255, 255, 255;
9 | }
10 |
11 | @media (prefers-color-scheme: dark) {
12 | :root {
13 | --foreground-rgb: 255, 255, 255;
14 | --background-start-rgb: 0, 0, 0;
15 | --background-end-rgb: 0, 0, 0;
16 | }
17 | }
18 |
19 | ::-webkit-scrollbar {
20 | width: 4px;
21 | }
22 |
23 | ::-webkit-scrollbar-thumb {
24 | background-color: rgba(var(--foreground-rgb), 0.5);
25 | border-radius: 20%;
26 | }
27 |
28 | body {
29 | padding: 0;
30 | }
31 |
32 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": ["dom", "dom.iterable", "esnext"],
5 | "allowJs": true,
6 | "skipLibCheck": true,
7 | "strict": true,
8 | "forceConsistentCasingInFileNames": true,
9 | "noEmit": true,
10 | "esModuleInterop": true,
11 | "module": "esnext",
12 | "moduleResolution": "node",
13 | "resolveJsonModule": true,
14 | "isolatedModules": true,
15 | "jsx": "preserve",
16 | "incremental": true,
17 | "plugins": [
18 | {
19 | "name": "next"
20 | }
21 | ],
22 | "paths": {
23 | "@/*": ["./src/*"]
24 | }
25 | },
26 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
27 | "exclude": ["node_modules"]
28 | }
29 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "free-gpt-no-login",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev -p 13002",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "@types/node": "20.3.3",
13 | "@types/react": "18.2.14",
14 | "@types/react-dom": "18.2.6",
15 | "@vercel/analytics": "^1.0.1",
16 | "autoprefixer": "10.4.14",
17 | "eslint": "8.44.0",
18 | "eslint-config-next": "13.4.8",
19 | "next": "13.4.8",
20 | "postcss": "8.4.24",
21 | "react": "18.2.0",
22 | "react-dom": "18.2.0",
23 | "tailwindcss": "3.3.2",
24 | "typescript": "5.1.6"
25 | },
26 | "devDependencies": {
27 | "daisyui": "^3.1.7"
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | Free GPT 🆓 No Auth ⛔
3 |
4 |
5 |
6 | 收集免费公开、无需登录的GPT镜像站
7 |
8 |
9 |
10 |
11 | [](https://discord.gg/cYUU8mCDMd)
12 |
13 | 你可以加入discord:
14 | discord.gg/8AZ9Xa37
15 | 以获取项目最新进展.
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | ### ✔️ TODO
24 |
25 | - [x] 左侧菜单切换各网站。
26 | - [ ] 通过配置的方式提供列表。
27 | - [ ] Nextjs 服务端添加代理,将某一小部分接口转换为兼容OpenAI API的接口。
28 |
29 | This is a [Next.js](https://nextjs.org/) project
30 |
31 |
32 | ## 🚩 仍在努力保持更新
33 | 众人拾柴火焰高,此项目离不开大家的支持,如果你有好的想法或者发现了新的网站,欢迎提交PR或者Issue。
34 |
35 |
36 | ## 🏃 运行
37 |
38 | [](https://vercel.com/new/clone?repository-url=https://github.com/zsio/Free-GPT-No-Auth&project-name=free-gpt-no-auth&repository-name=Free-GPT-No-Auth)
39 |
--------------------------------------------------------------------------------
/src/components/list.tsx:
--------------------------------------------------------------------------------
1 | import {Site} from "@/types/type";
2 |
3 |
4 | interface Props {
5 | sites: Site[]
6 | site?: Site
7 | onChange: (site: Site) => void
8 | }
9 |
10 |
11 |
12 | export default function List(props: Props) {
13 |
14 | const {onChange, sites, site: currentSite} = props;
15 |
16 | const gpt3Sites = sites.filter(site => site.modelType.includes('gpt3'))
17 | const gpt4Sites = sites.filter(site => site.modelType.includes('gpt4'))
18 |
19 | const liTag = (site: Site) => (
20 | onChange(site)}
23 | key={site.url}>
24 | {site.title}
25 | {
26 | site.newWindow && (
27 |
28 | ↗
29 |
30 | )
31 | }
32 |
33 | )
34 |
35 | return (
36 |
37 | {
38 | gpt4Sites.length > 0 && (
39 | - GPT4
40 | )
41 | }
42 | {
43 | gpt4Sites.map((site) => liTag(site))
44 | }
45 |
46 | - GPT3
47 | {
48 | gpt3Sites.map((site) => liTag(site))
49 | }
50 |
51 | )
52 | }
53 |
--------------------------------------------------------------------------------
/src/components/side.tsx:
--------------------------------------------------------------------------------
1 | import type {Site} from '@/types/type'
2 |
3 | import Image from 'next/image';
4 | import List from "@/components/list";
5 |
6 |
7 | interface Props {
8 | sites: Site[]
9 | site?: Site
10 | onChange: (site: Site) => void
11 | }
12 |
13 |
14 | export default function Side(props: Props) {
15 |
16 | return (
17 | <>
18 |
36 |
37 |
38 |
39 |
点击下方的网站列表,刷新页面即可返回。
40 |
41 |
42 |
43 |
44 | >
45 |
46 |
47 | )
48 | }
49 |
--------------------------------------------------------------------------------
/public/github.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | .next
4 |
5 | # dependencies
6 | /node_modules
7 | /.pnp
8 | .pnp.js
9 |
10 | # testing
11 | /coverage
12 |
13 | # next.js
14 | /.next/
15 | /out/
16 |
17 | # production
18 | /build
19 |
20 | # misc
21 | .DS_Store
22 | *.pem
23 |
24 | # debug
25 | npm-debug.log*
26 | yarn-debug.log*
27 | yarn-error.log*
28 |
29 | # local env files
30 | .env*.local
31 |
32 | # vercel
33 | .vercel
34 |
35 | # typescript
36 | *.tsbuildinfo
37 | next-env.d.ts
38 |
39 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
40 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
41 |
42 | # User-specific stuff
43 | .idea/**/workspace.xml
44 | .idea/**/tasks.xml
45 | .idea/**/usage.statistics.xml
46 | .idea/**/dictionaries
47 | .idea/**/shelf
48 |
49 | # AWS User-specific
50 | .idea/**/aws.xml
51 |
52 | # Generated files
53 | .idea/**/contentModel.xml
54 |
55 | # Sensitive or high-churn files
56 | .idea/**/dataSources/
57 | .idea/**/dataSources.ids
58 | .idea/**/dataSources.local.xml
59 | .idea/**/sqlDataSources.xml
60 | .idea/**/dynamic.xml
61 | .idea/**/uiDesigner.xml
62 | .idea/**/dbnavigator.xml
63 |
64 | # Gradle
65 | .idea/**/gradle.xml
66 | .idea/**/libraries
67 |
68 | # Gradle and Maven with auto-import
69 | # When using Gradle or Maven with auto-import, you should exclude module files,
70 | # since they will be recreated, and may cause churn. Uncomment if using
71 | # auto-import.
72 | # .idea/artifacts
73 | # .idea/compiler.xml
74 | # .idea/jarRepositories.xml
75 | # .idea/modules.xml
76 | # .idea/*.iml
77 | # .idea/modules
78 | # *.iml
79 | # *.ipr
80 |
81 | # CMake
82 | cmake-build-*/
83 |
84 | # Mongo Explorer plugin
85 | .idea/**/mongoSettings.xml
86 |
87 | # File-based project format
88 | *.iws
89 |
90 | # IntelliJ
91 | out/
92 |
93 | # mpeltonen/sbt-idea plugin
94 | .idea_modules/
95 |
96 | # JIRA plugin
97 | atlassian-ide-plugin.xml
98 |
99 | # Cursive Clojure plugin
100 | .idea/replstate.xml
101 |
102 | # SonarLint plugin
103 | .idea/sonarlint/
104 |
105 | # Crashlytics plugin (for Android Studio and IntelliJ)
106 | com_crashlytics_export_strings.xml
107 | crashlytics.properties
108 | crashlytics-build.properties
109 | fabric.properties
110 |
111 | # Editor-based Rest Client
112 | .idea/httpRequests
113 |
114 | # Android studio 3.1+ serialized cache file
115 | .idea/caches/build_file_checksums.ser
116 |
--------------------------------------------------------------------------------
/src/app/page.tsx:
--------------------------------------------------------------------------------
1 | 'use client'
2 |
3 | import {useState} from "react";
4 | import Side from '@/components/side'
5 | import { Site } from "@/types/type";
6 | import Link from "next/link";
7 |
8 |
9 | const sites: Site[] = [
10 | {
11 | title: 'FreeGPT',
12 | modelType: ['gpt3'],
13 | url: 'https://chat.api-box.com',
14 | },
15 | {
16 | title: 'acytoo',
17 | modelType: ['gpt3'],
18 | url: 'https://chat.acytoo.com/',
19 | },
20 | {
21 | title: 'gpt2',
22 | modelType: ['gpt3'],
23 | url: 'https://chat.getgpt.world',
24 | },
25 | {
26 | title: 'ai.ls',
27 | modelType: ['gpt3'],
28 | url: 'https://ai.ls/',
29 | },
30 | {
31 | title: 'ikunn',
32 | modelType: ['gpt3'],
33 | url: 'https://ikunn.icu/',
34 | }
35 | ]
36 |
37 | export default function Home() {
38 |
39 | const [site, setSite] = useState()
40 |
41 | /**
42 | * change site
43 | * @param site Site
44 | * @returns void
45 | */
46 | const handleChangeSite = (site: Site)=> {
47 | if (!site) return
48 | const {url, newWindow} = site
49 | if (newWindow){
50 | // open in a new window
51 | window.open(url)
52 | return
53 | }
54 | // open in the same window
55 | setSite(site)
56 | }
57 |
58 |
59 | return (
60 |
61 |
62 |
63 | {
64 | site?.url ? (
65 |
66 |
71 |
72 | ): (
73 |
74 |
75 |
76 | Free GPT 🆓 No Auth ⛔
77 |
78 |
79 |
80 |
81 |
82 | 使用公共免费api,不保证可用性。
83 |
84 |
首选使用FreeGPT,回复慢则需要耐心等待
85 |
86 |
87 |
88 | 源代码出处 GitHub:zsio/Free-GPT-No-Auth
89 |
90 |
91 |
92 |
93 | )
94 | }
95 |
96 |
97 | )
98 | }
99 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 2, June 1991
3 |
4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6 | Everyone is permitted to copy and distribute verbatim copies
7 | of this license document, but changing it is not allowed.
8 |
9 | Preamble
10 |
11 | The licenses for most software are designed to take away your
12 | freedom to share and change it. By contrast, the GNU General Public
13 | License is intended to guarantee your freedom to share and change free
14 | software--to make sure the software is free for all its users. This
15 | General Public License applies to most of the Free Software
16 | Foundation's software and to any other program whose authors commit to
17 | using it. (Some other Free Software Foundation software is covered by
18 | the GNU Lesser General Public License instead.) You can apply it to
19 | your programs, too.
20 |
21 | When we speak of free software, we are referring to freedom, not
22 | price. Our General Public Licenses are designed to make sure that you
23 | have the freedom to distribute copies of free software (and charge for
24 | this service if you wish), that you receive source code or can get it
25 | if you want it, that you can change the software or use pieces of it
26 | in new free programs; and that you know you can do these things.
27 |
28 | To protect your rights, we need to make restrictions that forbid
29 | anyone to deny you these rights or to ask you to surrender the rights.
30 | These restrictions translate to certain responsibilities for you if you
31 | distribute copies of the software, or if you modify it.
32 |
33 | For example, if you distribute copies of such a program, whether
34 | gratis or for a fee, you must give the recipients all the rights that
35 | you have. You must make sure that they, too, receive or can get the
36 | source code. And you must show them these terms so they know their
37 | rights.
38 |
39 | We protect your rights with two steps: (1) copyright the software, and
40 | (2) offer you this license which gives you legal permission to copy,
41 | distribute and/or modify the software.
42 |
43 | Also, for each author's protection and ours, we want to make certain
44 | that everyone understands that there is no warranty for this free
45 | software. If the software is modified by someone else and passed on, we
46 | want its recipients to know that what they have is not the original, so
47 | that any problems introduced by others will not reflect on the original
48 | authors' reputations.
49 |
50 | Finally, any free program is threatened constantly by software
51 | patents. We wish to avoid the danger that redistributors of a free
52 | program will individually obtain patent licenses, in effect making the
53 | program proprietary. To prevent this, we have made it clear that any
54 | patent must be licensed for everyone's free use or not licensed at all.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | GNU GENERAL PUBLIC LICENSE
60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61 |
62 | 0. This License applies to any program or other work which contains
63 | a notice placed by the copyright holder saying it may be distributed
64 | under the terms of this General Public License. The "Program", below,
65 | refers to any such program or work, and a "work based on the Program"
66 | means either the Program or any derivative work under copyright law:
67 | that is to say, a work containing the Program or a portion of it,
68 | either verbatim or with modifications and/or translated into another
69 | language. (Hereinafter, translation is included without limitation in
70 | the term "modification".) Each licensee is addressed as "you".
71 |
72 | Activities other than copying, distribution and modification are not
73 | covered by this License; they are outside its scope. The act of
74 | running the Program is not restricted, and the output from the Program
75 | is covered only if its contents constitute a work based on the
76 | Program (independent of having been made by running the Program).
77 | Whether that is true depends on what the Program does.
78 |
79 | 1. You may copy and distribute verbatim copies of the Program's
80 | source code as you receive it, in any medium, provided that you
81 | conspicuously and appropriately publish on each copy an appropriate
82 | copyright notice and disclaimer of warranty; keep intact all the
83 | notices that refer to this License and to the absence of any warranty;
84 | and give any other recipients of the Program a copy of this License
85 | along with the Program.
86 |
87 | You may charge a fee for the physical act of transferring a copy, and
88 | you may at your option offer warranty protection in exchange for a fee.
89 |
90 | 2. You may modify your copy or copies of the Program or any portion
91 | of it, thus forming a work based on the Program, and copy and
92 | distribute such modifications or work under the terms of Section 1
93 | above, provided that you also meet all of these conditions:
94 |
95 | a) You must cause the modified files to carry prominent notices
96 | stating that you changed the files and the date of any change.
97 |
98 | b) You must cause any work that you distribute or publish, that in
99 | whole or in part contains or is derived from the Program or any
100 | part thereof, to be licensed as a whole at no charge to all third
101 | parties under the terms of this License.
102 |
103 | c) If the modified program normally reads commands interactively
104 | when run, you must cause it, when started running for such
105 | interactive use in the most ordinary way, to print or display an
106 | announcement including an appropriate copyright notice and a
107 | notice that there is no warranty (or else, saying that you provide
108 | a warranty) and that users may redistribute the program under
109 | these conditions, and telling the user how to view a copy of this
110 | License. (Exception: if the Program itself is interactive but
111 | does not normally print such an announcement, your work based on
112 | the Program is not required to print an announcement.)
113 |
114 | These requirements apply to the modified work as a whole. If
115 | identifiable sections of that work are not derived from the Program,
116 | and can be reasonably considered independent and separate works in
117 | themselves, then this License, and its terms, do not apply to those
118 | sections when you distribute them as separate works. But when you
119 | distribute the same sections as part of a whole which is a work based
120 | on the Program, the distribution of the whole must be on the terms of
121 | this License, whose permissions for other licensees extend to the
122 | entire whole, and thus to each and every part regardless of who wrote it.
123 |
124 | Thus, it is not the intent of this section to claim rights or contest
125 | your rights to work written entirely by you; rather, the intent is to
126 | exercise the right to control the distribution of derivative or
127 | collective works based on the Program.
128 |
129 | In addition, mere aggregation of another work not based on the Program
130 | with the Program (or with a work based on the Program) on a volume of
131 | a storage or distribution medium does not bring the other work under
132 | the scope of this License.
133 |
134 | 3. You may copy and distribute the Program (or a work based on it,
135 | under Section 2) in object code or executable form under the terms of
136 | Sections 1 and 2 above provided that you also do one of the following:
137 |
138 | a) Accompany it with the complete corresponding machine-readable
139 | source code, which must be distributed under the terms of Sections
140 | 1 and 2 above on a medium customarily used for software interchange; or,
141 |
142 | b) Accompany it with a written offer, valid for at least three
143 | years, to give any third party, for a charge no more than your
144 | cost of physically performing source distribution, a complete
145 | machine-readable copy of the corresponding source code, to be
146 | distributed under the terms of Sections 1 and 2 above on a medium
147 | customarily used for software interchange; or,
148 |
149 | c) Accompany it with the information you received as to the offer
150 | to distribute corresponding source code. (This alternative is
151 | allowed only for noncommercial distribution and only if you
152 | received the program in object code or executable form with such
153 | an offer, in accord with Subsection b above.)
154 |
155 | The source code for a work means the preferred form of the work for
156 | making modifications to it. For an executable work, complete source
157 | code means all the source code for all modules it contains, plus any
158 | associated interface definition files, plus the scripts used to
159 | control compilation and installation of the executable. However, as a
160 | special exception, the source code distributed need not include
161 | anything that is normally distributed (in either source or binary
162 | form) with the major components (compiler, kernel, and so on) of the
163 | operating system on which the executable runs, unless that component
164 | itself accompanies the executable.
165 |
166 | If distribution of executable or object code is made by offering
167 | access to copy from a designated place, then offering equivalent
168 | access to copy the source code from the same place counts as
169 | distribution of the source code, even though third parties are not
170 | compelled to copy the source along with the object code.
171 |
172 | 4. You may not copy, modify, sublicense, or distribute the Program
173 | except as expressly provided under this License. Any attempt
174 | otherwise to copy, modify, sublicense or distribute the Program is
175 | void, and will automatically terminate your rights under this License.
176 | However, parties who have received copies, or rights, from you under
177 | this License will not have their licenses terminated so long as such
178 | parties remain in full compliance.
179 |
180 | 5. You are not required to accept this License, since you have not
181 | signed it. However, nothing else grants you permission to modify or
182 | distribute the Program or its derivative works. These actions are
183 | prohibited by law if you do not accept this License. Therefore, by
184 | modifying or distributing the Program (or any work based on the
185 | Program), you indicate your acceptance of this License to do so, and
186 | all its terms and conditions for copying, distributing or modifying
187 | the Program or works based on it.
188 |
189 | 6. Each time you redistribute the Program (or any work based on the
190 | Program), the recipient automatically receives a license from the
191 | original licensor to copy, distribute or modify the Program subject to
192 | these terms and conditions. You may not impose any further
193 | restrictions on the recipients' exercise of the rights granted herein.
194 | You are not responsible for enforcing compliance by third parties to
195 | this License.
196 |
197 | 7. If, as a consequence of a court judgment or allegation of patent
198 | infringement or for any other reason (not limited to patent issues),
199 | conditions are imposed on you (whether by court order, agreement or
200 | otherwise) that contradict the conditions of this License, they do not
201 | excuse you from the conditions of this License. If you cannot
202 | distribute so as to satisfy simultaneously your obligations under this
203 | License and any other pertinent obligations, then as a consequence you
204 | may not distribute the Program at all. For example, if a patent
205 | license would not permit royalty-free redistribution of the Program by
206 | all those who receive copies directly or indirectly through you, then
207 | the only way you could satisfy both it and this License would be to
208 | refrain entirely from distribution of the Program.
209 |
210 | If any portion of this section is held invalid or unenforceable under
211 | any particular circumstance, the balance of the section is intended to
212 | apply and the section as a whole is intended to apply in other
213 | circumstances.
214 |
215 | It is not the purpose of this section to induce you to infringe any
216 | patents or other property right claims or to contest validity of any
217 | such claims; this section has the sole purpose of protecting the
218 | integrity of the free software distribution system, which is
219 | implemented by public license practices. Many people have made
220 | generous contributions to the wide range of software distributed
221 | through that system in reliance on consistent application of that
222 | system; it is up to the author/donor to decide if he or she is willing
223 | to distribute software through any other system and a licensee cannot
224 | impose that choice.
225 |
226 | This section is intended to make thoroughly clear what is believed to
227 | be a consequence of the rest of this License.
228 |
229 | 8. If the distribution and/or use of the Program is restricted in
230 | certain countries either by patents or by copyrighted interfaces, the
231 | original copyright holder who places the Program under this License
232 | may add an explicit geographical distribution limitation excluding
233 | those countries, so that distribution is permitted only in or among
234 | countries not thus excluded. In such case, this License incorporates
235 | the limitation as if written in the body of this License.
236 |
237 | 9. The Free Software Foundation may publish revised and/or new versions
238 | of the General Public License from time to time. Such new versions will
239 | be similar in spirit to the present version, but may differ in detail to
240 | address new problems or concerns.
241 |
242 | Each version is given a distinguishing version number. If the Program
243 | specifies a version number of this License which applies to it and "any
244 | later version", you have the option of following the terms and conditions
245 | either of that version or of any later version published by the Free
246 | Software Foundation. If the Program does not specify a version number of
247 | this License, you may choose any version ever published by the Free Software
248 | Foundation.
249 |
250 | 10. If you wish to incorporate parts of the Program into other free
251 | programs whose distribution conditions are different, write to the author
252 | to ask for permission. For software which is copyrighted by the Free
253 | Software Foundation, write to the Free Software Foundation; we sometimes
254 | make exceptions for this. Our decision will be guided by the two goals
255 | of preserving the free status of all derivatives of our free software and
256 | of promoting the sharing and reuse of software generally.
257 |
258 | NO WARRANTY
259 |
260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268 | REPAIR OR CORRECTION.
269 |
270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278 | POSSIBILITY OF SUCH DAMAGES.
279 |
280 | END OF TERMS AND CONDITIONS
281 |
282 | How to Apply These Terms to Your New Programs
283 |
284 | If you develop a new program, and you want it to be of the greatest
285 | possible use to the public, the best way to achieve this is to make it
286 | free software which everyone can redistribute and change under these terms.
287 |
288 | To do so, attach the following notices to the program. It is safest
289 | to attach them to the start of each source file to most effectively
290 | convey the exclusion of warranty; and each file should have at least
291 | the "copyright" line and a pointer to where the full notice is found.
292 |
293 |
294 | Copyright (C)
295 |
296 | This program is free software; you can redistribute it and/or modify
297 | it under the terms of the GNU General Public License as published by
298 | the Free Software Foundation; either version 2 of the License, or
299 | (at your option) any later version.
300 |
301 | This program is distributed in the hope that it will be useful,
302 | but WITHOUT ANY WARRANTY; without even the implied warranty of
303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304 | GNU General Public License for more details.
305 |
306 | You should have received a copy of the GNU General Public License along
307 | with this program; if not, write to the Free Software Foundation, Inc.,
308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309 |
310 | Also add information on how to contact you by electronic and paper mail.
311 |
312 | If the program is interactive, make it output a short notice like this
313 | when it starts in an interactive mode:
314 |
315 | Gnomovision version 69, Copyright (C) year name of author
316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317 | This is free software, and you are welcome to redistribute it
318 | under certain conditions; type `show c' for details.
319 |
320 | The hypothetical commands `show w' and `show c' should show the appropriate
321 | parts of the General Public License. Of course, the commands you use may
322 | be called something other than `show w' and `show c'; they could even be
323 | mouse-clicks or menu items--whatever suits your program.
324 |
325 | You should also get your employer (if you work as a programmer) or your
326 | school, if any, to sign a "copyright disclaimer" for the program, if
327 | necessary. Here is a sample; alter the names:
328 |
329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330 | `Gnomovision' (which makes passes at compilers) written by James Hacker.
331 |
332 | , 1 April 1989
333 | Ty Coon, President of Vice
334 |
335 | This General Public License does not permit incorporating your program into
336 | proprietary programs. If your program is a subroutine library, you may
337 | consider it more useful to permit linking proprietary applications with the
338 | library. If this is what you want to do, use the GNU Lesser General
339 | Public License instead of this License.
340 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: 5.4
2 |
3 | specifiers:
4 | '@types/node': 20.3.3
5 | '@types/react': 18.2.14
6 | '@types/react-dom': 18.2.6
7 | '@vercel/analytics': ^1.0.1
8 | autoprefixer: 10.4.14
9 | daisyui: ^3.1.7
10 | eslint: 8.44.0
11 | eslint-config-next: 13.4.8
12 | next: 13.4.8
13 | postcss: 8.4.24
14 | react: 18.2.0
15 | react-dom: 18.2.0
16 | tailwindcss: 3.3.2
17 | typescript: 5.1.6
18 |
19 | dependencies:
20 | '@types/node': 20.3.3
21 | '@types/react': 18.2.14
22 | '@types/react-dom': 18.2.6
23 | '@vercel/analytics': 1.0.1
24 | autoprefixer: 10.4.14_postcss@8.4.24
25 | eslint: 8.44.0
26 | eslint-config-next: 13.4.8_iqf7tbmerllfqanu4l3d6aqdn4
27 | next: 13.4.8_biqbaboplfbrettd7655fr4n2y
28 | postcss: 8.4.24
29 | react: 18.2.0
30 | react-dom: 18.2.0_react@18.2.0
31 | tailwindcss: 3.3.2
32 | typescript: 5.1.6
33 |
34 | devDependencies:
35 | daisyui: 3.1.7_postcss@8.4.24
36 |
37 | packages:
38 |
39 | /@aashutoshrathi/word-wrap/1.2.6:
40 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
41 | engines: {node: '>=0.10.0'}
42 | dev: false
43 |
44 | /@alloc/quick-lru/5.2.0:
45 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
46 | engines: {node: '>=10'}
47 |
48 | /@babel/runtime/7.22.6:
49 | resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==}
50 | engines: {node: '>=6.9.0'}
51 | dependencies:
52 | regenerator-runtime: 0.13.11
53 | dev: false
54 |
55 | /@eslint-community/eslint-utils/4.4.0_eslint@8.44.0:
56 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
57 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
58 | peerDependencies:
59 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
60 | dependencies:
61 | eslint: 8.44.0
62 | eslint-visitor-keys: 3.4.1
63 | dev: false
64 |
65 | /@eslint-community/regexpp/4.5.1:
66 | resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==}
67 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
68 | dev: false
69 |
70 | /@eslint/eslintrc/2.1.0:
71 | resolution: {integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==}
72 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
73 | dependencies:
74 | ajv: 6.12.6
75 | debug: 4.3.4
76 | espree: 9.6.0
77 | globals: 13.20.0
78 | ignore: 5.2.4
79 | import-fresh: 3.3.0
80 | js-yaml: 4.1.0
81 | minimatch: 3.1.2
82 | strip-json-comments: 3.1.1
83 | transitivePeerDependencies:
84 | - supports-color
85 | dev: false
86 |
87 | /@eslint/js/8.44.0:
88 | resolution: {integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==}
89 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
90 | dev: false
91 |
92 | /@humanwhocodes/config-array/0.11.10:
93 | resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==}
94 | engines: {node: '>=10.10.0'}
95 | dependencies:
96 | '@humanwhocodes/object-schema': 1.2.1
97 | debug: 4.3.4
98 | minimatch: 3.1.2
99 | transitivePeerDependencies:
100 | - supports-color
101 | dev: false
102 |
103 | /@humanwhocodes/module-importer/1.0.1:
104 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
105 | engines: {node: '>=12.22'}
106 | dev: false
107 |
108 | /@humanwhocodes/object-schema/1.2.1:
109 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
110 | dev: false
111 |
112 | /@jridgewell/gen-mapping/0.3.3:
113 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
114 | engines: {node: '>=6.0.0'}
115 | dependencies:
116 | '@jridgewell/set-array': 1.1.2
117 | '@jridgewell/sourcemap-codec': 1.4.15
118 | '@jridgewell/trace-mapping': 0.3.18
119 |
120 | /@jridgewell/resolve-uri/3.1.0:
121 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
122 | engines: {node: '>=6.0.0'}
123 |
124 | /@jridgewell/set-array/1.1.2:
125 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
126 | engines: {node: '>=6.0.0'}
127 |
128 | /@jridgewell/sourcemap-codec/1.4.14:
129 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
130 |
131 | /@jridgewell/sourcemap-codec/1.4.15:
132 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
133 |
134 | /@jridgewell/trace-mapping/0.3.18:
135 | resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
136 | dependencies:
137 | '@jridgewell/resolve-uri': 3.1.0
138 | '@jridgewell/sourcemap-codec': 1.4.14
139 |
140 | /@next/env/13.4.8:
141 | resolution: {integrity: sha512-twuSf1klb3k9wXI7IZhbZGtFCWvGD4wXTY2rmvzIgVhXhs7ISThrbNyutBx3jWIL8Y/Hk9+woytFz5QsgtcRKQ==}
142 | dev: false
143 |
144 | /@next/eslint-plugin-next/13.4.8:
145 | resolution: {integrity: sha512-cmfVHpxWjjcETFt2WHnoFU6EmY69QcPJRlRNAooQlNe53Ke90vg1Ci/dkPffryJZaxxiRziP9bQrV8lDVCn3Fw==}
146 | dependencies:
147 | glob: 7.1.7
148 | dev: false
149 |
150 | /@next/swc-darwin-arm64/13.4.8:
151 | resolution: {integrity: sha512-MSFplVM4dTWOuKAUv0XR9gY7AWtMSBu9os9f+kp+s5rWhM1I2CdR3obFttd6366nS/W/VZxbPM5oEIdlIa46zA==}
152 | engines: {node: '>= 10'}
153 | cpu: [arm64]
154 | os: [darwin]
155 | requiresBuild: true
156 | dev: false
157 | optional: true
158 |
159 | /@next/swc-darwin-x64/13.4.8:
160 | resolution: {integrity: sha512-Reox+UXgonon9P0WNDE6w85DGtyBqGitl/ryznOvn6TvfxEaZIpTgeu3ZrJLU9dHSMhiK7YAM793mE/Zii2/Qw==}
161 | engines: {node: '>= 10'}
162 | cpu: [x64]
163 | os: [darwin]
164 | requiresBuild: true
165 | dev: false
166 | optional: true
167 |
168 | /@next/swc-linux-arm64-gnu/13.4.8:
169 | resolution: {integrity: sha512-kdyzYvAYtqQVgzIKNN7e1rLU8aZv86FDSRqPlOkKZlvqudvTO0iohuTPmnEEDlECeBM6qRPShNffotDcU/R2KA==}
170 | engines: {node: '>= 10'}
171 | cpu: [arm64]
172 | os: [linux]
173 | libc: [glibc]
174 | requiresBuild: true
175 | dev: false
176 | optional: true
177 |
178 | /@next/swc-linux-arm64-musl/13.4.8:
179 | resolution: {integrity: sha512-oWxx4yRkUGcR81XwbI+T0zhZ3bDF6V1aVLpG+C7hSG50ULpV8gC39UxVO22/bv93ZlcfMY4zl8xkz9Klct6dpQ==}
180 | engines: {node: '>= 10'}
181 | cpu: [arm64]
182 | os: [linux]
183 | libc: [musl]
184 | requiresBuild: true
185 | dev: false
186 | optional: true
187 |
188 | /@next/swc-linux-x64-gnu/13.4.8:
189 | resolution: {integrity: sha512-anhtvuO6eE9YRhYnaEGTfbpH3L5gT/9qPFcNoi6xS432r/4DAtpJY8kNktqkTVevVIC/pVumqO8tV59PR3zbNg==}
190 | engines: {node: '>= 10'}
191 | cpu: [x64]
192 | os: [linux]
193 | libc: [glibc]
194 | requiresBuild: true
195 | dev: false
196 | optional: true
197 |
198 | /@next/swc-linux-x64-musl/13.4.8:
199 | resolution: {integrity: sha512-aR+J4wWfNgH1DwCCBNjan7Iumx0lLtn+2/rEYuhIrYLY4vnxqSVGz9u3fXcgUwo6Q9LT8NFkaqK1vPprdq+BXg==}
200 | engines: {node: '>= 10'}
201 | cpu: [x64]
202 | os: [linux]
203 | libc: [musl]
204 | requiresBuild: true
205 | dev: false
206 | optional: true
207 |
208 | /@next/swc-win32-arm64-msvc/13.4.8:
209 | resolution: {integrity: sha512-OWBKIrJwQBTqrat0xhxEB/jcsjJR3+diD9nc/Y8F1mRdQzsn4bPsomgJyuqPVZs6Lz3K18qdIkvywmfSq75SsQ==}
210 | engines: {node: '>= 10'}
211 | cpu: [arm64]
212 | os: [win32]
213 | requiresBuild: true
214 | dev: false
215 | optional: true
216 |
217 | /@next/swc-win32-ia32-msvc/13.4.8:
218 | resolution: {integrity: sha512-agiPWGjUndXGTOn4ChbKipQXRA6/UPkywAWIkx7BhgGv48TiJfHTK6MGfBoL9tS6B4mtW39++uy0wFPnfD0JWg==}
219 | engines: {node: '>= 10'}
220 | cpu: [ia32]
221 | os: [win32]
222 | requiresBuild: true
223 | dev: false
224 | optional: true
225 |
226 | /@next/swc-win32-x64-msvc/13.4.8:
227 | resolution: {integrity: sha512-UIRKoByVKbuR6SnFG4JM8EMFlJrfEGuUQ1ihxzEleWcNwRMMiVaCj1KyqfTOW8VTQhJ0u8P1Ngg6q1RwnIBTtw==}
228 | engines: {node: '>= 10'}
229 | cpu: [x64]
230 | os: [win32]
231 | requiresBuild: true
232 | dev: false
233 | optional: true
234 |
235 | /@nodelib/fs.scandir/2.1.5:
236 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
237 | engines: {node: '>= 8'}
238 | dependencies:
239 | '@nodelib/fs.stat': 2.0.5
240 | run-parallel: 1.2.0
241 |
242 | /@nodelib/fs.stat/2.0.5:
243 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
244 | engines: {node: '>= 8'}
245 |
246 | /@nodelib/fs.walk/1.2.8:
247 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
248 | engines: {node: '>= 8'}
249 | dependencies:
250 | '@nodelib/fs.scandir': 2.1.5
251 | fastq: 1.15.0
252 |
253 | /@pkgr/utils/2.4.1:
254 | resolution: {integrity: sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==}
255 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
256 | dependencies:
257 | cross-spawn: 7.0.3
258 | fast-glob: 3.3.0
259 | is-glob: 4.0.3
260 | open: 9.1.0
261 | picocolors: 1.0.0
262 | tslib: 2.6.0
263 | dev: false
264 |
265 | /@rushstack/eslint-patch/1.3.2:
266 | resolution: {integrity: sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==}
267 | dev: false
268 |
269 | /@swc/helpers/0.5.1:
270 | resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==}
271 | dependencies:
272 | tslib: 2.6.0
273 | dev: false
274 |
275 | /@types/json5/0.0.29:
276 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
277 | dev: false
278 |
279 | /@types/node/20.3.3:
280 | resolution: {integrity: sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==}
281 | dev: false
282 |
283 | /@types/prop-types/15.7.5:
284 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
285 | dev: false
286 |
287 | /@types/react-dom/18.2.6:
288 | resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==}
289 | dependencies:
290 | '@types/react': 18.2.14
291 | dev: false
292 |
293 | /@types/react/18.2.14:
294 | resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==}
295 | dependencies:
296 | '@types/prop-types': 15.7.5
297 | '@types/scheduler': 0.16.3
298 | csstype: 3.1.2
299 | dev: false
300 |
301 | /@types/scheduler/0.16.3:
302 | resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
303 | dev: false
304 |
305 | /@typescript-eslint/parser/5.61.0_iqf7tbmerllfqanu4l3d6aqdn4:
306 | resolution: {integrity: sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==}
307 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
308 | peerDependencies:
309 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
310 | typescript: '*'
311 | peerDependenciesMeta:
312 | typescript:
313 | optional: true
314 | dependencies:
315 | '@typescript-eslint/scope-manager': 5.61.0
316 | '@typescript-eslint/types': 5.61.0
317 | '@typescript-eslint/typescript-estree': 5.61.0_typescript@5.1.6
318 | debug: 4.3.4
319 | eslint: 8.44.0
320 | typescript: 5.1.6
321 | transitivePeerDependencies:
322 | - supports-color
323 | dev: false
324 |
325 | /@typescript-eslint/scope-manager/5.61.0:
326 | resolution: {integrity: sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw==}
327 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
328 | dependencies:
329 | '@typescript-eslint/types': 5.61.0
330 | '@typescript-eslint/visitor-keys': 5.61.0
331 | dev: false
332 |
333 | /@typescript-eslint/types/5.61.0:
334 | resolution: {integrity: sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==}
335 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
336 | dev: false
337 |
338 | /@typescript-eslint/typescript-estree/5.61.0_typescript@5.1.6:
339 | resolution: {integrity: sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==}
340 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
341 | peerDependencies:
342 | typescript: '*'
343 | peerDependenciesMeta:
344 | typescript:
345 | optional: true
346 | dependencies:
347 | '@typescript-eslint/types': 5.61.0
348 | '@typescript-eslint/visitor-keys': 5.61.0
349 | debug: 4.3.4
350 | globby: 11.1.0
351 | is-glob: 4.0.3
352 | semver: 7.5.3
353 | tsutils: 3.21.0_typescript@5.1.6
354 | typescript: 5.1.6
355 | transitivePeerDependencies:
356 | - supports-color
357 | dev: false
358 |
359 | /@typescript-eslint/visitor-keys/5.61.0:
360 | resolution: {integrity: sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg==}
361 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
362 | dependencies:
363 | '@typescript-eslint/types': 5.61.0
364 | eslint-visitor-keys: 3.4.1
365 | dev: false
366 |
367 | /@vercel/analytics/1.0.1:
368 | resolution: {integrity: sha512-Ux0c9qUfkcPqng3vrR0GTrlQdqNJ2JREn/2ydrVuKwM3RtMfF2mWX31Ijqo1opSjNAq6rK76PwtANw6kl6TAow==}
369 | dev: false
370 |
371 | /acorn-jsx/5.3.2_acorn@8.9.0:
372 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
373 | peerDependencies:
374 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
375 | dependencies:
376 | acorn: 8.9.0
377 | dev: false
378 |
379 | /acorn/8.9.0:
380 | resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==}
381 | engines: {node: '>=0.4.0'}
382 | hasBin: true
383 | dev: false
384 |
385 | /ajv/6.12.6:
386 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
387 | dependencies:
388 | fast-deep-equal: 3.1.3
389 | fast-json-stable-stringify: 2.1.0
390 | json-schema-traverse: 0.4.1
391 | uri-js: 4.4.1
392 | dev: false
393 |
394 | /ansi-regex/5.0.1:
395 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
396 | engines: {node: '>=8'}
397 | dev: false
398 |
399 | /ansi-styles/4.3.0:
400 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
401 | engines: {node: '>=8'}
402 | dependencies:
403 | color-convert: 2.0.1
404 | dev: false
405 |
406 | /any-promise/1.3.0:
407 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
408 |
409 | /anymatch/3.1.3:
410 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
411 | engines: {node: '>= 8'}
412 | dependencies:
413 | normalize-path: 3.0.0
414 | picomatch: 2.3.1
415 |
416 | /arg/5.0.2:
417 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
418 |
419 | /argparse/2.0.1:
420 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
421 | dev: false
422 |
423 | /aria-query/5.3.0:
424 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
425 | dependencies:
426 | dequal: 2.0.3
427 | dev: false
428 |
429 | /array-buffer-byte-length/1.0.0:
430 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
431 | dependencies:
432 | call-bind: 1.0.2
433 | is-array-buffer: 3.0.2
434 | dev: false
435 |
436 | /array-includes/3.1.6:
437 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
438 | engines: {node: '>= 0.4'}
439 | dependencies:
440 | call-bind: 1.0.2
441 | define-properties: 1.2.0
442 | es-abstract: 1.21.2
443 | get-intrinsic: 1.2.1
444 | is-string: 1.0.7
445 | dev: false
446 |
447 | /array-union/2.1.0:
448 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
449 | engines: {node: '>=8'}
450 | dev: false
451 |
452 | /array.prototype.flat/1.3.1:
453 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
454 | engines: {node: '>= 0.4'}
455 | dependencies:
456 | call-bind: 1.0.2
457 | define-properties: 1.2.0
458 | es-abstract: 1.21.2
459 | es-shim-unscopables: 1.0.0
460 | dev: false
461 |
462 | /array.prototype.flatmap/1.3.1:
463 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
464 | engines: {node: '>= 0.4'}
465 | dependencies:
466 | call-bind: 1.0.2
467 | define-properties: 1.2.0
468 | es-abstract: 1.21.2
469 | es-shim-unscopables: 1.0.0
470 | dev: false
471 |
472 | /array.prototype.tosorted/1.1.1:
473 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
474 | dependencies:
475 | call-bind: 1.0.2
476 | define-properties: 1.2.0
477 | es-abstract: 1.21.2
478 | es-shim-unscopables: 1.0.0
479 | get-intrinsic: 1.2.1
480 | dev: false
481 |
482 | /ast-types-flow/0.0.7:
483 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
484 | dev: false
485 |
486 | /autoprefixer/10.4.14_postcss@8.4.24:
487 | resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
488 | engines: {node: ^10 || ^12 || >=14}
489 | hasBin: true
490 | peerDependencies:
491 | postcss: ^8.1.0
492 | dependencies:
493 | browserslist: 4.21.9
494 | caniuse-lite: 1.0.30001512
495 | fraction.js: 4.2.0
496 | normalize-range: 0.1.2
497 | picocolors: 1.0.0
498 | postcss: 8.4.24
499 | postcss-value-parser: 4.2.0
500 | dev: false
501 |
502 | /available-typed-arrays/1.0.5:
503 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
504 | engines: {node: '>= 0.4'}
505 | dev: false
506 |
507 | /axe-core/4.7.2:
508 | resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==}
509 | engines: {node: '>=4'}
510 | dev: false
511 |
512 | /axobject-query/3.2.1:
513 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
514 | dependencies:
515 | dequal: 2.0.3
516 | dev: false
517 |
518 | /balanced-match/1.0.2:
519 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
520 |
521 | /big-integer/1.6.51:
522 | resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
523 | engines: {node: '>=0.6'}
524 | dev: false
525 |
526 | /binary-extensions/2.2.0:
527 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
528 | engines: {node: '>=8'}
529 |
530 | /bplist-parser/0.2.0:
531 | resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
532 | engines: {node: '>= 5.10.0'}
533 | dependencies:
534 | big-integer: 1.6.51
535 | dev: false
536 |
537 | /brace-expansion/1.1.11:
538 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
539 | dependencies:
540 | balanced-match: 1.0.2
541 | concat-map: 0.0.1
542 |
543 | /braces/3.0.2:
544 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
545 | engines: {node: '>=8'}
546 | dependencies:
547 | fill-range: 7.0.1
548 |
549 | /browserslist/4.21.9:
550 | resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==}
551 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
552 | hasBin: true
553 | dependencies:
554 | caniuse-lite: 1.0.30001512
555 | electron-to-chromium: 1.4.449
556 | node-releases: 2.0.12
557 | update-browserslist-db: 1.0.11_browserslist@4.21.9
558 | dev: false
559 |
560 | /bundle-name/3.0.0:
561 | resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==}
562 | engines: {node: '>=12'}
563 | dependencies:
564 | run-applescript: 5.0.0
565 | dev: false
566 |
567 | /busboy/1.6.0:
568 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
569 | engines: {node: '>=10.16.0'}
570 | dependencies:
571 | streamsearch: 1.1.0
572 | dev: false
573 |
574 | /call-bind/1.0.2:
575 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
576 | dependencies:
577 | function-bind: 1.1.1
578 | get-intrinsic: 1.2.1
579 | dev: false
580 |
581 | /callsites/3.1.0:
582 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
583 | engines: {node: '>=6'}
584 | dev: false
585 |
586 | /camelcase-css/2.0.1:
587 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
588 | engines: {node: '>= 6'}
589 |
590 | /caniuse-lite/1.0.30001512:
591 | resolution: {integrity: sha512-2S9nK0G/mE+jasCUsMPlARhRCts1ebcp2Ji8Y8PWi4NDE1iRdLCnEPHkEfeBrGC45L4isBx5ur3IQ6yTE2mRZw==}
592 | dev: false
593 |
594 | /chalk/4.1.2:
595 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
596 | engines: {node: '>=10'}
597 | dependencies:
598 | ansi-styles: 4.3.0
599 | supports-color: 7.2.0
600 | dev: false
601 |
602 | /chokidar/3.5.3:
603 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
604 | engines: {node: '>= 8.10.0'}
605 | dependencies:
606 | anymatch: 3.1.3
607 | braces: 3.0.2
608 | glob-parent: 5.1.2
609 | is-binary-path: 2.1.0
610 | is-glob: 4.0.3
611 | normalize-path: 3.0.0
612 | readdirp: 3.6.0
613 | optionalDependencies:
614 | fsevents: 2.3.2
615 |
616 | /client-only/0.0.1:
617 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
618 | dev: false
619 |
620 | /color-convert/2.0.1:
621 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
622 | engines: {node: '>=7.0.0'}
623 | dependencies:
624 | color-name: 1.1.4
625 | dev: false
626 |
627 | /color-name/1.1.4:
628 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
629 | dev: false
630 |
631 | /colord/2.9.3:
632 | resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
633 | dev: true
634 |
635 | /commander/4.1.1:
636 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
637 | engines: {node: '>= 6'}
638 |
639 | /concat-map/0.0.1:
640 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
641 |
642 | /cross-spawn/7.0.3:
643 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
644 | engines: {node: '>= 8'}
645 | dependencies:
646 | path-key: 3.1.1
647 | shebang-command: 2.0.0
648 | which: 2.0.2
649 | dev: false
650 |
651 | /css-selector-tokenizer/0.8.0:
652 | resolution: {integrity: sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==}
653 | dependencies:
654 | cssesc: 3.0.0
655 | fastparse: 1.1.2
656 | dev: true
657 |
658 | /cssesc/3.0.0:
659 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
660 | engines: {node: '>=4'}
661 | hasBin: true
662 |
663 | /csstype/3.1.2:
664 | resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
665 | dev: false
666 |
667 | /daisyui/3.1.7_postcss@8.4.24:
668 | resolution: {integrity: sha512-VQhaunQlB7Buo+AbE+S3i6H/eYknKEuKVHG67y7sbG58uEjeLK6n2rojG3YE7fwoOss6ldbUL8Oy0MyoJi0CHw==}
669 | engines: {node: '>=16.9.0'}
670 | peerDependencies:
671 | postcss: ^8
672 | dependencies:
673 | colord: 2.9.3
674 | css-selector-tokenizer: 0.8.0
675 | postcss: 8.4.24
676 | postcss-js: 4.0.1_postcss@8.4.24
677 | tailwindcss: 3.3.2
678 | transitivePeerDependencies:
679 | - ts-node
680 | dev: true
681 |
682 | /damerau-levenshtein/1.0.8:
683 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
684 | dev: false
685 |
686 | /debug/3.2.7:
687 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
688 | peerDependencies:
689 | supports-color: '*'
690 | peerDependenciesMeta:
691 | supports-color:
692 | optional: true
693 | dependencies:
694 | ms: 2.1.3
695 | dev: false
696 |
697 | /debug/4.3.4:
698 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
699 | engines: {node: '>=6.0'}
700 | peerDependencies:
701 | supports-color: '*'
702 | peerDependenciesMeta:
703 | supports-color:
704 | optional: true
705 | dependencies:
706 | ms: 2.1.2
707 | dev: false
708 |
709 | /deep-is/0.1.4:
710 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
711 | dev: false
712 |
713 | /default-browser-id/3.0.0:
714 | resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
715 | engines: {node: '>=12'}
716 | dependencies:
717 | bplist-parser: 0.2.0
718 | untildify: 4.0.0
719 | dev: false
720 |
721 | /default-browser/4.0.0:
722 | resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==}
723 | engines: {node: '>=14.16'}
724 | dependencies:
725 | bundle-name: 3.0.0
726 | default-browser-id: 3.0.0
727 | execa: 7.1.1
728 | titleize: 3.0.0
729 | dev: false
730 |
731 | /define-lazy-prop/3.0.0:
732 | resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
733 | engines: {node: '>=12'}
734 | dev: false
735 |
736 | /define-properties/1.2.0:
737 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
738 | engines: {node: '>= 0.4'}
739 | dependencies:
740 | has-property-descriptors: 1.0.0
741 | object-keys: 1.1.1
742 | dev: false
743 |
744 | /dequal/2.0.3:
745 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
746 | engines: {node: '>=6'}
747 | dev: false
748 |
749 | /didyoumean/1.2.2:
750 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
751 |
752 | /dir-glob/3.0.1:
753 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
754 | engines: {node: '>=8'}
755 | dependencies:
756 | path-type: 4.0.0
757 | dev: false
758 |
759 | /dlv/1.1.3:
760 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
761 |
762 | /doctrine/2.1.0:
763 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
764 | engines: {node: '>=0.10.0'}
765 | dependencies:
766 | esutils: 2.0.3
767 | dev: false
768 |
769 | /doctrine/3.0.0:
770 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
771 | engines: {node: '>=6.0.0'}
772 | dependencies:
773 | esutils: 2.0.3
774 | dev: false
775 |
776 | /electron-to-chromium/1.4.449:
777 | resolution: {integrity: sha512-TxLRpRUj/107ATefeP8VIUWNOv90xJxZZbCW/eIbSZQiuiFANCx2b7u+GbVc9X4gU+xnbvypNMYVM/WArE1DNQ==}
778 | dev: false
779 |
780 | /emoji-regex/9.2.2:
781 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
782 | dev: false
783 |
784 | /enhanced-resolve/5.15.0:
785 | resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
786 | engines: {node: '>=10.13.0'}
787 | dependencies:
788 | graceful-fs: 4.2.11
789 | tapable: 2.2.1
790 | dev: false
791 |
792 | /es-abstract/1.21.2:
793 | resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
794 | engines: {node: '>= 0.4'}
795 | dependencies:
796 | array-buffer-byte-length: 1.0.0
797 | available-typed-arrays: 1.0.5
798 | call-bind: 1.0.2
799 | es-set-tostringtag: 2.0.1
800 | es-to-primitive: 1.2.1
801 | function.prototype.name: 1.1.5
802 | get-intrinsic: 1.2.1
803 | get-symbol-description: 1.0.0
804 | globalthis: 1.0.3
805 | gopd: 1.0.1
806 | has: 1.0.3
807 | has-property-descriptors: 1.0.0
808 | has-proto: 1.0.1
809 | has-symbols: 1.0.3
810 | internal-slot: 1.0.5
811 | is-array-buffer: 3.0.2
812 | is-callable: 1.2.7
813 | is-negative-zero: 2.0.2
814 | is-regex: 1.1.4
815 | is-shared-array-buffer: 1.0.2
816 | is-string: 1.0.7
817 | is-typed-array: 1.1.10
818 | is-weakref: 1.0.2
819 | object-inspect: 1.12.3
820 | object-keys: 1.1.1
821 | object.assign: 4.1.4
822 | regexp.prototype.flags: 1.5.0
823 | safe-regex-test: 1.0.0
824 | string.prototype.trim: 1.2.7
825 | string.prototype.trimend: 1.0.6
826 | string.prototype.trimstart: 1.0.6
827 | typed-array-length: 1.0.4
828 | unbox-primitive: 1.0.2
829 | which-typed-array: 1.1.9
830 | dev: false
831 |
832 | /es-set-tostringtag/2.0.1:
833 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
834 | engines: {node: '>= 0.4'}
835 | dependencies:
836 | get-intrinsic: 1.2.1
837 | has: 1.0.3
838 | has-tostringtag: 1.0.0
839 | dev: false
840 |
841 | /es-shim-unscopables/1.0.0:
842 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
843 | dependencies:
844 | has: 1.0.3
845 | dev: false
846 |
847 | /es-to-primitive/1.2.1:
848 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
849 | engines: {node: '>= 0.4'}
850 | dependencies:
851 | is-callable: 1.2.7
852 | is-date-object: 1.0.5
853 | is-symbol: 1.0.4
854 | dev: false
855 |
856 | /escalade/3.1.1:
857 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
858 | engines: {node: '>=6'}
859 | dev: false
860 |
861 | /escape-string-regexp/4.0.0:
862 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
863 | engines: {node: '>=10'}
864 | dev: false
865 |
866 | /eslint-config-next/13.4.8_iqf7tbmerllfqanu4l3d6aqdn4:
867 | resolution: {integrity: sha512-2hE0b6lHuhtHBX8VgEXi8v4G8PVrPUBMOSLCTq8qtcQ2qQOX7+uBOLK2kU4FD2qDZzyXNlhmuH+WLT5ptY4XLA==}
868 | peerDependencies:
869 | eslint: ^7.23.0 || ^8.0.0
870 | typescript: '>=3.3.1'
871 | peerDependenciesMeta:
872 | typescript:
873 | optional: true
874 | dependencies:
875 | '@next/eslint-plugin-next': 13.4.8
876 | '@rushstack/eslint-patch': 1.3.2
877 | '@typescript-eslint/parser': 5.61.0_iqf7tbmerllfqanu4l3d6aqdn4
878 | eslint: 8.44.0
879 | eslint-import-resolver-node: 0.3.7
880 | eslint-import-resolver-typescript: 3.5.5_7teo7ccsryloqgrqffftdxm45q
881 | eslint-plugin-import: 2.27.5_wy7nsyjnxc6ldysirxc3g7elee
882 | eslint-plugin-jsx-a11y: 6.7.1_eslint@8.44.0
883 | eslint-plugin-react: 7.32.2_eslint@8.44.0
884 | eslint-plugin-react-hooks: 4.6.0_eslint@8.44.0
885 | typescript: 5.1.6
886 | transitivePeerDependencies:
887 | - eslint-import-resolver-webpack
888 | - supports-color
889 | dev: false
890 |
891 | /eslint-import-resolver-node/0.3.7:
892 | resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
893 | dependencies:
894 | debug: 3.2.7
895 | is-core-module: 2.12.1
896 | resolve: 1.22.2
897 | transitivePeerDependencies:
898 | - supports-color
899 | dev: false
900 |
901 | /eslint-import-resolver-typescript/3.5.5_7teo7ccsryloqgrqffftdxm45q:
902 | resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==}
903 | engines: {node: ^14.18.0 || >=16.0.0}
904 | peerDependencies:
905 | eslint: '*'
906 | eslint-plugin-import: '*'
907 | dependencies:
908 | debug: 4.3.4
909 | enhanced-resolve: 5.15.0
910 | eslint: 8.44.0
911 | eslint-module-utils: 2.8.0_k72lcz6ogyhqeiwgfjkbnrfxga
912 | eslint-plugin-import: 2.27.5_wy7nsyjnxc6ldysirxc3g7elee
913 | get-tsconfig: 4.6.2
914 | globby: 13.2.1
915 | is-core-module: 2.12.1
916 | is-glob: 4.0.3
917 | synckit: 0.8.5
918 | transitivePeerDependencies:
919 | - '@typescript-eslint/parser'
920 | - eslint-import-resolver-node
921 | - eslint-import-resolver-webpack
922 | - supports-color
923 | dev: false
924 |
925 | /eslint-module-utils/2.8.0_k72lcz6ogyhqeiwgfjkbnrfxga:
926 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
927 | engines: {node: '>=4'}
928 | peerDependencies:
929 | '@typescript-eslint/parser': '*'
930 | eslint: '*'
931 | eslint-import-resolver-node: '*'
932 | eslint-import-resolver-typescript: '*'
933 | eslint-import-resolver-webpack: '*'
934 | peerDependenciesMeta:
935 | '@typescript-eslint/parser':
936 | optional: true
937 | eslint:
938 | optional: true
939 | eslint-import-resolver-node:
940 | optional: true
941 | eslint-import-resolver-typescript:
942 | optional: true
943 | eslint-import-resolver-webpack:
944 | optional: true
945 | dependencies:
946 | '@typescript-eslint/parser': 5.61.0_iqf7tbmerllfqanu4l3d6aqdn4
947 | debug: 3.2.7
948 | eslint: 8.44.0
949 | eslint-import-resolver-node: 0.3.7
950 | eslint-import-resolver-typescript: 3.5.5_7teo7ccsryloqgrqffftdxm45q
951 | transitivePeerDependencies:
952 | - supports-color
953 | dev: false
954 |
955 | /eslint-plugin-import/2.27.5_wy7nsyjnxc6ldysirxc3g7elee:
956 | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
957 | engines: {node: '>=4'}
958 | peerDependencies:
959 | '@typescript-eslint/parser': '*'
960 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
961 | peerDependenciesMeta:
962 | '@typescript-eslint/parser':
963 | optional: true
964 | dependencies:
965 | '@typescript-eslint/parser': 5.61.0_iqf7tbmerllfqanu4l3d6aqdn4
966 | array-includes: 3.1.6
967 | array.prototype.flat: 1.3.1
968 | array.prototype.flatmap: 1.3.1
969 | debug: 3.2.7
970 | doctrine: 2.1.0
971 | eslint: 8.44.0
972 | eslint-import-resolver-node: 0.3.7
973 | eslint-module-utils: 2.8.0_k72lcz6ogyhqeiwgfjkbnrfxga
974 | has: 1.0.3
975 | is-core-module: 2.12.1
976 | is-glob: 4.0.3
977 | minimatch: 3.1.2
978 | object.values: 1.1.6
979 | resolve: 1.22.2
980 | semver: 6.3.0
981 | tsconfig-paths: 3.14.2
982 | transitivePeerDependencies:
983 | - eslint-import-resolver-typescript
984 | - eslint-import-resolver-webpack
985 | - supports-color
986 | dev: false
987 |
988 | /eslint-plugin-jsx-a11y/6.7.1_eslint@8.44.0:
989 | resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
990 | engines: {node: '>=4.0'}
991 | peerDependencies:
992 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
993 | dependencies:
994 | '@babel/runtime': 7.22.6
995 | aria-query: 5.3.0
996 | array-includes: 3.1.6
997 | array.prototype.flatmap: 1.3.1
998 | ast-types-flow: 0.0.7
999 | axe-core: 4.7.2
1000 | axobject-query: 3.2.1
1001 | damerau-levenshtein: 1.0.8
1002 | emoji-regex: 9.2.2
1003 | eslint: 8.44.0
1004 | has: 1.0.3
1005 | jsx-ast-utils: 3.3.4
1006 | language-tags: 1.0.5
1007 | minimatch: 3.1.2
1008 | object.entries: 1.1.6
1009 | object.fromentries: 2.0.6
1010 | semver: 6.3.0
1011 | dev: false
1012 |
1013 | /eslint-plugin-react-hooks/4.6.0_eslint@8.44.0:
1014 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
1015 | engines: {node: '>=10'}
1016 | peerDependencies:
1017 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
1018 | dependencies:
1019 | eslint: 8.44.0
1020 | dev: false
1021 |
1022 | /eslint-plugin-react/7.32.2_eslint@8.44.0:
1023 | resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
1024 | engines: {node: '>=4'}
1025 | peerDependencies:
1026 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1027 | dependencies:
1028 | array-includes: 3.1.6
1029 | array.prototype.flatmap: 1.3.1
1030 | array.prototype.tosorted: 1.1.1
1031 | doctrine: 2.1.0
1032 | eslint: 8.44.0
1033 | estraverse: 5.3.0
1034 | jsx-ast-utils: 3.3.4
1035 | minimatch: 3.1.2
1036 | object.entries: 1.1.6
1037 | object.fromentries: 2.0.6
1038 | object.hasown: 1.1.2
1039 | object.values: 1.1.6
1040 | prop-types: 15.8.1
1041 | resolve: 2.0.0-next.4
1042 | semver: 6.3.0
1043 | string.prototype.matchall: 4.0.8
1044 | dev: false
1045 |
1046 | /eslint-scope/7.2.0:
1047 | resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
1048 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1049 | dependencies:
1050 | esrecurse: 4.3.0
1051 | estraverse: 5.3.0
1052 | dev: false
1053 |
1054 | /eslint-visitor-keys/3.4.1:
1055 | resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==}
1056 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1057 | dev: false
1058 |
1059 | /eslint/8.44.0:
1060 | resolution: {integrity: sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==}
1061 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1062 | hasBin: true
1063 | dependencies:
1064 | '@eslint-community/eslint-utils': 4.4.0_eslint@8.44.0
1065 | '@eslint-community/regexpp': 4.5.1
1066 | '@eslint/eslintrc': 2.1.0
1067 | '@eslint/js': 8.44.0
1068 | '@humanwhocodes/config-array': 0.11.10
1069 | '@humanwhocodes/module-importer': 1.0.1
1070 | '@nodelib/fs.walk': 1.2.8
1071 | ajv: 6.12.6
1072 | chalk: 4.1.2
1073 | cross-spawn: 7.0.3
1074 | debug: 4.3.4
1075 | doctrine: 3.0.0
1076 | escape-string-regexp: 4.0.0
1077 | eslint-scope: 7.2.0
1078 | eslint-visitor-keys: 3.4.1
1079 | espree: 9.6.0
1080 | esquery: 1.5.0
1081 | esutils: 2.0.3
1082 | fast-deep-equal: 3.1.3
1083 | file-entry-cache: 6.0.1
1084 | find-up: 5.0.0
1085 | glob-parent: 6.0.2
1086 | globals: 13.20.0
1087 | graphemer: 1.4.0
1088 | ignore: 5.2.4
1089 | import-fresh: 3.3.0
1090 | imurmurhash: 0.1.4
1091 | is-glob: 4.0.3
1092 | is-path-inside: 3.0.3
1093 | js-yaml: 4.1.0
1094 | json-stable-stringify-without-jsonify: 1.0.1
1095 | levn: 0.4.1
1096 | lodash.merge: 4.6.2
1097 | minimatch: 3.1.2
1098 | natural-compare: 1.4.0
1099 | optionator: 0.9.3
1100 | strip-ansi: 6.0.1
1101 | strip-json-comments: 3.1.1
1102 | text-table: 0.2.0
1103 | transitivePeerDependencies:
1104 | - supports-color
1105 | dev: false
1106 |
1107 | /espree/9.6.0:
1108 | resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==}
1109 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1110 | dependencies:
1111 | acorn: 8.9.0
1112 | acorn-jsx: 5.3.2_acorn@8.9.0
1113 | eslint-visitor-keys: 3.4.1
1114 | dev: false
1115 |
1116 | /esquery/1.5.0:
1117 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
1118 | engines: {node: '>=0.10'}
1119 | dependencies:
1120 | estraverse: 5.3.0
1121 | dev: false
1122 |
1123 | /esrecurse/4.3.0:
1124 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1125 | engines: {node: '>=4.0'}
1126 | dependencies:
1127 | estraverse: 5.3.0
1128 | dev: false
1129 |
1130 | /estraverse/5.3.0:
1131 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1132 | engines: {node: '>=4.0'}
1133 | dev: false
1134 |
1135 | /esutils/2.0.3:
1136 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1137 | engines: {node: '>=0.10.0'}
1138 | dev: false
1139 |
1140 | /execa/5.1.1:
1141 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
1142 | engines: {node: '>=10'}
1143 | dependencies:
1144 | cross-spawn: 7.0.3
1145 | get-stream: 6.0.1
1146 | human-signals: 2.1.0
1147 | is-stream: 2.0.1
1148 | merge-stream: 2.0.0
1149 | npm-run-path: 4.0.1
1150 | onetime: 5.1.2
1151 | signal-exit: 3.0.7
1152 | strip-final-newline: 2.0.0
1153 | dev: false
1154 |
1155 | /execa/7.1.1:
1156 | resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==}
1157 | engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
1158 | dependencies:
1159 | cross-spawn: 7.0.3
1160 | get-stream: 6.0.1
1161 | human-signals: 4.3.1
1162 | is-stream: 3.0.0
1163 | merge-stream: 2.0.0
1164 | npm-run-path: 5.1.0
1165 | onetime: 6.0.0
1166 | signal-exit: 3.0.7
1167 | strip-final-newline: 3.0.0
1168 | dev: false
1169 |
1170 | /fast-deep-equal/3.1.3:
1171 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1172 | dev: false
1173 |
1174 | /fast-glob/3.3.0:
1175 | resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==}
1176 | engines: {node: '>=8.6.0'}
1177 | dependencies:
1178 | '@nodelib/fs.stat': 2.0.5
1179 | '@nodelib/fs.walk': 1.2.8
1180 | glob-parent: 5.1.2
1181 | merge2: 1.4.1
1182 | micromatch: 4.0.5
1183 |
1184 | /fast-json-stable-stringify/2.1.0:
1185 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1186 | dev: false
1187 |
1188 | /fast-levenshtein/2.0.6:
1189 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1190 | dev: false
1191 |
1192 | /fastparse/1.1.2:
1193 | resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
1194 | dev: true
1195 |
1196 | /fastq/1.15.0:
1197 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
1198 | dependencies:
1199 | reusify: 1.0.4
1200 |
1201 | /file-entry-cache/6.0.1:
1202 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
1203 | engines: {node: ^10.12.0 || >=12.0.0}
1204 | dependencies:
1205 | flat-cache: 3.0.4
1206 | dev: false
1207 |
1208 | /fill-range/7.0.1:
1209 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
1210 | engines: {node: '>=8'}
1211 | dependencies:
1212 | to-regex-range: 5.0.1
1213 |
1214 | /find-up/5.0.0:
1215 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1216 | engines: {node: '>=10'}
1217 | dependencies:
1218 | locate-path: 6.0.0
1219 | path-exists: 4.0.0
1220 | dev: false
1221 |
1222 | /flat-cache/3.0.4:
1223 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
1224 | engines: {node: ^10.12.0 || >=12.0.0}
1225 | dependencies:
1226 | flatted: 3.2.7
1227 | rimraf: 3.0.2
1228 | dev: false
1229 |
1230 | /flatted/3.2.7:
1231 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
1232 | dev: false
1233 |
1234 | /for-each/0.3.3:
1235 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
1236 | dependencies:
1237 | is-callable: 1.2.7
1238 | dev: false
1239 |
1240 | /fraction.js/4.2.0:
1241 | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
1242 | dev: false
1243 |
1244 | /fs.realpath/1.0.0:
1245 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1246 |
1247 | /fsevents/2.3.2:
1248 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
1249 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1250 | os: [darwin]
1251 | requiresBuild: true
1252 | optional: true
1253 |
1254 | /function-bind/1.1.1:
1255 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
1256 |
1257 | /function.prototype.name/1.1.5:
1258 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
1259 | engines: {node: '>= 0.4'}
1260 | dependencies:
1261 | call-bind: 1.0.2
1262 | define-properties: 1.2.0
1263 | es-abstract: 1.21.2
1264 | functions-have-names: 1.2.3
1265 | dev: false
1266 |
1267 | /functions-have-names/1.2.3:
1268 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
1269 | dev: false
1270 |
1271 | /get-intrinsic/1.2.1:
1272 | resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
1273 | dependencies:
1274 | function-bind: 1.1.1
1275 | has: 1.0.3
1276 | has-proto: 1.0.1
1277 | has-symbols: 1.0.3
1278 | dev: false
1279 |
1280 | /get-stream/6.0.1:
1281 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
1282 | engines: {node: '>=10'}
1283 | dev: false
1284 |
1285 | /get-symbol-description/1.0.0:
1286 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
1287 | engines: {node: '>= 0.4'}
1288 | dependencies:
1289 | call-bind: 1.0.2
1290 | get-intrinsic: 1.2.1
1291 | dev: false
1292 |
1293 | /get-tsconfig/4.6.2:
1294 | resolution: {integrity: sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==}
1295 | dependencies:
1296 | resolve-pkg-maps: 1.0.0
1297 | dev: false
1298 |
1299 | /glob-parent/5.1.2:
1300 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1301 | engines: {node: '>= 6'}
1302 | dependencies:
1303 | is-glob: 4.0.3
1304 |
1305 | /glob-parent/6.0.2:
1306 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1307 | engines: {node: '>=10.13.0'}
1308 | dependencies:
1309 | is-glob: 4.0.3
1310 |
1311 | /glob-to-regexp/0.4.1:
1312 | resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
1313 | dev: false
1314 |
1315 | /glob/7.1.6:
1316 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
1317 | dependencies:
1318 | fs.realpath: 1.0.0
1319 | inflight: 1.0.6
1320 | inherits: 2.0.4
1321 | minimatch: 3.1.2
1322 | once: 1.4.0
1323 | path-is-absolute: 1.0.1
1324 |
1325 | /glob/7.1.7:
1326 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
1327 | dependencies:
1328 | fs.realpath: 1.0.0
1329 | inflight: 1.0.6
1330 | inherits: 2.0.4
1331 | minimatch: 3.1.2
1332 | once: 1.4.0
1333 | path-is-absolute: 1.0.1
1334 | dev: false
1335 |
1336 | /glob/7.2.3:
1337 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
1338 | dependencies:
1339 | fs.realpath: 1.0.0
1340 | inflight: 1.0.6
1341 | inherits: 2.0.4
1342 | minimatch: 3.1.2
1343 | once: 1.4.0
1344 | path-is-absolute: 1.0.1
1345 | dev: false
1346 |
1347 | /globals/13.20.0:
1348 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
1349 | engines: {node: '>=8'}
1350 | dependencies:
1351 | type-fest: 0.20.2
1352 | dev: false
1353 |
1354 | /globalthis/1.0.3:
1355 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
1356 | engines: {node: '>= 0.4'}
1357 | dependencies:
1358 | define-properties: 1.2.0
1359 | dev: false
1360 |
1361 | /globby/11.1.0:
1362 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
1363 | engines: {node: '>=10'}
1364 | dependencies:
1365 | array-union: 2.1.0
1366 | dir-glob: 3.0.1
1367 | fast-glob: 3.3.0
1368 | ignore: 5.2.4
1369 | merge2: 1.4.1
1370 | slash: 3.0.0
1371 | dev: false
1372 |
1373 | /globby/13.2.1:
1374 | resolution: {integrity: sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==}
1375 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1376 | dependencies:
1377 | dir-glob: 3.0.1
1378 | fast-glob: 3.3.0
1379 | ignore: 5.2.4
1380 | merge2: 1.4.1
1381 | slash: 4.0.0
1382 | dev: false
1383 |
1384 | /gopd/1.0.1:
1385 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
1386 | dependencies:
1387 | get-intrinsic: 1.2.1
1388 | dev: false
1389 |
1390 | /graceful-fs/4.2.11:
1391 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1392 | dev: false
1393 |
1394 | /graphemer/1.4.0:
1395 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
1396 | dev: false
1397 |
1398 | /has-bigints/1.0.2:
1399 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
1400 | dev: false
1401 |
1402 | /has-flag/4.0.0:
1403 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1404 | engines: {node: '>=8'}
1405 | dev: false
1406 |
1407 | /has-property-descriptors/1.0.0:
1408 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
1409 | dependencies:
1410 | get-intrinsic: 1.2.1
1411 | dev: false
1412 |
1413 | /has-proto/1.0.1:
1414 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
1415 | engines: {node: '>= 0.4'}
1416 | dev: false
1417 |
1418 | /has-symbols/1.0.3:
1419 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
1420 | engines: {node: '>= 0.4'}
1421 | dev: false
1422 |
1423 | /has-tostringtag/1.0.0:
1424 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
1425 | engines: {node: '>= 0.4'}
1426 | dependencies:
1427 | has-symbols: 1.0.3
1428 | dev: false
1429 |
1430 | /has/1.0.3:
1431 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
1432 | engines: {node: '>= 0.4.0'}
1433 | dependencies:
1434 | function-bind: 1.1.1
1435 |
1436 | /human-signals/2.1.0:
1437 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
1438 | engines: {node: '>=10.17.0'}
1439 | dev: false
1440 |
1441 | /human-signals/4.3.1:
1442 | resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
1443 | engines: {node: '>=14.18.0'}
1444 | dev: false
1445 |
1446 | /ignore/5.2.4:
1447 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
1448 | engines: {node: '>= 4'}
1449 | dev: false
1450 |
1451 | /import-fresh/3.3.0:
1452 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1453 | engines: {node: '>=6'}
1454 | dependencies:
1455 | parent-module: 1.0.1
1456 | resolve-from: 4.0.0
1457 | dev: false
1458 |
1459 | /imurmurhash/0.1.4:
1460 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1461 | engines: {node: '>=0.8.19'}
1462 | dev: false
1463 |
1464 | /inflight/1.0.6:
1465 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
1466 | dependencies:
1467 | once: 1.4.0
1468 | wrappy: 1.0.2
1469 |
1470 | /inherits/2.0.4:
1471 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1472 |
1473 | /internal-slot/1.0.5:
1474 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
1475 | engines: {node: '>= 0.4'}
1476 | dependencies:
1477 | get-intrinsic: 1.2.1
1478 | has: 1.0.3
1479 | side-channel: 1.0.4
1480 | dev: false
1481 |
1482 | /is-array-buffer/3.0.2:
1483 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
1484 | dependencies:
1485 | call-bind: 1.0.2
1486 | get-intrinsic: 1.2.1
1487 | is-typed-array: 1.1.10
1488 | dev: false
1489 |
1490 | /is-bigint/1.0.4:
1491 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
1492 | dependencies:
1493 | has-bigints: 1.0.2
1494 | dev: false
1495 |
1496 | /is-binary-path/2.1.0:
1497 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1498 | engines: {node: '>=8'}
1499 | dependencies:
1500 | binary-extensions: 2.2.0
1501 |
1502 | /is-boolean-object/1.1.2:
1503 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
1504 | engines: {node: '>= 0.4'}
1505 | dependencies:
1506 | call-bind: 1.0.2
1507 | has-tostringtag: 1.0.0
1508 | dev: false
1509 |
1510 | /is-callable/1.2.7:
1511 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
1512 | engines: {node: '>= 0.4'}
1513 | dev: false
1514 |
1515 | /is-core-module/2.12.1:
1516 | resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==}
1517 | dependencies:
1518 | has: 1.0.3
1519 |
1520 | /is-date-object/1.0.5:
1521 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
1522 | engines: {node: '>= 0.4'}
1523 | dependencies:
1524 | has-tostringtag: 1.0.0
1525 | dev: false
1526 |
1527 | /is-docker/2.2.1:
1528 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
1529 | engines: {node: '>=8'}
1530 | hasBin: true
1531 | dev: false
1532 |
1533 | /is-docker/3.0.0:
1534 | resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
1535 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1536 | hasBin: true
1537 | dev: false
1538 |
1539 | /is-extglob/2.1.1:
1540 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1541 | engines: {node: '>=0.10.0'}
1542 |
1543 | /is-glob/4.0.3:
1544 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1545 | engines: {node: '>=0.10.0'}
1546 | dependencies:
1547 | is-extglob: 2.1.1
1548 |
1549 | /is-inside-container/1.0.0:
1550 | resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
1551 | engines: {node: '>=14.16'}
1552 | hasBin: true
1553 | dependencies:
1554 | is-docker: 3.0.0
1555 | dev: false
1556 |
1557 | /is-negative-zero/2.0.2:
1558 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
1559 | engines: {node: '>= 0.4'}
1560 | dev: false
1561 |
1562 | /is-number-object/1.0.7:
1563 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
1564 | engines: {node: '>= 0.4'}
1565 | dependencies:
1566 | has-tostringtag: 1.0.0
1567 | dev: false
1568 |
1569 | /is-number/7.0.0:
1570 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1571 | engines: {node: '>=0.12.0'}
1572 |
1573 | /is-path-inside/3.0.3:
1574 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1575 | engines: {node: '>=8'}
1576 | dev: false
1577 |
1578 | /is-regex/1.1.4:
1579 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
1580 | engines: {node: '>= 0.4'}
1581 | dependencies:
1582 | call-bind: 1.0.2
1583 | has-tostringtag: 1.0.0
1584 | dev: false
1585 |
1586 | /is-shared-array-buffer/1.0.2:
1587 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
1588 | dependencies:
1589 | call-bind: 1.0.2
1590 | dev: false
1591 |
1592 | /is-stream/2.0.1:
1593 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
1594 | engines: {node: '>=8'}
1595 | dev: false
1596 |
1597 | /is-stream/3.0.0:
1598 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
1599 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1600 | dev: false
1601 |
1602 | /is-string/1.0.7:
1603 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
1604 | engines: {node: '>= 0.4'}
1605 | dependencies:
1606 | has-tostringtag: 1.0.0
1607 | dev: false
1608 |
1609 | /is-symbol/1.0.4:
1610 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
1611 | engines: {node: '>= 0.4'}
1612 | dependencies:
1613 | has-symbols: 1.0.3
1614 | dev: false
1615 |
1616 | /is-typed-array/1.1.10:
1617 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
1618 | engines: {node: '>= 0.4'}
1619 | dependencies:
1620 | available-typed-arrays: 1.0.5
1621 | call-bind: 1.0.2
1622 | for-each: 0.3.3
1623 | gopd: 1.0.1
1624 | has-tostringtag: 1.0.0
1625 | dev: false
1626 |
1627 | /is-weakref/1.0.2:
1628 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
1629 | dependencies:
1630 | call-bind: 1.0.2
1631 | dev: false
1632 |
1633 | /is-wsl/2.2.0:
1634 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
1635 | engines: {node: '>=8'}
1636 | dependencies:
1637 | is-docker: 2.2.1
1638 | dev: false
1639 |
1640 | /isexe/2.0.0:
1641 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1642 | dev: false
1643 |
1644 | /jiti/1.18.2:
1645 | resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==}
1646 | hasBin: true
1647 |
1648 | /js-tokens/4.0.0:
1649 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1650 | dev: false
1651 |
1652 | /js-yaml/4.1.0:
1653 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1654 | hasBin: true
1655 | dependencies:
1656 | argparse: 2.0.1
1657 | dev: false
1658 |
1659 | /json-schema-traverse/0.4.1:
1660 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1661 | dev: false
1662 |
1663 | /json-stable-stringify-without-jsonify/1.0.1:
1664 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1665 | dev: false
1666 |
1667 | /json5/1.0.2:
1668 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
1669 | hasBin: true
1670 | dependencies:
1671 | minimist: 1.2.8
1672 | dev: false
1673 |
1674 | /jsx-ast-utils/3.3.4:
1675 | resolution: {integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==}
1676 | engines: {node: '>=4.0'}
1677 | dependencies:
1678 | array-includes: 3.1.6
1679 | array.prototype.flat: 1.3.1
1680 | object.assign: 4.1.4
1681 | object.values: 1.1.6
1682 | dev: false
1683 |
1684 | /language-subtag-registry/0.3.22:
1685 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
1686 | dev: false
1687 |
1688 | /language-tags/1.0.5:
1689 | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
1690 | dependencies:
1691 | language-subtag-registry: 0.3.22
1692 | dev: false
1693 |
1694 | /levn/0.4.1:
1695 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1696 | engines: {node: '>= 0.8.0'}
1697 | dependencies:
1698 | prelude-ls: 1.2.1
1699 | type-check: 0.4.0
1700 | dev: false
1701 |
1702 | /lilconfig/2.1.0:
1703 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
1704 | engines: {node: '>=10'}
1705 |
1706 | /lines-and-columns/1.2.4:
1707 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1708 |
1709 | /locate-path/6.0.0:
1710 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1711 | engines: {node: '>=10'}
1712 | dependencies:
1713 | p-locate: 5.0.0
1714 | dev: false
1715 |
1716 | /lodash.merge/4.6.2:
1717 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1718 | dev: false
1719 |
1720 | /loose-envify/1.4.0:
1721 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1722 | hasBin: true
1723 | dependencies:
1724 | js-tokens: 4.0.0
1725 | dev: false
1726 |
1727 | /lru-cache/6.0.0:
1728 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
1729 | engines: {node: '>=10'}
1730 | dependencies:
1731 | yallist: 4.0.0
1732 | dev: false
1733 |
1734 | /merge-stream/2.0.0:
1735 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
1736 | dev: false
1737 |
1738 | /merge2/1.4.1:
1739 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1740 | engines: {node: '>= 8'}
1741 |
1742 | /micromatch/4.0.5:
1743 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
1744 | engines: {node: '>=8.6'}
1745 | dependencies:
1746 | braces: 3.0.2
1747 | picomatch: 2.3.1
1748 |
1749 | /mimic-fn/2.1.0:
1750 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
1751 | engines: {node: '>=6'}
1752 | dev: false
1753 |
1754 | /mimic-fn/4.0.0:
1755 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
1756 | engines: {node: '>=12'}
1757 | dev: false
1758 |
1759 | /minimatch/3.1.2:
1760 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1761 | dependencies:
1762 | brace-expansion: 1.1.11
1763 |
1764 | /minimist/1.2.8:
1765 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
1766 | dev: false
1767 |
1768 | /ms/2.1.2:
1769 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
1770 | dev: false
1771 |
1772 | /ms/2.1.3:
1773 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1774 | dev: false
1775 |
1776 | /mz/2.7.0:
1777 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1778 | dependencies:
1779 | any-promise: 1.3.0
1780 | object-assign: 4.1.1
1781 | thenify-all: 1.6.0
1782 |
1783 | /nanoid/3.3.6:
1784 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
1785 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1786 | hasBin: true
1787 |
1788 | /natural-compare/1.4.0:
1789 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1790 | dev: false
1791 |
1792 | /next/13.4.8_biqbaboplfbrettd7655fr4n2y:
1793 | resolution: {integrity: sha512-lxUjndYKjZHGK3CWeN2RI+/6ni6EUvjiqGWXAYPxUfGIdFGQ5XoisrqAJ/dF74aP27buAfs8MKIbIMMdxjqSBg==}
1794 | engines: {node: '>=16.8.0'}
1795 | hasBin: true
1796 | peerDependencies:
1797 | '@opentelemetry/api': ^1.1.0
1798 | fibers: '>= 3.1.0'
1799 | react: ^18.2.0
1800 | react-dom: ^18.2.0
1801 | sass: ^1.3.0
1802 | peerDependenciesMeta:
1803 | '@opentelemetry/api':
1804 | optional: true
1805 | fibers:
1806 | optional: true
1807 | sass:
1808 | optional: true
1809 | dependencies:
1810 | '@next/env': 13.4.8
1811 | '@swc/helpers': 0.5.1
1812 | busboy: 1.6.0
1813 | caniuse-lite: 1.0.30001512
1814 | postcss: 8.4.14
1815 | react: 18.2.0
1816 | react-dom: 18.2.0_react@18.2.0
1817 | styled-jsx: 5.1.1_react@18.2.0
1818 | watchpack: 2.4.0
1819 | zod: 3.21.4
1820 | optionalDependencies:
1821 | '@next/swc-darwin-arm64': 13.4.8
1822 | '@next/swc-darwin-x64': 13.4.8
1823 | '@next/swc-linux-arm64-gnu': 13.4.8
1824 | '@next/swc-linux-arm64-musl': 13.4.8
1825 | '@next/swc-linux-x64-gnu': 13.4.8
1826 | '@next/swc-linux-x64-musl': 13.4.8
1827 | '@next/swc-win32-arm64-msvc': 13.4.8
1828 | '@next/swc-win32-ia32-msvc': 13.4.8
1829 | '@next/swc-win32-x64-msvc': 13.4.8
1830 | transitivePeerDependencies:
1831 | - '@babel/core'
1832 | - babel-plugin-macros
1833 | dev: false
1834 |
1835 | /node-releases/2.0.12:
1836 | resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==}
1837 | dev: false
1838 |
1839 | /normalize-path/3.0.0:
1840 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1841 | engines: {node: '>=0.10.0'}
1842 |
1843 | /normalize-range/0.1.2:
1844 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
1845 | engines: {node: '>=0.10.0'}
1846 | dev: false
1847 |
1848 | /npm-run-path/4.0.1:
1849 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
1850 | engines: {node: '>=8'}
1851 | dependencies:
1852 | path-key: 3.1.1
1853 | dev: false
1854 |
1855 | /npm-run-path/5.1.0:
1856 | resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
1857 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1858 | dependencies:
1859 | path-key: 4.0.0
1860 | dev: false
1861 |
1862 | /object-assign/4.1.1:
1863 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1864 | engines: {node: '>=0.10.0'}
1865 |
1866 | /object-hash/3.0.0:
1867 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1868 | engines: {node: '>= 6'}
1869 |
1870 | /object-inspect/1.12.3:
1871 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
1872 | dev: false
1873 |
1874 | /object-keys/1.1.1:
1875 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1876 | engines: {node: '>= 0.4'}
1877 | dev: false
1878 |
1879 | /object.assign/4.1.4:
1880 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
1881 | engines: {node: '>= 0.4'}
1882 | dependencies:
1883 | call-bind: 1.0.2
1884 | define-properties: 1.2.0
1885 | has-symbols: 1.0.3
1886 | object-keys: 1.1.1
1887 | dev: false
1888 |
1889 | /object.entries/1.1.6:
1890 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
1891 | engines: {node: '>= 0.4'}
1892 | dependencies:
1893 | call-bind: 1.0.2
1894 | define-properties: 1.2.0
1895 | es-abstract: 1.21.2
1896 | dev: false
1897 |
1898 | /object.fromentries/2.0.6:
1899 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
1900 | engines: {node: '>= 0.4'}
1901 | dependencies:
1902 | call-bind: 1.0.2
1903 | define-properties: 1.2.0
1904 | es-abstract: 1.21.2
1905 | dev: false
1906 |
1907 | /object.hasown/1.1.2:
1908 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
1909 | dependencies:
1910 | define-properties: 1.2.0
1911 | es-abstract: 1.21.2
1912 | dev: false
1913 |
1914 | /object.values/1.1.6:
1915 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
1916 | engines: {node: '>= 0.4'}
1917 | dependencies:
1918 | call-bind: 1.0.2
1919 | define-properties: 1.2.0
1920 | es-abstract: 1.21.2
1921 | dev: false
1922 |
1923 | /once/1.4.0:
1924 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
1925 | dependencies:
1926 | wrappy: 1.0.2
1927 |
1928 | /onetime/5.1.2:
1929 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
1930 | engines: {node: '>=6'}
1931 | dependencies:
1932 | mimic-fn: 2.1.0
1933 | dev: false
1934 |
1935 | /onetime/6.0.0:
1936 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
1937 | engines: {node: '>=12'}
1938 | dependencies:
1939 | mimic-fn: 4.0.0
1940 | dev: false
1941 |
1942 | /open/9.1.0:
1943 | resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==}
1944 | engines: {node: '>=14.16'}
1945 | dependencies:
1946 | default-browser: 4.0.0
1947 | define-lazy-prop: 3.0.0
1948 | is-inside-container: 1.0.0
1949 | is-wsl: 2.2.0
1950 | dev: false
1951 |
1952 | /optionator/0.9.3:
1953 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
1954 | engines: {node: '>= 0.8.0'}
1955 | dependencies:
1956 | '@aashutoshrathi/word-wrap': 1.2.6
1957 | deep-is: 0.1.4
1958 | fast-levenshtein: 2.0.6
1959 | levn: 0.4.1
1960 | prelude-ls: 1.2.1
1961 | type-check: 0.4.0
1962 | dev: false
1963 |
1964 | /p-limit/3.1.0:
1965 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1966 | engines: {node: '>=10'}
1967 | dependencies:
1968 | yocto-queue: 0.1.0
1969 | dev: false
1970 |
1971 | /p-locate/5.0.0:
1972 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1973 | engines: {node: '>=10'}
1974 | dependencies:
1975 | p-limit: 3.1.0
1976 | dev: false
1977 |
1978 | /parent-module/1.0.1:
1979 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1980 | engines: {node: '>=6'}
1981 | dependencies:
1982 | callsites: 3.1.0
1983 | dev: false
1984 |
1985 | /path-exists/4.0.0:
1986 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1987 | engines: {node: '>=8'}
1988 | dev: false
1989 |
1990 | /path-is-absolute/1.0.1:
1991 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
1992 | engines: {node: '>=0.10.0'}
1993 |
1994 | /path-key/3.1.1:
1995 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1996 | engines: {node: '>=8'}
1997 | dev: false
1998 |
1999 | /path-key/4.0.0:
2000 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
2001 | engines: {node: '>=12'}
2002 | dev: false
2003 |
2004 | /path-parse/1.0.7:
2005 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
2006 |
2007 | /path-type/4.0.0:
2008 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
2009 | engines: {node: '>=8'}
2010 | dev: false
2011 |
2012 | /picocolors/1.0.0:
2013 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
2014 |
2015 | /picomatch/2.3.1:
2016 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
2017 | engines: {node: '>=8.6'}
2018 |
2019 | /pify/2.3.0:
2020 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
2021 | engines: {node: '>=0.10.0'}
2022 |
2023 | /pirates/4.0.6:
2024 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
2025 | engines: {node: '>= 6'}
2026 |
2027 | /postcss-import/15.1.0_postcss@8.4.24:
2028 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
2029 | engines: {node: '>=14.0.0'}
2030 | peerDependencies:
2031 | postcss: ^8.0.0
2032 | dependencies:
2033 | postcss: 8.4.24
2034 | postcss-value-parser: 4.2.0
2035 | read-cache: 1.0.0
2036 | resolve: 1.22.2
2037 |
2038 | /postcss-js/4.0.1_postcss@8.4.24:
2039 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
2040 | engines: {node: ^12 || ^14 || >= 16}
2041 | peerDependencies:
2042 | postcss: ^8.4.21
2043 | dependencies:
2044 | camelcase-css: 2.0.1
2045 | postcss: 8.4.24
2046 |
2047 | /postcss-load-config/4.0.1_postcss@8.4.24:
2048 | resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
2049 | engines: {node: '>= 14'}
2050 | peerDependencies:
2051 | postcss: '>=8.0.9'
2052 | ts-node: '>=9.0.0'
2053 | peerDependenciesMeta:
2054 | postcss:
2055 | optional: true
2056 | ts-node:
2057 | optional: true
2058 | dependencies:
2059 | lilconfig: 2.1.0
2060 | postcss: 8.4.24
2061 | yaml: 2.3.1
2062 |
2063 | /postcss-nested/6.0.1_postcss@8.4.24:
2064 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
2065 | engines: {node: '>=12.0'}
2066 | peerDependencies:
2067 | postcss: ^8.2.14
2068 | dependencies:
2069 | postcss: 8.4.24
2070 | postcss-selector-parser: 6.0.13
2071 |
2072 | /postcss-selector-parser/6.0.13:
2073 | resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
2074 | engines: {node: '>=4'}
2075 | dependencies:
2076 | cssesc: 3.0.0
2077 | util-deprecate: 1.0.2
2078 |
2079 | /postcss-value-parser/4.2.0:
2080 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
2081 |
2082 | /postcss/8.4.14:
2083 | resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
2084 | engines: {node: ^10 || ^12 || >=14}
2085 | dependencies:
2086 | nanoid: 3.3.6
2087 | picocolors: 1.0.0
2088 | source-map-js: 1.0.2
2089 | dev: false
2090 |
2091 | /postcss/8.4.24:
2092 | resolution: {integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==}
2093 | engines: {node: ^10 || ^12 || >=14}
2094 | dependencies:
2095 | nanoid: 3.3.6
2096 | picocolors: 1.0.0
2097 | source-map-js: 1.0.2
2098 |
2099 | /prelude-ls/1.2.1:
2100 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
2101 | engines: {node: '>= 0.8.0'}
2102 | dev: false
2103 |
2104 | /prop-types/15.8.1:
2105 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
2106 | dependencies:
2107 | loose-envify: 1.4.0
2108 | object-assign: 4.1.1
2109 | react-is: 16.13.1
2110 | dev: false
2111 |
2112 | /punycode/2.3.0:
2113 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
2114 | engines: {node: '>=6'}
2115 | dev: false
2116 |
2117 | /queue-microtask/1.2.3:
2118 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
2119 |
2120 | /react-dom/18.2.0_react@18.2.0:
2121 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
2122 | peerDependencies:
2123 | react: ^18.2.0
2124 | dependencies:
2125 | loose-envify: 1.4.0
2126 | react: 18.2.0
2127 | scheduler: 0.23.0
2128 | dev: false
2129 |
2130 | /react-is/16.13.1:
2131 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
2132 | dev: false
2133 |
2134 | /react/18.2.0:
2135 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
2136 | engines: {node: '>=0.10.0'}
2137 | dependencies:
2138 | loose-envify: 1.4.0
2139 | dev: false
2140 |
2141 | /read-cache/1.0.0:
2142 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
2143 | dependencies:
2144 | pify: 2.3.0
2145 |
2146 | /readdirp/3.6.0:
2147 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
2148 | engines: {node: '>=8.10.0'}
2149 | dependencies:
2150 | picomatch: 2.3.1
2151 |
2152 | /regenerator-runtime/0.13.11:
2153 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
2154 | dev: false
2155 |
2156 | /regexp.prototype.flags/1.5.0:
2157 | resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
2158 | engines: {node: '>= 0.4'}
2159 | dependencies:
2160 | call-bind: 1.0.2
2161 | define-properties: 1.2.0
2162 | functions-have-names: 1.2.3
2163 | dev: false
2164 |
2165 | /resolve-from/4.0.0:
2166 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
2167 | engines: {node: '>=4'}
2168 | dev: false
2169 |
2170 | /resolve-pkg-maps/1.0.0:
2171 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
2172 | dev: false
2173 |
2174 | /resolve/1.22.2:
2175 | resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
2176 | hasBin: true
2177 | dependencies:
2178 | is-core-module: 2.12.1
2179 | path-parse: 1.0.7
2180 | supports-preserve-symlinks-flag: 1.0.0
2181 |
2182 | /resolve/2.0.0-next.4:
2183 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
2184 | hasBin: true
2185 | dependencies:
2186 | is-core-module: 2.12.1
2187 | path-parse: 1.0.7
2188 | supports-preserve-symlinks-flag: 1.0.0
2189 | dev: false
2190 |
2191 | /reusify/1.0.4:
2192 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
2193 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
2194 |
2195 | /rimraf/3.0.2:
2196 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
2197 | hasBin: true
2198 | dependencies:
2199 | glob: 7.2.3
2200 | dev: false
2201 |
2202 | /run-applescript/5.0.0:
2203 | resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
2204 | engines: {node: '>=12'}
2205 | dependencies:
2206 | execa: 5.1.1
2207 | dev: false
2208 |
2209 | /run-parallel/1.2.0:
2210 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
2211 | dependencies:
2212 | queue-microtask: 1.2.3
2213 |
2214 | /safe-regex-test/1.0.0:
2215 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
2216 | dependencies:
2217 | call-bind: 1.0.2
2218 | get-intrinsic: 1.2.1
2219 | is-regex: 1.1.4
2220 | dev: false
2221 |
2222 | /scheduler/0.23.0:
2223 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
2224 | dependencies:
2225 | loose-envify: 1.4.0
2226 | dev: false
2227 |
2228 | /semver/6.3.0:
2229 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
2230 | hasBin: true
2231 | dev: false
2232 |
2233 | /semver/7.5.3:
2234 | resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==}
2235 | engines: {node: '>=10'}
2236 | hasBin: true
2237 | dependencies:
2238 | lru-cache: 6.0.0
2239 | dev: false
2240 |
2241 | /shebang-command/2.0.0:
2242 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
2243 | engines: {node: '>=8'}
2244 | dependencies:
2245 | shebang-regex: 3.0.0
2246 | dev: false
2247 |
2248 | /shebang-regex/3.0.0:
2249 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2250 | engines: {node: '>=8'}
2251 | dev: false
2252 |
2253 | /side-channel/1.0.4:
2254 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
2255 | dependencies:
2256 | call-bind: 1.0.2
2257 | get-intrinsic: 1.2.1
2258 | object-inspect: 1.12.3
2259 | dev: false
2260 |
2261 | /signal-exit/3.0.7:
2262 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
2263 | dev: false
2264 |
2265 | /slash/3.0.0:
2266 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
2267 | engines: {node: '>=8'}
2268 | dev: false
2269 |
2270 | /slash/4.0.0:
2271 | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
2272 | engines: {node: '>=12'}
2273 | dev: false
2274 |
2275 | /source-map-js/1.0.2:
2276 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
2277 | engines: {node: '>=0.10.0'}
2278 |
2279 | /streamsearch/1.1.0:
2280 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
2281 | engines: {node: '>=10.0.0'}
2282 | dev: false
2283 |
2284 | /string.prototype.matchall/4.0.8:
2285 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
2286 | dependencies:
2287 | call-bind: 1.0.2
2288 | define-properties: 1.2.0
2289 | es-abstract: 1.21.2
2290 | get-intrinsic: 1.2.1
2291 | has-symbols: 1.0.3
2292 | internal-slot: 1.0.5
2293 | regexp.prototype.flags: 1.5.0
2294 | side-channel: 1.0.4
2295 | dev: false
2296 |
2297 | /string.prototype.trim/1.2.7:
2298 | resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
2299 | engines: {node: '>= 0.4'}
2300 | dependencies:
2301 | call-bind: 1.0.2
2302 | define-properties: 1.2.0
2303 | es-abstract: 1.21.2
2304 | dev: false
2305 |
2306 | /string.prototype.trimend/1.0.6:
2307 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
2308 | dependencies:
2309 | call-bind: 1.0.2
2310 | define-properties: 1.2.0
2311 | es-abstract: 1.21.2
2312 | dev: false
2313 |
2314 | /string.prototype.trimstart/1.0.6:
2315 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
2316 | dependencies:
2317 | call-bind: 1.0.2
2318 | define-properties: 1.2.0
2319 | es-abstract: 1.21.2
2320 | dev: false
2321 |
2322 | /strip-ansi/6.0.1:
2323 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
2324 | engines: {node: '>=8'}
2325 | dependencies:
2326 | ansi-regex: 5.0.1
2327 | dev: false
2328 |
2329 | /strip-bom/3.0.0:
2330 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
2331 | engines: {node: '>=4'}
2332 | dev: false
2333 |
2334 | /strip-final-newline/2.0.0:
2335 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
2336 | engines: {node: '>=6'}
2337 | dev: false
2338 |
2339 | /strip-final-newline/3.0.0:
2340 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
2341 | engines: {node: '>=12'}
2342 | dev: false
2343 |
2344 | /strip-json-comments/3.1.1:
2345 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
2346 | engines: {node: '>=8'}
2347 | dev: false
2348 |
2349 | /styled-jsx/5.1.1_react@18.2.0:
2350 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
2351 | engines: {node: '>= 12.0.0'}
2352 | peerDependencies:
2353 | '@babel/core': '*'
2354 | babel-plugin-macros: '*'
2355 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
2356 | peerDependenciesMeta:
2357 | '@babel/core':
2358 | optional: true
2359 | babel-plugin-macros:
2360 | optional: true
2361 | dependencies:
2362 | client-only: 0.0.1
2363 | react: 18.2.0
2364 | dev: false
2365 |
2366 | /sucrase/3.32.0:
2367 | resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==}
2368 | engines: {node: '>=8'}
2369 | hasBin: true
2370 | dependencies:
2371 | '@jridgewell/gen-mapping': 0.3.3
2372 | commander: 4.1.1
2373 | glob: 7.1.6
2374 | lines-and-columns: 1.2.4
2375 | mz: 2.7.0
2376 | pirates: 4.0.6
2377 | ts-interface-checker: 0.1.13
2378 |
2379 | /supports-color/7.2.0:
2380 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2381 | engines: {node: '>=8'}
2382 | dependencies:
2383 | has-flag: 4.0.0
2384 | dev: false
2385 |
2386 | /supports-preserve-symlinks-flag/1.0.0:
2387 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
2388 | engines: {node: '>= 0.4'}
2389 |
2390 | /synckit/0.8.5:
2391 | resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
2392 | engines: {node: ^14.18.0 || >=16.0.0}
2393 | dependencies:
2394 | '@pkgr/utils': 2.4.1
2395 | tslib: 2.6.0
2396 | dev: false
2397 |
2398 | /tailwindcss/3.3.2:
2399 | resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==}
2400 | engines: {node: '>=14.0.0'}
2401 | hasBin: true
2402 | dependencies:
2403 | '@alloc/quick-lru': 5.2.0
2404 | arg: 5.0.2
2405 | chokidar: 3.5.3
2406 | didyoumean: 1.2.2
2407 | dlv: 1.1.3
2408 | fast-glob: 3.3.0
2409 | glob-parent: 6.0.2
2410 | is-glob: 4.0.3
2411 | jiti: 1.18.2
2412 | lilconfig: 2.1.0
2413 | micromatch: 4.0.5
2414 | normalize-path: 3.0.0
2415 | object-hash: 3.0.0
2416 | picocolors: 1.0.0
2417 | postcss: 8.4.24
2418 | postcss-import: 15.1.0_postcss@8.4.24
2419 | postcss-js: 4.0.1_postcss@8.4.24
2420 | postcss-load-config: 4.0.1_postcss@8.4.24
2421 | postcss-nested: 6.0.1_postcss@8.4.24
2422 | postcss-selector-parser: 6.0.13
2423 | postcss-value-parser: 4.2.0
2424 | resolve: 1.22.2
2425 | sucrase: 3.32.0
2426 | transitivePeerDependencies:
2427 | - ts-node
2428 |
2429 | /tapable/2.2.1:
2430 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
2431 | engines: {node: '>=6'}
2432 | dev: false
2433 |
2434 | /text-table/0.2.0:
2435 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
2436 | dev: false
2437 |
2438 | /thenify-all/1.6.0:
2439 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
2440 | engines: {node: '>=0.8'}
2441 | dependencies:
2442 | thenify: 3.3.1
2443 |
2444 | /thenify/3.3.1:
2445 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
2446 | dependencies:
2447 | any-promise: 1.3.0
2448 |
2449 | /titleize/3.0.0:
2450 | resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
2451 | engines: {node: '>=12'}
2452 | dev: false
2453 |
2454 | /to-regex-range/5.0.1:
2455 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
2456 | engines: {node: '>=8.0'}
2457 | dependencies:
2458 | is-number: 7.0.0
2459 |
2460 | /ts-interface-checker/0.1.13:
2461 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
2462 |
2463 | /tsconfig-paths/3.14.2:
2464 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
2465 | dependencies:
2466 | '@types/json5': 0.0.29
2467 | json5: 1.0.2
2468 | minimist: 1.2.8
2469 | strip-bom: 3.0.0
2470 | dev: false
2471 |
2472 | /tslib/1.14.1:
2473 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
2474 | dev: false
2475 |
2476 | /tslib/2.6.0:
2477 | resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==}
2478 | dev: false
2479 |
2480 | /tsutils/3.21.0_typescript@5.1.6:
2481 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
2482 | engines: {node: '>= 6'}
2483 | peerDependencies:
2484 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
2485 | dependencies:
2486 | tslib: 1.14.1
2487 | typescript: 5.1.6
2488 | dev: false
2489 |
2490 | /type-check/0.4.0:
2491 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2492 | engines: {node: '>= 0.8.0'}
2493 | dependencies:
2494 | prelude-ls: 1.2.1
2495 | dev: false
2496 |
2497 | /type-fest/0.20.2:
2498 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
2499 | engines: {node: '>=10'}
2500 | dev: false
2501 |
2502 | /typed-array-length/1.0.4:
2503 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
2504 | dependencies:
2505 | call-bind: 1.0.2
2506 | for-each: 0.3.3
2507 | is-typed-array: 1.1.10
2508 | dev: false
2509 |
2510 | /typescript/5.1.6:
2511 | resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
2512 | engines: {node: '>=14.17'}
2513 | hasBin: true
2514 | dev: false
2515 |
2516 | /unbox-primitive/1.0.2:
2517 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
2518 | dependencies:
2519 | call-bind: 1.0.2
2520 | has-bigints: 1.0.2
2521 | has-symbols: 1.0.3
2522 | which-boxed-primitive: 1.0.2
2523 | dev: false
2524 |
2525 | /untildify/4.0.0:
2526 | resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
2527 | engines: {node: '>=8'}
2528 | dev: false
2529 |
2530 | /update-browserslist-db/1.0.11_browserslist@4.21.9:
2531 | resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
2532 | hasBin: true
2533 | peerDependencies:
2534 | browserslist: '>= 4.21.0'
2535 | dependencies:
2536 | browserslist: 4.21.9
2537 | escalade: 3.1.1
2538 | picocolors: 1.0.0
2539 | dev: false
2540 |
2541 | /uri-js/4.4.1:
2542 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2543 | dependencies:
2544 | punycode: 2.3.0
2545 | dev: false
2546 |
2547 | /util-deprecate/1.0.2:
2548 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
2549 |
2550 | /watchpack/2.4.0:
2551 | resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
2552 | engines: {node: '>=10.13.0'}
2553 | dependencies:
2554 | glob-to-regexp: 0.4.1
2555 | graceful-fs: 4.2.11
2556 | dev: false
2557 |
2558 | /which-boxed-primitive/1.0.2:
2559 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
2560 | dependencies:
2561 | is-bigint: 1.0.4
2562 | is-boolean-object: 1.1.2
2563 | is-number-object: 1.0.7
2564 | is-string: 1.0.7
2565 | is-symbol: 1.0.4
2566 | dev: false
2567 |
2568 | /which-typed-array/1.1.9:
2569 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
2570 | engines: {node: '>= 0.4'}
2571 | dependencies:
2572 | available-typed-arrays: 1.0.5
2573 | call-bind: 1.0.2
2574 | for-each: 0.3.3
2575 | gopd: 1.0.1
2576 | has-tostringtag: 1.0.0
2577 | is-typed-array: 1.1.10
2578 | dev: false
2579 |
2580 | /which/2.0.2:
2581 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2582 | engines: {node: '>= 8'}
2583 | hasBin: true
2584 | dependencies:
2585 | isexe: 2.0.0
2586 | dev: false
2587 |
2588 | /wrappy/1.0.2:
2589 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
2590 |
2591 | /yallist/4.0.0:
2592 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
2593 | dev: false
2594 |
2595 | /yaml/2.3.1:
2596 | resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
2597 | engines: {node: '>= 14'}
2598 |
2599 | /yocto-queue/0.1.0:
2600 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2601 | engines: {node: '>=10'}
2602 | dev: false
2603 |
2604 | /zod/3.21.4:
2605 | resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
2606 | dev: false
2607 |
--------------------------------------------------------------------------------