diff --git a/articles/doc/en/building-your-application/api/http.md b/articles/doc/en/building-your-application/api/http.md index 5926a38..dc57366 100644 --- a/articles/doc/en/building-your-application/api/http.md +++ b/articles/doc/en/building-your-application/api/http.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/building-your-application/api/rpc.md b/articles/doc/en/building-your-application/api/rpc.md index f75c8db..045619e 100644 --- a/articles/doc/en/building-your-application/api/rpc.md +++ b/articles/doc/en/building-your-application/api/rpc.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/building-your-application/cli/main.md b/articles/doc/en/building-your-application/cli/main.md index 313b012..c3f0891 100644 --- a/articles/doc/en/building-your-application/cli/main.md +++ b/articles/doc/en/building-your-application/cli/main.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/building-your-application/frontend/solana.md b/articles/doc/en/building-your-application/frontend/solana.md index a8876c3..ee9dad9 100644 --- a/articles/doc/en/building-your-application/frontend/solana.md +++ b/articles/doc/en/building-your-application/frontend/solana.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/building-your-application/frontend/ssg.md b/articles/doc/en/building-your-application/frontend/ssg.md index 5159093..224ea9c 100644 --- a/articles/doc/en/building-your-application/frontend/ssg.md +++ b/articles/doc/en/building-your-application/frontend/ssg.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/building-your-application/frontend/webapp.md b/articles/doc/en/building-your-application/frontend/webapp.md index 0c19d1b..de25d3f 100644 --- a/articles/doc/en/building-your-application/frontend/webapp.md +++ b/articles/doc/en/building-your-application/frontend/webapp.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/building-your-application/menu.md b/articles/doc/en/building-your-application/menu.md index 9737baa..df734f7 100644 --- a/articles/doc/en/building-your-application/menu.md +++ b/articles/doc/en/building-your-application/menu.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/building-your-application/worker/cron.md b/articles/doc/en/building-your-application/worker/cron.md index e0a1e3a..5cde23d 100644 --- a/articles/doc/en/building-your-application/worker/cron.md +++ b/articles/doc/en/building-your-application/worker/cron.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/building-your-application/worker/queue.md b/articles/doc/en/building-your-application/worker/queue.md index 0b2cd08..7fc48ce 100644 --- a/articles/doc/en/building-your-application/worker/queue.md +++ b/articles/doc/en/building-your-application/worker/queue.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/general/getting-started.md b/articles/doc/en/general/getting-started.md index 0c7f494..330d479 100644 --- a/articles/doc/en/general/getting-started.md +++ b/articles/doc/en/general/getting-started.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/general/installation.md b/articles/doc/en/general/installation.md index 3018775..3ec10d8 100644 --- a/articles/doc/en/general/installation.md +++ b/articles/doc/en/general/installation.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/en/general/project-structure.md b/articles/doc/en/general/project-structure.md index 26fff81..2c54249 100644 --- a/articles/doc/en/general/project-structure.md +++ b/articles/doc/en/general/project-structure.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/building-your-application/api/http.md b/articles/doc/ja/building-your-application/api/http.md index 777fd53..7f13bcb 100644 --- a/articles/doc/ja/building-your-application/api/http.md +++ b/articles/doc/ja/building-your-application/api/http.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/building-your-application/api/rpc.md b/articles/doc/ja/building-your-application/api/rpc.md index bd3559e..32fc34d 100644 --- a/articles/doc/ja/building-your-application/api/rpc.md +++ b/articles/doc/ja/building-your-application/api/rpc.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/building-your-application/cli/main.md b/articles/doc/ja/building-your-application/cli/main.md index d09c4a0..6ba0d42 100644 --- a/articles/doc/ja/building-your-application/cli/main.md +++ b/articles/doc/ja/building-your-application/cli/main.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/building-your-application/frontend/solana.md b/articles/doc/ja/building-your-application/frontend/solana.md index 8effc32..e1186dd 100644 --- a/articles/doc/ja/building-your-application/frontend/solana.md +++ b/articles/doc/ja/building-your-application/frontend/solana.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/building-your-application/frontend/ssg.md b/articles/doc/ja/building-your-application/frontend/ssg.md index 1620af7..fbdc7d9 100644 --- a/articles/doc/ja/building-your-application/frontend/ssg.md +++ b/articles/doc/ja/building-your-application/frontend/ssg.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/building-your-application/frontend/webapp.md b/articles/doc/ja/building-your-application/frontend/webapp.md index 9f96aa3..22ad885 100644 --- a/articles/doc/ja/building-your-application/frontend/webapp.md +++ b/articles/doc/ja/building-your-application/frontend/webapp.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/building-your-application/menu.md b/articles/doc/ja/building-your-application/menu.md index 5d55b1b..00eabfc 100644 --- a/articles/doc/ja/building-your-application/menu.md +++ b/articles/doc/ja/building-your-application/menu.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/building-your-application/worker/cron.md b/articles/doc/ja/building-your-application/worker/cron.md index 3f499bb..94c0991 100644 --- a/articles/doc/ja/building-your-application/worker/cron.md +++ b/articles/doc/ja/building-your-application/worker/cron.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/building-your-application/worker/queue.md b/articles/doc/ja/building-your-application/worker/queue.md index da24e4f..418a5fa 100644 --- a/articles/doc/ja/building-your-application/worker/queue.md +++ b/articles/doc/ja/building-your-application/worker/queue.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/general/getting-started.md b/articles/doc/ja/general/getting-started.md index 370b2b4..10cbdaa 100644 --- a/articles/doc/ja/general/getting-started.md +++ b/articles/doc/ja/general/getting-started.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/general/installation.md b/articles/doc/ja/general/installation.md index 370b2b4..10cbdaa 100644 --- a/articles/doc/ja/general/installation.md +++ b/articles/doc/ja/general/installation.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/articles/doc/ja/general/project-structure.md b/articles/doc/ja/general/project-structure.md index 9eabf99..ba863b5 100644 --- a/articles/doc/ja/general/project-structure.md +++ b/articles/doc/ja/general/project-structure.md @@ -41,7 +41,7 @@ console.log('Hello, World!') ```tsx:/src/app/[locale]/(default)/layout.tsx -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' @@ -56,7 +56,7 @@ export default async function DefaultLayout({ children, params: { locale }, }: Props) { - unstable_setRequestLocale(locale) + setRequestLocale(locale) return ( <> diff --git a/deno.lock b/deno.lock index c62457a..19bc062 100644 --- a/deno.lock +++ b/deno.lock @@ -1,27 +1,27 @@ { "version": "4", "specifiers": { - "npm:@dialectlabs/blinks@0.10.1": "0.10.1_@solana+wallet-adapter-react@0.15.35__@solana+web3.js@1.95.3__react@18.3.1__@solana+wallet-adapter-base@0.9.23___@solana+web3.js@1.95.3__typescript@5.4.5_@solana+wallet-adapter-react-ui@0.9.35__@solana+web3.js@1.95.3__react@18.3.1__react-dom@18.3.1___react@18.3.1__typescript@5.4.5_@solana+web3.js@1.95.3_react@18.3.1_react-dom@18.3.1__react@18.3.1_typescript@5.4.5", + "npm:@dialectlabs/blinks@0.10.1": "0.10.1_@solana+wallet-adapter-react@0.15.35__@solana+web3.js@1.95.3__react@18.3.1__@solana+wallet-adapter-base@0.9.23___@solana+web3.js@1.95.3_@solana+wallet-adapter-react-ui@0.9.35__@solana+web3.js@1.95.3__react@18.3.1__react-dom@18.3.1___react@18.3.1_@solana+web3.js@1.95.3_react@18.3.1_react-dom@18.3.1__react@18.3.1", "npm:@fortawesome/fontawesome-svg-core@6.5.2": "6.5.2", "npm:@fortawesome/free-brands-svg-icons@6.5.2": "6.5.2", "npm:@fortawesome/free-solid-svg-icons@6.5.2": "6.5.2", "npm:@fortawesome/react-fontawesome@0.2.2": "0.2.2_@fortawesome+fontawesome-svg-core@6.5.2_react@18.3.1", "npm:@glitchful-dev/sol-apy-sdk@3.0.8": "3.0.8", - "npm:@radix-ui/react-aspect-ratio@1.1.0": "1.1.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", + "npm:@radix-ui/react-aspect-ratio@1.1.0": "1.1.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", "npm:@radix-ui/react-avatar@1.0.4": "1.0.4_react@18.3.1_react-dom@18.3.1__react@18.3.1", "npm:@radix-ui/react-dialog@1.0.5": "1.0.5_react@18.3.1_react-dom@18.3.1__react@18.3.1", "npm:@radix-ui/react-dropdown-menu@2.0.6": "2.0.6_react@18.3.1_react-dom@18.3.1__react@18.3.1", "npm:@radix-ui/react-icons@1.3.0": "1.3.0_react@18.3.1", "npm:@radix-ui/react-label@2.0.2": "2.0.2_react@18.3.1_react-dom@18.3.1__react@18.3.1", - "npm:@radix-ui/react-progress@1.1.0": "1.1.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", + "npm:@radix-ui/react-progress@1.1.0": "1.1.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", "npm:@radix-ui/react-slot@1.0.2": "1.0.2_react@18.3.1", - "npm:@radix-ui/react-tabs@1.1.1": "1.1.1_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", + "npm:@radix-ui/react-tabs@1.1.1": "1.1.1_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", "npm:@radix-ui/react-toast@1.1.5": "1.1.5_react@18.3.1_react-dom@18.3.1__react@18.3.1", "npm:@react-spring/web@9.7.4": "9.7.4_react@18.3.1_react-dom@18.3.1__react@18.3.1", - "npm:@solana/spl-stake-pool@1.1.0": "1.1.0_@solana+web3.js@1.95.3_typescript@5.4.5", + "npm:@solana/spl-stake-pool@1.1.0": "1.1.0_@solana+web3.js@1.95.3_typescript@5.6.3", "npm:@solana/wallet-adapter-base@0.9.23": "0.9.23_@solana+web3.js@1.95.3", - "npm:@solana/wallet-adapter-react-ui@0.9.35": "0.9.35_@solana+web3.js@1.95.3_react@18.3.1_react-dom@18.3.1__react@18.3.1_typescript@5.4.5", - "npm:@solana/wallet-adapter-react@0.15.35": "0.15.35_@solana+web3.js@1.95.3_react@18.3.1_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3_typescript@5.4.5", + "npm:@solana/wallet-adapter-react-ui@0.9.35": "0.9.35_@solana+web3.js@1.95.3_react@18.3.1_react-dom@18.3.1__react@18.3.1", + "npm:@solana/wallet-adapter-react@0.15.35": "0.15.35_@solana+web3.js@1.95.3_react@18.3.1_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3", "npm:@solana/wallet-standard-features@1.2.0": "1.2.0", "npm:@solana/wallet-standard-util@1.1.1": "1.1.1", "npm:@solana/web3.js@1.95.3": "1.95.3", @@ -30,32 +30,32 @@ "npm:@types/node@20.13.0": "20.13.0", "npm:@types/react-syntax-highlighter@15.5.13": "15.5.13", "npm:autoprefixer@10.4.19": "10.4.19_postcss@8.4.38", - "npm:babel-plugin-react-compiler@0.0.0-experimental-487cb0e-20240529": "0.0.0-experimental-487cb0e-20240529_zod@3.23.8", + "npm:babel-plugin-react-compiler@19.0.0-beta-63b359f-20241101": "19.0.0-beta-63b359f-20241101", "npm:class-variance-authority@0.7.0": "0.7.0", "npm:clsx@2.1.1": "2.1.1", "npm:date-fns@4.1.0": "4.1.0", "npm:embla-carousel-autoplay@8.3.0": "8.3.0_embla-carousel@8.3.0", "npm:embla-carousel-react@8.3.0": "8.3.0_react@18.3.1_embla-carousel@8.3.0", - "npm:eslint-config-next@14.2.3": "14.2.3_eslint@8.57.0_typescript@5.4.5_eslint-plugin-import@2.31.0__eslint@8.57.0", - "npm:eslint-config-prettier@9.1.0": "9.1.0_eslint@8.57.0", - "npm:eslint@8.57.0": "8.57.0", + "npm:eslint-config-next@15.0.3": "15.0.3_eslint@9.14.0_typescript@5.6.3_@typescript-eslint+parser@8.13.0__eslint@9.14.0__typescript@5.6.3_eslint-plugin-import@2.31.0__eslint@9.14.0", + "npm:eslint-config-prettier@9.1.0": "9.1.0_eslint@9.14.0", + "npm:eslint@9.14.0": "9.14.0", "npm:github-slugger@2.0.0": "2.0.0", "npm:glob@10.4.3": "10.4.3", "npm:gray-matter@4.0.3": "4.0.3", - "npm:jotai@2.8.4": "2.8.4", + "npm:jotai@2.10.1": "2.10.1", "npm:lodash.throttle@4.1.1": "4.1.1", "npm:mdast-util-to-string@4.0.0": "4.0.0", - "npm:next-intl@3.14.1": "3.14.1_next@14.2.15__react@18.3.1__react-dom@18.3.1___react@18.3.1_react@18.3.1", - "npm:next-sitemap@4.2.3": "4.2.3_next@14.2.15__react@18.3.1__react-dom@18.3.1___react@18.3.1", + "npm:next-intl@3.25.0": "3.25.0_next@15.0.3__react@19.0.0-rc-66855b96-20241106__react-dom@19.0.0-rc-66855b96-20241106___react@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", + "npm:next-sitemap@4.2.3": "4.2.3_next@15.0.3__react@19.0.0-rc-66855b96-20241106__react-dom@19.0.0-rc-66855b96-20241106___react@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", "npm:next-themes@0.3.0": "0.3.0_react@18.3.1_react-dom@18.3.1__react@18.3.1", - "npm:next@15.0.0-canary.2": "15.0.0-canary.2_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", + "npm:next@15.0.3": "15.0.3_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", "npm:postcss@8.4.38": "8.4.38", - "npm:prettier-plugin-tailwindcss@0.6.1": "0.6.1_prettier@3.2.5", - "npm:prettier@3.2.5": "3.2.5", - "npm:react-dom@19.0.0-rc-f994737d14-20240522": "19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522", - "npm:react-markdown@9.0.1": "9.0.1_@types+react@18.3.11_react@18.3.1", - "npm:react-syntax-highlighter@15.5.0": "15.5.0_react@18.3.1", - "npm:react@19.0.0-rc-f994737d14-20240522": "19.0.0-rc-f994737d14-20240522", + "npm:prettier-plugin-tailwindcss@0.6.1": "0.6.1_prettier@3.3.3", + "npm:prettier@3.3.3": "3.3.3", + "npm:react-dom@19.0.0-rc-66855b96-20241106": "19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106", + "npm:react-markdown@9.0.1": "9.0.1_@types+react@18.3.12_react@18.3.1", + "npm:react-syntax-highlighter@15.6.1": "15.6.1_react@18.3.1", + "npm:react@19.0.0-rc-66855b96-20241106": "19.0.0-rc-66855b96-20241106", "npm:remark-gfm@4.0.0": "4.0.0", "npm:remark-math@6.0.0": "6.0.0", "npm:remark-slug@7.0.1": "7.0.1", @@ -64,12 +64,12 @@ "npm:tailwind-scrollbar@3.1.0": "3.1.0_tailwindcss@3.4.3__postcss@8.4.38", "npm:tailwindcss-animate@1.0.7": "1.0.7_tailwindcss@3.4.3__postcss@8.4.38", "npm:tailwindcss@3.4.3": "3.4.3_postcss@8.4.38", - "npm:types-react-dom@19.0.0-rc.0": "19.0.0-rc.0", - "npm:types-react@19.0.0-rc.0": "19.0.0-rc.0", - "npm:typescript@5.4.5": "5.4.5", + "npm:types-react-dom@19.0.0-rc.1": "19.0.0-rc.1", + "npm:types-react@19.0.0-rc.1": "19.0.0-rc.1", + "npm:typescript@5.6.3": "5.6.3", "npm:unified@11.0.5": "11.0.5", "npm:unist-util-visit@5.0.0": "5.0.0", - "npm:wrangler@3.58.0": "3.58.0_esbuild@0.17.19" + "npm:wrangler@3.86.0": "3.86.0_esbuild@0.17.19" }, "npm": { "@alloc/quick-lru@5.2.0": { @@ -82,22 +82,23 @@ "@jridgewell/trace-mapping@0.3.25" ] }, - "@babel/code-frame@7.25.7": { - "integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==", + "@babel/code-frame@7.26.2": { + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dependencies": [ - "@babel/highlight", + "@babel/helper-validator-identifier", + "js-tokens", "picocolors" ] }, - "@babel/compat-data@7.25.8": { - "integrity": "sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==" + "@babel/compat-data@7.26.2": { + "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==" }, - "@babel/core@7.25.8": { - "integrity": "sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==", + "@babel/core@7.26.0": { + "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", "dependencies": [ "@ampproject/remapping", "@babel/code-frame", - "@babel/generator@7.25.7", + "@babel/generator", "@babel/helper-compilation-targets", "@babel/helper-module-transforms", "@babel/helpers", @@ -112,40 +113,31 @@ "semver@6.3.1" ] }, - "@babel/generator@7.2.0": { - "integrity": "sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==", - "dependencies": [ - "@babel/types", - "jsesc@2.5.2", - "lodash", - "source-map@0.5.7", - "trim-right" - ] - }, - "@babel/generator@7.25.7": { - "integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==", + "@babel/generator@7.26.2": { + "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", "dependencies": [ + "@babel/parser", "@babel/types", "@jridgewell/gen-mapping", "@jridgewell/trace-mapping@0.3.25", - "jsesc@3.0.2" + "jsesc" ] }, - "@babel/helper-annotate-as-pure@7.25.7": { - "integrity": "sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==", + "@babel/helper-annotate-as-pure@7.25.9": { + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dependencies": [ "@babel/types" ] }, - "@babel/helper-builder-binary-assignment-operator-visitor@7.25.7": { - "integrity": "sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==", + "@babel/helper-builder-binary-assignment-operator-visitor@7.25.9": { + "integrity": "sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==", "dependencies": [ "@babel/traverse", "@babel/types" ] }, - "@babel/helper-compilation-targets@7.25.7": { - "integrity": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==", + "@babel/helper-compilation-targets@7.25.9": { + "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", "dependencies": [ "@babel/compat-data", "@babel/helper-validator-option", @@ -154,8 +146,8 @@ "semver@6.3.1" ] }, - "@babel/helper-create-class-features-plugin@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==", + "@babel/helper-create-class-features-plugin@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", "dependencies": [ "@babel/core", "@babel/helper-annotate-as-pure", @@ -167,8 +159,8 @@ "semver@6.3.1" ] }, - "@babel/helper-create-regexp-features-plugin@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==", + "@babel/helper-create-regexp-features-plugin@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==", "dependencies": [ "@babel/core", "@babel/helper-annotate-as-pure", @@ -176,7 +168,7 @@ "semver@6.3.1" ] }, - "@babel/helper-define-polyfill-provider@0.6.2_@babel+core@7.25.8": { + "@babel/helper-define-polyfill-provider@0.6.2_@babel+core@7.26.0": { "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", "dependencies": [ "@babel/core", @@ -187,41 +179,40 @@ "resolve@1.22.8" ] }, - "@babel/helper-member-expression-to-functions@7.25.7": { - "integrity": "sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==", + "@babel/helper-member-expression-to-functions@7.25.9": { + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", "dependencies": [ "@babel/traverse", "@babel/types" ] }, - "@babel/helper-module-imports@7.25.7": { - "integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==", + "@babel/helper-module-imports@7.25.9": { + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", "dependencies": [ "@babel/traverse", "@babel/types" ] }, - "@babel/helper-module-transforms@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==", + "@babel/helper-module-transforms@7.26.0_@babel+core@7.26.0": { + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", "dependencies": [ "@babel/core", "@babel/helper-module-imports", - "@babel/helper-simple-access", "@babel/helper-validator-identifier", "@babel/traverse" ] }, - "@babel/helper-optimise-call-expression@7.25.7": { - "integrity": "sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==", + "@babel/helper-optimise-call-expression@7.25.9": { + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", "dependencies": [ "@babel/types" ] }, - "@babel/helper-plugin-utils@7.25.7": { - "integrity": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==" + "@babel/helper-plugin-utils@7.25.9": { + "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==" }, - "@babel/helper-remap-async-to-generator@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==", + "@babel/helper-remap-async-to-generator@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", "dependencies": [ "@babel/core", "@babel/helper-annotate-as-pure", @@ -229,8 +220,8 @@ "@babel/traverse" ] }, - "@babel/helper-replace-supers@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==", + "@babel/helper-replace-supers@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", "dependencies": [ "@babel/core", "@babel/helper-member-expression-to-functions", @@ -238,83 +229,74 @@ "@babel/traverse" ] }, - "@babel/helper-simple-access@7.25.7": { - "integrity": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==", + "@babel/helper-simple-access@7.25.9": { + "integrity": "sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==", "dependencies": [ "@babel/traverse", "@babel/types" ] }, - "@babel/helper-skip-transparent-expression-wrappers@7.25.7": { - "integrity": "sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==", + "@babel/helper-skip-transparent-expression-wrappers@7.25.9": { + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", "dependencies": [ "@babel/traverse", "@babel/types" ] }, - "@babel/helper-string-parser@7.25.7": { - "integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==" + "@babel/helper-string-parser@7.25.9": { + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==" }, - "@babel/helper-validator-identifier@7.25.7": { - "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==" + "@babel/helper-validator-identifier@7.25.9": { + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==" }, - "@babel/helper-validator-option@7.25.7": { - "integrity": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==" + "@babel/helper-validator-option@7.25.9": { + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==" }, - "@babel/helper-wrap-function@7.25.7": { - "integrity": "sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==", + "@babel/helper-wrap-function@7.25.9": { + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", "dependencies": [ "@babel/template", "@babel/traverse", "@babel/types" ] }, - "@babel/helpers@7.25.7": { - "integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==", + "@babel/helpers@7.26.0": { + "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", "dependencies": [ "@babel/template", "@babel/types" ] }, - "@babel/highlight@7.25.7": { - "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==", - "dependencies": [ - "@babel/helper-validator-identifier", - "chalk@2.4.2", - "js-tokens", - "picocolors" - ] - }, - "@babel/parser@7.25.8": { - "integrity": "sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==", + "@babel/parser@7.26.2": { + "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", "dependencies": [ "@babel/types" ] }, - "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-UV9Lg53zyebzD1DwQoT9mzkEKa922LNUp5YkTJ6Uta0RbyXaQNUgcvSt7qIu1PpPzVb6rd10OVNTzkyBGeVmxQ==", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", "@babel/traverse" ] }, - "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-GDDWeVLNxRIkQTnJn2pDOM1pkCgYdSqPeT1a9vh9yIqu2uzzgw1zcqEb+IJOhy+dTBMlNdThrDIksr2o09qrrQ==", + "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-wxyWg2RYaSUYgmd9MR0FyRGyeOMQE/Uzr1wzd/g5cf5bwi9A4v6HFdDm7y1MgDtod/fLOSTZY6jDgV0xU9d5bA==", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", @@ -322,15 +304,15 @@ "@babel/plugin-transform-optional-chaining" ] }, - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-UVATLMidXrnH+GMUIuxq55nejlj02HP7F5ETyBONzP6G87fPBogG4CH6kxrSrdIuAjdwNO9VzyaYsrZPscWUrw==", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", "@babel/traverse" ] }, - "@babel/plugin-proposal-class-properties@7.18.6_@babel+core@7.25.8": { + "@babel/plugin-proposal-class-properties@7.18.6_@babel+core@7.26.0": { "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", "dependencies": [ "@babel/core", @@ -338,14 +320,14 @@ "@babel/helper-plugin-utils" ] }, - "@babel/plugin-proposal-export-default-from@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-5SLPHA/Gk7lNdaymtSVS9jH77Cs7yuHTR3dYj+9q+M7R7tNLXhNuvnmOfafRIzpWL+dtMibuu1I4ofrc768Gkw==", + "@babel/plugin-proposal-export-default-from@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-ykqgwNfSnNOB+C8fV5X4mG3AVmvu+WVxcaU9xHHtBb7PCrPeweMmPjGsn8eMaeJg6SJuoUuZENeeSWaarWqonQ==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6_@babel+core@7.25.8": { + "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6_@babel+core@7.26.0": { "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", "dependencies": [ "@babel/core", @@ -353,7 +335,7 @@ "@babel/plugin-syntax-nullish-coalescing-operator" ] }, - "@babel/plugin-proposal-optional-chaining@7.21.0_@babel+core@7.25.8": { + "@babel/plugin-proposal-optional-chaining@7.21.0_@babel+core@7.26.0": { "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", "dependencies": [ "@babel/core", @@ -362,76 +344,160 @@ "@babel/plugin-syntax-optional-chaining" ] }, - "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2_@babel+core@7.25.8": { + "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2_@babel+core@7.26.0": { "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dependencies": [ "@babel/core" ] }, - "@babel/plugin-syntax-dynamic-import@7.8.3_@babel+core@7.25.8": { + "@babel/plugin-syntax-async-generators@7.8.4_@babel+core@7.26.0": { + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-bigint@7.8.3_@babel+core@7.26.0": { + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-class-properties@7.12.13_@babel+core@7.26.0": { + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-class-static-block@7.14.5_@babel+core@7.26.0": { + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-dynamic-import@7.8.3_@babel+core@7.26.0": { "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-syntax-export-default-from@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-LRUCsC0YucSjabsmxx6yly8+Q/5mxKdp9gemlpR9ro3bfpcOQOXx/CHivs7QCbjgygd6uQ2GcRfHu1FVax/hgg==", + "@babel/plugin-syntax-export-default-from@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-9MhJ/SMTsVqsd69GyQg89lYR4o9T+oDGv5F6IsigxxqFVOyR/IflDLYP8WDI1l8fkhNGGktqkvL5qwNCtGEpgQ==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-flow@7.26.0_@babel+core@7.26.0": { + "integrity": "sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-syntax-flow@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w==", + "@babel/plugin-syntax-import-assertions@7.26.0_@babel+core@7.26.0": { + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-syntax-import-assertions@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-ZvZQRmME0zfJnDQnVBKYzHxXT7lYBB3Revz1GuS7oLXWMgqUPX4G+DDbT30ICClht9WKV34QVrZhSw6WdklwZQ==", + "@babel/plugin-syntax-import-attributes@7.26.0_@babel+core@7.26.0": { + "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-syntax-import-attributes@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==", + "@babel/plugin-syntax-import-meta@7.10.4_@babel+core@7.26.0": { + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-syntax-jsx@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==", + "@babel/plugin-syntax-json-strings@7.8.3_@babel+core@7.26.0": { + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3_@babel+core@7.25.8": { + "@babel/plugin-syntax-jsx@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-logical-assignment-operators@7.10.4_@babel+core@7.26.0": { + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3_@babel+core@7.26.0": { "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-syntax-optional-chaining@7.8.3_@babel+core@7.25.8": { + "@babel/plugin-syntax-numeric-separator@7.10.4_@babel+core@7.26.0": { + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-object-rest-spread@7.8.3_@babel+core@7.26.0": { + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-optional-catch-binding@7.8.3_@babel+core@7.26.0": { + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-optional-chaining@7.8.3_@babel+core@7.26.0": { "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-syntax-typescript@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==", + "@babel/plugin-syntax-private-property-in-object@7.14.5_@babel+core@7.26.0": { + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-syntax-unicode-sets-regex@7.18.6_@babel+core@7.25.8": { + "@babel/plugin-syntax-top-level-await@7.14.5_@babel+core@7.26.0": { + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-typescript@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", + "dependencies": [ + "@babel/core", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-syntax-unicode-sets-regex@7.18.6_@babel+core@7.26.0": { "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dependencies": [ "@babel/core", @@ -439,15 +505,15 @@ "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-arrow-functions@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==", + "@babel/plugin-transform-arrow-functions@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-async-generator-functions@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-9ypqkozyzpG+HxlH4o4gdctalFGIjjdufzo7I2XPda0iBnZ6a+FO0rIEQcdSPXp02CkvGsII1exJhmROPQd5oA==", + "@babel/plugin-transform-async-generator-functions@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", @@ -455,8 +521,8 @@ "@babel/traverse" ] }, - "@babel/plugin-transform-async-to-generator@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==", + "@babel/plugin-transform-async-to-generator@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", "dependencies": [ "@babel/core", "@babel/helper-module-imports", @@ -464,38 +530,38 @@ "@babel/helper-remap-async-to-generator" ] }, - "@babel/plugin-transform-block-scoped-functions@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==", + "@babel/plugin-transform-block-scoped-functions@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-block-scoping@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==", + "@babel/plugin-transform-block-scoping@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-class-properties@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-mhyfEW4gufjIqYFo9krXHJ3ElbFLIze5IDp+wQTxoPd+mwFb1NxatNAwmv8Q8Iuxv7Zc+q8EkiMQwc9IhyGf4g==", + "@babel/plugin-transform-class-properties@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", "dependencies": [ "@babel/core", "@babel/helper-create-class-features-plugin", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-class-static-block@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-e82gl3TCorath6YLf9xUwFehVvjvfqFhdOo4+0iVIVju+6XOi5XHkqB3P2AXnSwoeTX0HBoXq5gJFtvotJzFnQ==", + "@babel/plugin-transform-class-static-block@7.26.0_@babel+core@7.26.0": { + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", "dependencies": [ "@babel/core", "@babel/helper-create-class-features-plugin", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-classes@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==", + "@babel/plugin-transform-classes@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", "dependencies": [ "@babel/core", "@babel/helper-annotate-as-pure", @@ -506,84 +572,84 @@ "globals@11.12.0" ] }, - "@babel/plugin-transform-computed-properties@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==", + "@babel/plugin-transform-computed-properties@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", "@babel/template" ] }, - "@babel/plugin-transform-destructuring@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==", + "@babel/plugin-transform-destructuring@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-dotall-regex@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==", + "@babel/plugin-transform-dotall-regex@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", "dependencies": [ "@babel/core", "@babel/helper-create-regexp-features-plugin", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-duplicate-keys@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==", + "@babel/plugin-transform-duplicate-keys@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-HvS6JF66xSS5rNKXLqkk7L9c/jZ/cdIVIcoPVrnl8IsVpLggTjXs8OWekbLHs/VtYDDh5WXnQyeE3PPUGm22MA==", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", "dependencies": [ "@babel/core", "@babel/helper-create-regexp-features-plugin", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-dynamic-import@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-gznWY+mr4ZQL/EWPcbBQUP3BXS5FwZp8RUOw06BaRn8tQLzN4XLIxXejpHN9Qo8x8jjBmAAKp6FoS51AgkSA/A==", + "@babel/plugin-transform-dynamic-import@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-exponentiation-operator@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==", + "@babel/plugin-transform-exponentiation-operator@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==", "dependencies": [ "@babel/core", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-export-namespace-from@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-sPtYrduWINTQTW7FtOy99VCTWp4H23UX7vYcut7S4CIMEXU+54zKX9uCoGkLsWXteyaMXzVHgzWbLfQ1w4GZgw==", + "@babel/plugin-transform-export-namespace-from@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-flow-strip-types@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w==", + "@babel/plugin-transform-flow-strip-types@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", "@babel/plugin-syntax-flow" ] }, - "@babel/plugin-transform-for-of@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==", + "@babel/plugin-transform-for-of@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", "@babel/helper-skip-transparent-expression-wrappers" ] }, - "@babel/plugin-transform-function-name@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==", + "@babel/plugin-transform-function-name@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", "dependencies": [ "@babel/core", "@babel/helper-compilation-targets", @@ -591,44 +657,44 @@ "@babel/traverse" ] }, - "@babel/plugin-transform-json-strings@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-4OMNv7eHTmJ2YXs3tvxAfa/I43di+VcF+M4Wt66c88EAED1RoGaf1D64cL5FkRpNL+Vx9Hds84lksWvd/wMIdA==", + "@babel/plugin-transform-json-strings@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-literals@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==", + "@babel/plugin-transform-literals@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-logical-assignment-operators@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-f5W0AhSbbI+yY6VakT04jmxdxz+WsID0neG7+kQZbCOjuyJNdL5Nn4WIBm4hRpKnUcO9lP0eipUhFN12JpoH8g==", + "@babel/plugin-transform-logical-assignment-operators@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-member-expression-literals@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==", + "@babel/plugin-transform-member-expression-literals@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-modules-amd@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==", + "@babel/plugin-transform-modules-amd@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", "dependencies": [ "@babel/core", "@babel/helper-module-transforms", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-modules-commonjs@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==", + "@babel/plugin-transform-modules-commonjs@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==", "dependencies": [ "@babel/core", "@babel/helper-module-transforms", @@ -636,8 +702,8 @@ "@babel/helper-simple-access" ] }, - "@babel/plugin-transform-modules-systemjs@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==", + "@babel/plugin-transform-modules-systemjs@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", "dependencies": [ "@babel/core", "@babel/helper-module-transforms", @@ -646,45 +712,45 @@ "@babel/traverse" ] }, - "@babel/plugin-transform-modules-umd@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==", + "@babel/plugin-transform-modules-umd@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", "dependencies": [ "@babel/core", "@babel/helper-module-transforms", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-named-capturing-groups-regex@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==", + "@babel/plugin-transform-named-capturing-groups-regex@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", "dependencies": [ "@babel/core", "@babel/helper-create-regexp-features-plugin", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-new-target@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==", + "@babel/plugin-transform-new-target@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-nullish-coalescing-operator@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-Z7WJJWdQc8yCWgAmjI3hyC+5PXIubH9yRKzkl9ZEG647O9szl9zvmKLzpbItlijBnVhTUf1cpyWBsZ3+2wjWPQ==", + "@babel/plugin-transform-nullish-coalescing-operator@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-numeric-separator@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-rm9a5iEFPS4iMIy+/A/PiS0QN0UyjPIeVvbU5EMZFKJZHt8vQnasbpo3T3EFcxzCeYO0BHfc4RqooCZc51J86Q==", + "@babel/plugin-transform-numeric-separator@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-object-rest-spread@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-LkUu0O2hnUKHKE7/zYOIjByMa4VRaV2CD/cdGz0AxU9we+VA3kDDggKEzI0Oz1IroG+6gUP6UmWEHBMWZU316g==", + "@babel/plugin-transform-object-rest-spread@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", "dependencies": [ "@babel/core", "@babel/helper-compilation-targets", @@ -692,46 +758,46 @@ "@babel/plugin-transform-parameters" ] }, - "@babel/plugin-transform-object-super@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==", + "@babel/plugin-transform-object-super@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", "@babel/helper-replace-supers" ] }, - "@babel/plugin-transform-optional-catch-binding@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-EbQYweoMAHOn7iJ9GgZo14ghhb9tTjgOc88xFgYngifx7Z9u580cENCV159M4xDh3q/irbhSjZVpuhpC2gKBbg==", + "@babel/plugin-transform-optional-catch-binding@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-optional-chaining@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-q05Bk7gXOxpTHoQ8RSzGSh/LHVB9JEIkKnk3myAWwZHnYiTGYtbdrYkIsS8Xyh4ltKf7GNUSgzs/6P2bJtBAQg==", + "@babel/plugin-transform-optional-chaining@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", "@babel/helper-skip-transparent-expression-wrappers" ] }, - "@babel/plugin-transform-parameters@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==", + "@babel/plugin-transform-parameters@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-private-methods@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-KY0hh2FluNxMLwOCHbxVOKfdB5sjWG4M183885FmaqWWiGMhRZq4DQRKH6mHdEucbJnyDyYiZNwNG424RymJjA==", + "@babel/plugin-transform-private-methods@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", "dependencies": [ "@babel/core", "@babel/helper-create-class-features-plugin", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-private-property-in-object@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-8Uh966svuB4V8RHHg0QJOB32QK287NBksJOByoKmHMp1TAobNniNalIkI2i5IPj5+S9NYCG4VIjbEuiSN8r+ow==", + "@babel/plugin-transform-private-property-in-object@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", "dependencies": [ "@babel/core", "@babel/helper-annotate-as-pure", @@ -739,36 +805,36 @@ "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-property-literals@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==", + "@babel/plugin-transform-property-literals@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-react-display-name@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA==", + "@babel/plugin-transform-react-display-name@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-react-jsx-self@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==", + "@babel/plugin-transform-react-jsx-self@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-react-jsx-source@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==", + "@babel/plugin-transform-react-jsx-source@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-react-jsx@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==", + "@babel/plugin-transform-react-jsx@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", "dependencies": [ "@babel/core", "@babel/helper-annotate-as-pure", @@ -778,23 +844,31 @@ "@babel/types" ] }, - "@babel/plugin-transform-regenerator@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==", + "@babel/plugin-transform-regenerator@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", "regenerator-transform" ] }, - "@babel/plugin-transform-reserved-words@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==", + "@babel/plugin-transform-regexp-modifiers@7.26.0_@babel+core@7.26.0": { + "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", + "dependencies": [ + "@babel/core", + "@babel/helper-create-regexp-features-plugin", + "@babel/helper-plugin-utils" + ] + }, + "@babel/plugin-transform-reserved-words@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-runtime@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==", + "@babel/plugin-transform-runtime@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==", "dependencies": [ "@babel/core", "@babel/helper-module-imports", @@ -805,44 +879,44 @@ "semver@6.3.1" ] }, - "@babel/plugin-transform-shorthand-properties@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==", + "@babel/plugin-transform-shorthand-properties@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-spread@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==", + "@babel/plugin-transform-spread@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", "@babel/helper-skip-transparent-expression-wrappers" ] }, - "@babel/plugin-transform-sticky-regex@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==", + "@babel/plugin-transform-sticky-regex@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-template-literals@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==", + "@babel/plugin-transform-template-literals@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-typeof-symbol@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==", + "@babel/plugin-transform-typeof-symbol@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-typescript@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==", + "@babel/plugin-transform-typescript@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==", "dependencies": [ "@babel/core", "@babel/helper-annotate-as-pure", @@ -852,45 +926,45 @@ "@babel/plugin-syntax-typescript" ] }, - "@babel/plugin-transform-unicode-escapes@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==", + "@babel/plugin-transform-unicode-escapes@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-unicode-property-regex@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-IWfR89zcEPQGB/iB408uGtSPlQd3Jpq11Im86vUgcmSTcoWAiQMCTOa2K2yNNqFJEBVICKhayctee65Ka8OB0w==", + "@babel/plugin-transform-unicode-property-regex@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", "dependencies": [ "@babel/core", "@babel/helper-create-regexp-features-plugin", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-unicode-regex@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==", + "@babel/plugin-transform-unicode-regex@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", "dependencies": [ "@babel/core", "@babel/helper-create-regexp-features-plugin", "@babel/helper-plugin-utils" ] }, - "@babel/plugin-transform-unicode-sets-regex@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-YRW8o9vzImwmh4Q3Rffd09bH5/hvY0pxg+1H1i0f7APoUeg12G7+HhLj9ZFNIrYkgBXhIijPJ+IXypN0hLTIbw==", + "@babel/plugin-transform-unicode-sets-regex@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", "dependencies": [ "@babel/core", "@babel/helper-create-regexp-features-plugin", "@babel/helper-plugin-utils" ] }, - "@babel/preset-env@7.25.8": { - "integrity": "sha512-58T2yulDHMN8YMUxiLq5YmWUnlDCyY1FsHM+v12VMx+1/FlrUj5tY50iDCpofFQEM8fMYOaY9YRvym2jcjn1Dg==", + "@babel/preset-env@7.26.0": { + "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", "dependencies": [ "@babel/compat-data" ] }, - "@babel/preset-env@7.25.8_@babel+core@7.25.8": { - "integrity": "sha512-58T2yulDHMN8YMUxiLq5YmWUnlDCyY1FsHM+v12VMx+1/FlrUj5tY50iDCpofFQEM8fMYOaY9YRvym2jcjn1Dg==", + "@babel/preset-env@7.26.0_@babel+core@7.26.0": { + "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", "dependencies": [ "@babel/compat-data", "@babel/core", @@ -945,6 +1019,7 @@ "@babel/plugin-transform-private-property-in-object", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", + "@babel/plugin-transform-regexp-modifiers", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", @@ -963,8 +1038,8 @@ "semver@6.3.1" ] }, - "@babel/preset-flow@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-q2x3g0YHzo/Ohsr51KOYS/BtZMsvkzVd8qEyhZAyTatYdobfgXCuyppTqTuIhdq5kR/P3nyyVvZ6H5dMc4PnCQ==", + "@babel/preset-flow@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", @@ -972,7 +1047,7 @@ "@babel/plugin-transform-flow-strip-types" ] }, - "@babel/preset-modules@0.1.6-no-external-plugins_@babel+core@7.25.8": { + "@babel/preset-modules@0.1.6-no-external-plugins_@babel+core@7.26.0": { "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dependencies": [ "@babel/core", @@ -981,8 +1056,8 @@ "esutils" ] }, - "@babel/preset-typescript@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw==", + "@babel/preset-typescript@7.26.0_@babel+core@7.26.0": { + "integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==", "dependencies": [ "@babel/core", "@babel/helper-plugin-utils", @@ -992,8 +1067,8 @@ "@babel/plugin-transform-typescript" ] }, - "@babel/register@7.25.7_@babel+core@7.25.8": { - "integrity": "sha512-qHTd2Rhn/rKhSUwdY6+n98FmwXN+N+zxSVx3zWqRe9INyvTpv+aQ5gDV2+43ACd3VtMBzPPljbb0gZb8u5ma6Q==", + "@babel/register@7.25.9_@babel+core@7.26.0": { + "integrity": "sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==", "dependencies": [ "@babel/core", "clone-deep", @@ -1003,25 +1078,25 @@ "source-map-support" ] }, - "@babel/runtime@7.25.7": { - "integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==", + "@babel/runtime@7.26.0": { + "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==", "dependencies": [ "regenerator-runtime@0.14.1" ] }, - "@babel/template@7.25.7": { - "integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==", + "@babel/template@7.25.9": { + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", "dependencies": [ "@babel/code-frame", "@babel/parser", "@babel/types" ] }, - "@babel/traverse@7.25.7": { - "integrity": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==", + "@babel/traverse@7.25.9": { + "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", "dependencies": [ "@babel/code-frame", - "@babel/generator@7.25.7", + "@babel/generator", "@babel/parser", "@babel/template", "@babel/types", @@ -1029,34 +1104,40 @@ "globals@11.12.0" ] }, - "@babel/types@7.25.8": { - "integrity": "sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==", + "@babel/types@7.26.0": { + "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", "dependencies": [ "@babel/helper-string-parser", - "@babel/helper-validator-identifier", - "to-fast-properties" + "@babel/helper-validator-identifier" ] }, - "@cloudflare/kv-asset-handler@0.3.2": { - "integrity": "sha512-EeEjMobfuJrwoctj7FA1y1KEbM0+Q1xSjobIEyie9k4haVEBB7vkDvsasw1pM3rO39mL2akxIAzLMUAtrMHZhA==", + "@cloudflare/kv-asset-handler@0.3.4": { + "integrity": "sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==", "dependencies": [ "mime@3.0.0" ] }, - "@cloudflare/workerd-darwin-64@1.20240524.0": { - "integrity": "sha512-ATaXjefbTsrv4mpn4Fdua114RRDXcX5Ky+Mv+f4JTUllgalmqC4CYMN4jxRz9IpJU/fNMN8IEfvUyuJBAcl9Iw==" + "@cloudflare/workerd-darwin-64@1.20241106.1": { + "integrity": "sha512-zxvaToi1m0qzAScrxFt7UvFVqU8DxrCO2CinM1yQkv5no7pA1HolpIrwZ0xOhR3ny64Is2s/J6BrRjpO5dM9Zw==" }, - "@cloudflare/workerd-darwin-arm64@1.20240524.0": { - "integrity": "sha512-wnbsZI4CS0QPCd+wnBHQ40C28A/2Qo4ESi1YhE2735G3UNcc876MWksZhsubd+XH0XPIra6eNFqyw6wRMpQOXA==" + "@cloudflare/workerd-darwin-arm64@1.20241106.1": { + "integrity": "sha512-j3dg/42D/bPgfNP3cRUBxF+4waCKO/5YKwXNj+lnVOwHxDu+ne5pFw9TIkKYcWTcwn0ZUkbNZNM5rhJqRn4xbg==" }, - "@cloudflare/workerd-linux-64@1.20240524.0": { - "integrity": "sha512-E8mj+HPBryKwaJAiNsYzXtVjKCL0KvUBZbtxJxlWM4mLSQhT+uwGT3nydb/hFY59rZnQgZslw0oqEWht5TEYiQ==" + "@cloudflare/workerd-linux-64@1.20241106.1": { + "integrity": "sha512-Ih+Ye8E1DMBXcKrJktGfGztFqHKaX1CeByqshmTbODnWKHt6O65ax3oTecUwyC0+abuyraOpAtdhHNpFMhUkmw==" }, - "@cloudflare/workerd-linux-arm64@1.20240524.0": { - "integrity": "sha512-/Fr1W671t2triNCDCBWdStxngnbUfZunZ/2e4kaMLzJDJLYDtYdmvOUCBDzUD4ssqmIMbn9RCQQ0U+CLEoqBqw==" + "@cloudflare/workerd-linux-arm64@1.20241106.1": { + "integrity": "sha512-mdQFPk4+14Yywn7n1xIzI+6olWM8Ybz10R7H3h+rk0XulMumCWUCy1CzIDauOx6GyIcSgKIibYMssVHZR30ObA==" }, - "@cloudflare/workerd-windows-64@1.20240524.0": { - "integrity": "sha512-G+ThDEx57g9mAEKqhWnHaaJgpeGYtyhkmwM/BDpLqPks/rAY5YEfZbY4YL1pNk1kkcZDXGrwIsY8xe9Apf5JdA==" + "@cloudflare/workerd-windows-64@1.20241106.1": { + "integrity": "sha512-4rtcss31E/Rb/PeFocZfr+B9i1MdrkhsTBWizh8siNR4KMmkslU2xs2wPaH1z8+ErxkOsHrKRa5EPLh5rIiFeg==" + }, + "@cloudflare/workers-shared@0.7.1": { + "integrity": "sha512-46cP5FCrl3TrvHeoHLb5SRuiDMKH5kc9Yvo36SAfzt8dqJI/qJRoY1GP3ioHn/gP7v2QIoUOTAzIl7Ml7MnfrA==", + "dependencies": [ + "mime@3.0.0", + "zod" + ] }, "@coral-xyz/borsh@0.29.0_@solana+web3.js@1.95.3": { "integrity": "sha512-s7VFVa3a0oqpkuRloWVPdCK7hMbAMY270geZOGfCnaqexrP5dTIpbEHL33req6IYPPJ0hYa71cdvJ1h6V55/oQ==", @@ -1079,11 +1160,11 @@ "integrity": "sha512-DGb7OqUkaCJXlQYXfnDLZnyLJZaWNSdX8/Hr5X+eaGcTd/Ly9Fes6KuHAa9IdwVkxh1u4YAsqdTF3kXsy/i/zw==", "dependencies": [ "@solana/web3.js", - "nanoid@5.0.7", + "nanoid@5.0.8", "react@18.3.1" ] }, - "@dialectlabs/blinks@0.10.1_@solana+wallet-adapter-react@0.15.35__@solana+web3.js@1.95.3__react@18.3.1__@solana+wallet-adapter-base@0.9.23___@solana+web3.js@1.95.3__typescript@5.4.5_@solana+wallet-adapter-react-ui@0.9.35__@solana+web3.js@1.95.3__react@18.3.1__react-dom@18.3.1___react@18.3.1__typescript@5.4.5_@solana+web3.js@1.95.3_react@18.3.1_react-dom@18.3.1__react@18.3.1_typescript@5.4.5": { + "@dialectlabs/blinks@0.10.1_@solana+wallet-adapter-react@0.15.35__@solana+web3.js@1.95.3__react@18.3.1__@solana+wallet-adapter-base@0.9.23___@solana+web3.js@1.95.3_@solana+wallet-adapter-react-ui@0.9.35__@solana+web3.js@1.95.3__react@18.3.1__react-dom@18.3.1___react@18.3.1_@solana+web3.js@1.95.3_react@18.3.1_react-dom@18.3.1__react@18.3.1": { "integrity": "sha512-VHHQY65Io7PB4fSiK8plVZM0Ei/I5H5nsppnH2CQUgfBuwnvmkTUAWej1lnl/IJHxeds+iiLMDIe3/ZZzMto9Q==", "dependencies": [ "@dialectlabs/blinks-core", @@ -1095,8 +1176,8 @@ "react-dom@18.3.1_react@18.3.1" ] }, - "@emnapi/runtime@1.3.0": { - "integrity": "sha512-XMBySMuNZs3DM96xcJmLW4EfGnf+uGmFNjzpehMjuX5PLB5j87ar2Zc4e3PVeZ3I5g3tYtAqskB28manlF69Zw==", + "@emnapi/runtime@1.3.1": { + "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", "dependencies": [ "tslib" ] @@ -1181,23 +1262,34 @@ "@esbuild/win32-x64@0.17.19": { "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==" }, - "@eslint-community/eslint-utils@4.4.0_eslint@8.57.0": { - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "@eslint-community/eslint-utils@4.4.1_eslint@9.14.0": { + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", "dependencies": [ "eslint", - "eslint-visitor-keys" + "eslint-visitor-keys@3.4.3" ] }, - "@eslint-community/regexpp@4.11.1": { - "integrity": "sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==" + "@eslint-community/regexpp@4.12.1": { + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==" }, - "@eslint/eslintrc@2.1.4": { - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "@eslint/config-array@0.18.0": { + "integrity": "sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==", + "dependencies": [ + "@eslint/object-schema", + "debug@4.3.7", + "minimatch@3.1.2" + ] + }, + "@eslint/core@0.7.0": { + "integrity": "sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==" + }, + "@eslint/eslintrc@3.1.0": { + "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", "dependencies": [ "ajv", "debug@4.3.7", "espree", - "globals@13.24.0", + "globals@14.0.0", "ignore", "import-fresh@3.3.0", "js-yaml@4.1.0", @@ -1205,8 +1297,17 @@ "strip-json-comments" ] }, - "@eslint/js@8.57.0": { - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==" + "@eslint/js@9.14.0": { + "integrity": "sha512-pFoEtFWCPyDOl+C6Ift+wC7Ro89otjigCf5vcuWqWgqNSQbRrpjSvdeE6ofLz4dHmyxD5f7gIdGT4+p36L6Twg==" + }, + "@eslint/object-schema@2.1.4": { + "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==" + }, + "@eslint/plugin-kit@0.2.2": { + "integrity": "sha512-CXtq5nR4Su+2I47WPOlWud98Y5Lv8Kyxp2ukhgFx/eW6Blm18VXJO5WuQylPugRo8nbluoi6GvvxBLqHcvqUUw==", + "dependencies": [ + "levn" + ] }, "@fastify/busboy@2.1.1": { "integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==" @@ -1217,8 +1318,8 @@ "@floating-ui/utils" ] }, - "@floating-ui/dom@1.6.11": { - "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", + "@floating-ui/dom@1.6.12": { + "integrity": "sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==", "dependencies": [ "@floating-ui/core", "@floating-ui/utils" @@ -1235,43 +1336,37 @@ "@floating-ui/utils@0.2.8": { "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==" }, - "@formatjs/ecma402-abstract@2.1.0": { - "integrity": "sha512-SE2V2PE03K9U/YQZ3nxEOysRkQ/CfSwLHR789Uk9N0PTiWT6I+17UTDI97zYEwC1mbnjefqmtjbL8nunjPwGjw==", + "@formatjs/ecma402-abstract@2.2.3": { + "integrity": "sha512-aElGmleuReGnk2wtYOzYFmNWYoiWWmf1pPPCYg0oiIQSJj0mjc4eUfzUXaSOJ4S8WzI/cLqnCTWjqz904FT2OQ==", "dependencies": [ "@formatjs/fast-memoize", - "@formatjs/intl-localematcher@0.5.4", + "@formatjs/intl-localematcher", "tslib" ] }, - "@formatjs/fast-memoize@2.2.0": { - "integrity": "sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==", + "@formatjs/fast-memoize@2.2.3": { + "integrity": "sha512-3jeJ+HyOfu8osl3GNSL4vVHUuWFXR03Iz9jjgI7RwjG6ysu/Ymdr0JRCPHfF5yGbTE6JCrd63EpvX1/WybYRbA==", "dependencies": [ "tslib" ] }, - "@formatjs/icu-messageformat-parser@2.7.9": { - "integrity": "sha512-9Z5buDRMsTbplXknvRlDmnpWhZrayNVcVvkH0+SSz8Ll4XD/7Tcn8m1IjxM3iBJSwQbxwxb7/g0Fkx3d4j2osw==", + "@formatjs/icu-messageformat-parser@2.9.3": { + "integrity": "sha512-9L99QsH14XjOCIp4TmbT8wxuffJxGK8uLNO1zNhLtcZaVXvv626N0s4A2qgRCKG3dfYWx9psvGlFmvyVBa6u/w==", "dependencies": [ "@formatjs/ecma402-abstract", "@formatjs/icu-skeleton-parser", "tslib" ] }, - "@formatjs/icu-skeleton-parser@1.8.3": { - "integrity": "sha512-TsKAP013ayZFbWWR2KWy+f9QVZh0yDFTPK3yE4OqU2gnzafvmKTodRtJLVpfZmpXWJ5y7BWD1AsyT14mcbLzig==", + "@formatjs/icu-skeleton-parser@1.8.7": { + "integrity": "sha512-fI+6SmS2g7h3srfAKSWa5dwreU5zNEfon2uFo99OToiLF6yxGE+WikvFSbsvMAYkscucvVmTYNlWlaDPp0n5HA==", "dependencies": [ "@formatjs/ecma402-abstract", "tslib" ] }, - "@formatjs/intl-localematcher@0.2.32": { - "integrity": "sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==", - "dependencies": [ - "tslib" - ] - }, - "@formatjs/intl-localematcher@0.5.4": { - "integrity": "sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==", + "@formatjs/intl-localematcher@0.5.7": { + "integrity": "sha512-GGFtfHGQVFe/niOZp24Kal5b2i36eE2bNL0xi9Sg/yd0TR8aLjcteApZdHmismP5QQax1cMnZM9yWySUUjJteA==", "dependencies": [ "tslib" ] @@ -1312,28 +1407,24 @@ "fetch-ponyfill" ] }, - "@hapi/hoek@9.3.0": { - "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" + "@humanfs/core@0.19.1": { + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==" }, - "@hapi/topo@5.1.0": { - "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "@humanfs/node@0.16.6": { + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", "dependencies": [ - "@hapi/hoek" - ] - }, - "@humanwhocodes/config-array@0.11.14": { - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", - "dependencies": [ - "@humanwhocodes/object-schema", - "debug@4.3.7", - "minimatch@3.1.2" + "@humanfs/core", + "@humanwhocodes/retry@0.3.1" ] }, "@humanwhocodes/module-importer@1.0.1": { "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" }, - "@humanwhocodes/object-schema@2.0.3": { - "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==" + "@humanwhocodes/retry@0.3.1": { + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==" + }, + "@humanwhocodes/retry@0.4.1": { + "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==" }, "@img/sharp-darwin-arm64@0.33.5": { "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", @@ -1433,17 +1524,30 @@ "@isaacs/ttlcache@1.4.1": { "integrity": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==" }, + "@istanbuljs/load-nyc-config@1.1.0": { + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dependencies": [ + "camelcase@5.3.1", + "find-up@4.1.0", + "get-package-type", + "js-yaml@3.14.1", + "resolve-from@5.0.0" + ] + }, + "@istanbuljs/schema@0.1.3": { + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + }, "@jest/create-cache-key-function@29.7.0": { "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", "dependencies": [ - "@jest/types@29.6.3" + "@jest/types" ] }, "@jest/environment@29.7.0": { "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dependencies": [ "@jest/fake-timers", - "@jest/types@29.6.3", + "@jest/types", "@types/node@22.5.4", "jest-mock" ] @@ -1451,7 +1555,7 @@ "@jest/fake-timers@29.7.0": { "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dependencies": [ - "@jest/types@29.6.3", + "@jest/types", "@sinonjs/fake-timers", "@types/node@22.5.4", "jest-message-util", @@ -1465,22 +1569,24 @@ "@sinclair/typebox" ] }, - "@jest/types@24.9.0": { - "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "@jest/transform@29.7.0": { + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dependencies": [ - "@types/istanbul-lib-coverage", - "@types/istanbul-reports@1.1.2", - "@types/yargs@13.0.12" - ] - }, - "@jest/types@26.6.2": { - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", - "dependencies": [ - "@types/istanbul-lib-coverage", - "@types/istanbul-reports@3.0.4", - "@types/node@22.5.4", - "@types/yargs@15.0.19", - "chalk@4.1.2" + "@babel/core", + "@jest/types", + "@jridgewell/trace-mapping@0.3.25", + "babel-plugin-istanbul", + "chalk@4.1.2", + "convert-source-map", + "fast-json-stable-stringify", + "graceful-fs", + "jest-haste-map", + "jest-regex-util", + "jest-util", + "micromatch", + "pirates", + "slash", + "write-file-atomic@4.0.2" ] }, "@jest/types@29.6.3": { @@ -1488,9 +1594,9 @@ "dependencies": [ "@jest/schemas", "@types/istanbul-lib-coverage", - "@types/istanbul-reports@3.0.4", + "@types/istanbul-reports", "@types/node@22.5.4", - "@types/yargs@17.0.33", + "@types/yargs", "chalk@4.1.2" ] }, @@ -1535,71 +1641,38 @@ "@next/env@13.5.7": { "integrity": "sha512-uVuRqoj28Ys/AI/5gVEgRAISd0KWI0HRjOO1CTpNgmX3ZsHb5mdn14Y59yk0IxizXdo7ZjsI2S7qbWnO+GNBcA==" }, - "@next/env@14.2.15": { - "integrity": "sha512-S1qaj25Wru2dUpcIZMjxeMVSwkt8BK4dmWHHiBuRstcIyOsMapqT4A4jSB6onvqeygkSSmOkyny9VVx8JIGamQ==" - }, - "@next/env@15.0.0-canary.2": { - "integrity": "sha512-cbViwp1Uj0Vpq31fpAlaEcUCBkYI2gM1N6C4bwJYmcSvQ2gFp8uKFYFwzDxKbK1ntt5OJVbZdnv4fHXOIBv7JQ==" + "@next/env@15.0.3": { + "integrity": "sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==" }, - "@next/eslint-plugin-next@14.2.3": { - "integrity": "sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==", + "@next/eslint-plugin-next@15.0.3": { + "integrity": "sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==", "dependencies": [ - "glob@10.3.10" + "fast-glob@3.3.1" ] }, - "@next/swc-darwin-arm64@14.2.15": { - "integrity": "sha512-Rvh7KU9hOUBnZ9TJ28n2Oa7dD9cvDBKua9IKx7cfQQ0GoYUwg9ig31O2oMwH3wm+pE3IkAQ67ZobPfEgurPZIA==" - }, - "@next/swc-darwin-arm64@15.0.0-canary.2": { - "integrity": "sha512-BfgZhGF/tQoSIoCpVObZDc6jRgL5bJu4WTBFL8lmP4UM8XTpL6tdtWuByqd3TGZUkG9Rmb/aRVwPAXVzp8LXxw==" - }, - "@next/swc-darwin-x64@14.2.15": { - "integrity": "sha512-5TGyjFcf8ampZP3e+FyCax5zFVHi+Oe7sZyaKOngsqyaNEpOgkKB3sqmymkZfowy3ufGA/tUgDPPxpQx931lHg==" - }, - "@next/swc-darwin-x64@15.0.0-canary.2": { - "integrity": "sha512-QmmYIjt7nRfDVkXwtawvU6GU9OeKw0+DPL4ORhZD6dTBStlJE3cY2xMfxIVTrq1voLHXOx7JcLo0qpzJ1F6JKg==" - }, - "@next/swc-linux-arm64-gnu@14.2.15": { - "integrity": "sha512-3Bwv4oc08ONiQ3FiOLKT72Q+ndEMyLNsc/D3qnLMbtUYTQAmkx9E/JRu0DBpHxNddBmNT5hxz1mYBphJ3mfrrw==" - }, - "@next/swc-linux-arm64-gnu@15.0.0-canary.2": { - "integrity": "sha512-9/TrX8lzCCaQmsY3altOXHvh05gFevW+Xwkxv7ccwFum9Zg2JjecTge6cZGlaP9IiSn+WExEXc5Zg/rGIA8p8g==" - }, - "@next/swc-linux-arm64-musl@14.2.15": { - "integrity": "sha512-k5xf/tg1FBv/M4CMd8S+JL3uV9BnnRmoe7F+GWC3DxkTCD9aewFRH1s5rJ1zkzDa+Do4zyN8qD0N8c84Hu96FQ==" - }, - "@next/swc-linux-arm64-musl@15.0.0-canary.2": { - "integrity": "sha512-FzB68yWpEqJAHEQ/IHI7bJLpmDZQipzJGyT/pHcZWtz0ES6Ysaz39g4JcU1etYj4rnYuH5D4CItVAzQFHavuIg==" - }, - "@next/swc-linux-x64-gnu@14.2.15": { - "integrity": "sha512-kE6q38hbrRbKEkkVn62reLXhThLRh6/TvgSP56GkFNhU22TbIrQDEMrO7j0IcQHcew2wfykq8lZyHFabz0oBrA==" - }, - "@next/swc-linux-x64-gnu@15.0.0-canary.2": { - "integrity": "sha512-Pm8krYC1MSHVwJxWHlWRLlmT6ks8aNlXSp68q4QFFF/I4XB+U+7xVhWnE+Gk2OM1rNH1Gmb6Z0YQB5sfrIJqKA==" + "@next/swc-darwin-arm64@15.0.3": { + "integrity": "sha512-s3Q/NOorCsLYdCKvQlWU+a+GeAd3C8Rb3L1YnetsgwXzhc3UTWrtQpB/3eCjFOdGUj5QmXfRak12uocd1ZiiQw==" }, - "@next/swc-linux-x64-musl@14.2.15": { - "integrity": "sha512-PZ5YE9ouy/IdO7QVJeIcyLn/Rc4ml9M2G4y3kCM9MNf1YKvFY4heg3pVa/jQbMro+tP6yc4G2o9LjAz1zxD7tQ==" + "@next/swc-darwin-x64@15.0.3": { + "integrity": "sha512-Zxl/TwyXVZPCFSf0u2BNj5sE0F2uR6iSKxWpq4Wlk/Sv9Ob6YCKByQTkV2y6BCic+fkabp9190hyrDdPA/dNrw==" }, - "@next/swc-linux-x64-musl@15.0.0-canary.2": { - "integrity": "sha512-hn4Q0yALMjPIz3WUgPkGRN8fwcvuZ1PnDS5iyTk/SazlM76TDZeS7H2+eWJr5JO0b9zvNMT3iQgZ7ga/gKxSlg==" + "@next/swc-linux-arm64-gnu@15.0.3": { + "integrity": "sha512-T5+gg2EwpsY3OoaLxUIofmMb7ohAUlcNZW0fPQ6YAutaWJaxt1Z1h+8zdl4FRIOr5ABAAhXtBcpkZNwUcKI2fw==" }, - "@next/swc-win32-arm64-msvc@14.2.15": { - "integrity": "sha512-2raR16703kBvYEQD9HNLyb0/394yfqzmIeyp2nDzcPV4yPjqNUG3ohX6jX00WryXz6s1FXpVhsCo3i+g4RUX+g==" + "@next/swc-linux-arm64-musl@15.0.3": { + "integrity": "sha512-WkAk6R60mwDjH4lG/JBpb2xHl2/0Vj0ZRu1TIzWuOYfQ9tt9NFsIinI1Epma77JVgy81F32X/AeD+B2cBu/YQA==" }, - "@next/swc-win32-arm64-msvc@15.0.0-canary.2": { - "integrity": "sha512-hLggbrAgKSUDyrWPCcSSUPYn/bMmeRExsnl9itJWyhj9eWQKKtuLrmfqhxSNxPzWXJVv7sfE4X8cWYc8mIitOQ==" + "@next/swc-linux-x64-gnu@15.0.3": { + "integrity": "sha512-gWL/Cta1aPVqIGgDb6nxkqy06DkwJ9gAnKORdHWX1QBbSZZB+biFYPFti8aKIQL7otCE1pjyPaXpFzGeG2OS2w==" }, - "@next/swc-win32-ia32-msvc@14.2.15": { - "integrity": "sha512-fyTE8cklgkyR1p03kJa5zXEaZ9El+kDNM5A+66+8evQS5e/6v0Gk28LqA0Jet8gKSOyP+OTm/tJHzMlGdQerdQ==" + "@next/swc-linux-x64-musl@15.0.3": { + "integrity": "sha512-QQEMwFd8r7C0GxQS62Zcdy6GKx999I/rTO2ubdXEe+MlZk9ZiinsrjwoiBL5/57tfyjikgh6GOU2WRQVUej3UA==" }, - "@next/swc-win32-ia32-msvc@15.0.0-canary.2": { - "integrity": "sha512-6tJ2oIZhTFWGrMNOzBeSucB+M6hqBnv3yJgbvrNKZYqL1VxgGvoSdAnzNSB3lB3+7qw0cwnDV/NMefiXgHLnEw==" + "@next/swc-win32-arm64-msvc@15.0.3": { + "integrity": "sha512-9TEp47AAd/ms9fPNgtgnT7F3M1Hf7koIYYWCMQ9neOwjbVWJsHZxrFbI3iEDJ8rf1TDGpmHbKxXf2IFpAvheIQ==" }, - "@next/swc-win32-x64-msvc@14.2.15": { - "integrity": "sha512-SzqGbsLsP9OwKNUG9nekShTwhj6JSB9ZLMWQ8g1gG6hdE5gQLncbnbymrwy2yVmH9nikSLYRYxYMFu78Ggp7/g==" - }, - "@next/swc-win32-x64-msvc@15.0.0-canary.2": { - "integrity": "sha512-cOElrHYM9Cw7f0R0lRjcMOAHLrKYe/Icq3eOCide+G3BFxdqqpEaqmQbOvFpG0O6z+zvwQx3e+BnlEHT+Z3SQA==" + "@next/swc-win32-x64-msvc@15.0.3": { + "integrity": "sha512-VNAz+HN4OGgvZs6MOoVfnn41kBzT+M+tB+OK4cww6DNyWS6wKaDpaAm/qLeOUbnMh0oVx1+mg0uoYARF69dJyA==" }, "@noble/curves@1.6.0": { "integrity": "sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==", @@ -1651,12 +1724,12 @@ "react-dom@18.3.1_react@18.3.1" ] }, - "@radix-ui/react-aspect-ratio@1.1.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-aspect-ratio@1.1.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-dP87DM/Y7jFlPgUZTlhx6FF5CEzOiaxp2rBCKlaXlpH5Ip/9Fg5zZ9lDOQ5o/MOfUlf36eak14zoWYpgcgGoOg==", "dependencies": [ - "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522", - "react-dom@19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106", + "react-dom@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-avatar@1.0.4_react@18.3.1_react-dom@18.3.1__react@18.3.1": { @@ -1683,15 +1756,15 @@ "react-dom@18.3.1_react@18.3.1" ] }, - "@radix-ui/react-collection@1.1.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-collection@1.1.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==", "dependencies": [ - "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-context@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-slot@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522", - "react-dom@19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-context@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-slot@1.1.0_react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106", + "react-dom@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-compose-refs@1.0.1_react@18.3.1": { @@ -1701,10 +1774,10 @@ "react@18.3.1" ] }, - "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==", "dependencies": [ - "react@19.0.0-rc-f994737d14-20240522" + "react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-context@1.0.1_react@18.3.1": { @@ -1714,16 +1787,16 @@ "react@18.3.1" ] }, - "@radix-ui/react-context@1.1.0_react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-context@1.1.0_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", "dependencies": [ - "react@19.0.0-rc-f994737d14-20240522" + "react@19.0.0-rc-66855b96-20241106" ] }, - "@radix-ui/react-context@1.1.1_react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-context@1.1.1_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==", "dependencies": [ - "react@19.0.0-rc-f994737d14-20240522" + "react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-dialog@1.0.5_react@18.3.1_react-dom@18.3.1__react@18.3.1": { @@ -1755,10 +1828,10 @@ "react@18.3.1" ] }, - "@radix-ui/react-direction@1.1.0_react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-direction@1.1.0_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==", "dependencies": [ - "react@19.0.0-rc-f994737d14-20240522" + "react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-dismissable-layer@1.0.5_react@18.3.1_react-dom@18.3.1__react@18.3.1": { @@ -1821,11 +1894,11 @@ "react@18.3.1" ] }, - "@radix-ui/react-id@1.1.0_react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-id@1.1.0_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==", "dependencies": [ - "@radix-ui/react-use-layout-effect@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-use-layout-effect@1.1.0_react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-label@2.0.2_react@18.3.1_react-dom@18.3.1__react@18.3.1": { @@ -1900,13 +1973,13 @@ "react-dom@18.3.1_react@18.3.1" ] }, - "@radix-ui/react-presence@1.1.1_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-presence@1.1.1_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-IeFXVi4YS1K0wVZzXNrbaaUvIJ3qdY+/Ih4eHFhWA9SwGR9UDX7Ck8abvL57C4cv3wwMvUE0OG69Qc3NCcTe/A==", "dependencies": [ - "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-use-layout-effect@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522", - "react-dom@19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-use-layout-effect@1.1.0_react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106", + "react-dom@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-primitive@1.0.3_react@18.3.1_react-dom@18.3.1__react@18.3.1": { @@ -1918,21 +1991,21 @@ "react-dom@18.3.1_react@18.3.1" ] }, - "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==", "dependencies": [ - "@radix-ui/react-slot@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522", - "react-dom@19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-slot@1.1.0_react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106", + "react-dom@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106" ] }, - "@radix-ui/react-progress@1.1.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-progress@1.1.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-aSzvnYpP725CROcxAOEBVZZSIQVQdHgBr2QQFKySsaD14u8dNT0batuXI+AAGDdAHfXH8rbnHmjYFqVJ21KkRg==", "dependencies": [ - "@radix-ui/react-context@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522", - "react-dom@19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-context@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106", + "react-dom@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-roving-focus@1.0.4_react@18.3.1_react-dom@18.3.1__react@18.3.1": { @@ -1952,20 +2025,20 @@ "react-dom@18.3.1_react@18.3.1" ] }, - "@radix-ui/react-roving-focus@1.1.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-roving-focus@1.1.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==", "dependencies": [ "@radix-ui/primitive@1.1.0", - "@radix-ui/react-collection@1.1.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-context@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-direction@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-id@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-use-callback-ref@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-use-controllable-state@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522", - "react-dom@19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-collection@1.1.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-context@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-direction@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-id@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-use-callback-ref@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-use-controllable-state@1.1.0_react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106", + "react-dom@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-slot@1.0.2_react@18.3.1": { @@ -1976,26 +2049,26 @@ "react@18.3.1" ] }, - "@radix-ui/react-slot@1.1.0_react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-slot@1.1.0_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==", "dependencies": [ - "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-compose-refs@1.1.0_react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106" ] }, - "@radix-ui/react-tabs@1.1.1_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-tabs@1.1.1_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-3GBUDmP2DvzmtYLMsHmpA1GtR46ZDZ+OreXM/N+kkQJOPIgytFWWTfDQmBQKBvaFS0Vno0FktdbVzN28KGrMdw==", "dependencies": [ "@radix-ui/primitive@1.1.0", - "@radix-ui/react-context@1.1.1_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-direction@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-id@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-presence@1.1.1_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-roving-focus@1.1.0_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522", - "@radix-ui/react-use-controllable-state@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522", - "react-dom@19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-context@1.1.1_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-direction@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-id@1.1.0_react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-presence@1.1.1_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-primitive@2.0.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-roving-focus@1.1.0_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106", + "@radix-ui/react-use-controllable-state@1.1.0_react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106", + "react-dom@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-toast@1.1.5_react@18.3.1_react-dom@18.3.1__react@18.3.1": { @@ -2025,10 +2098,10 @@ "react@18.3.1" ] }, - "@radix-ui/react-use-callback-ref@1.1.0_react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-use-callback-ref@1.1.0_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==", "dependencies": [ - "react@19.0.0-rc-f994737d14-20240522" + "react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-use-controllable-state@1.0.1_react@18.3.1": { @@ -2039,11 +2112,11 @@ "react@18.3.1" ] }, - "@radix-ui/react-use-controllable-state@1.1.0_react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-use-controllable-state@1.1.0_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==", "dependencies": [ - "@radix-ui/react-use-callback-ref@1.1.0_react@19.0.0-rc-f994737d14-20240522", - "react@19.0.0-rc-f994737d14-20240522" + "@radix-ui/react-use-callback-ref@1.1.0_react@19.0.0-rc-66855b96-20241106", + "react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-use-escape-keydown@1.0.3_react@18.3.1": { @@ -2061,10 +2134,10 @@ "react@18.3.1" ] }, - "@radix-ui/react-use-layout-effect@1.1.0_react@19.0.0-rc-f994737d14-20240522": { + "@radix-ui/react-use-layout-effect@1.1.0_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==", "dependencies": [ - "react@19.0.0-rc-f994737d14-20240522" + "react@19.0.0-rc-66855b96-20241106" ] }, "@radix-ui/react-use-rect@1.0.1_react@18.3.1": { @@ -2098,161 +2171,29 @@ "@babel/runtime" ] }, - "@react-native-async-storage/async-storage@1.24.0_react-native@0.75.4__react@18.3.1__typescript@5.4.5_react@18.3.1_typescript@5.4.5": { + "@react-native-async-storage/async-storage@1.24.0_react-native@0.76.1__react@18.3.1_react@18.3.1": { "integrity": "sha512-W4/vbwUOYOjco0x3toB8QCr7EjIP6nE9G7o8PMguvvjYT5Awg09lyV4enACRx4s++PPulBiBSjL0KTFx2u0Z/g==", "dependencies": [ "merge-options", "react-native" ] }, - "@react-native-community/cli-clean@14.1.0": { - "integrity": "sha512-/C4j1yntLo6faztNgZnsDtgpGqa6j0+GYrxOY8LqaKAN03OCnoeUUKO6w78dycbYSGglc1xjJg2RZI/M2oF2AA==", - "dependencies": [ - "@react-native-community/cli-tools", - "chalk@4.1.2", - "execa", - "fast-glob" - ] - }, - "@react-native-community/cli-config@14.1.0_typescript@5.4.5": { - "integrity": "sha512-P3FK2rPUJBD1fmQHLgTqpHxsc111pnMdEEFR7KeqprCNz+Qr2QpPxfNy0V7s15tGL5rAv+wpbOGcioIV50EbxA==", - "dependencies": [ - "@react-native-community/cli-tools", - "chalk@4.1.2", - "cosmiconfig@9.0.0_typescript@5.4.5", - "deepmerge", - "fast-glob", - "joi" - ] - }, - "@react-native-community/cli-debugger-ui@14.1.0": { - "integrity": "sha512-+YbeCL0wLcBcqDwraJFGsqzcXu9S+bwTVrfImne/4mT6itfe3Oa93yrOVJgNbstrt5pJHuwpU76ZXfXoiuncsg==", - "dependencies": [ - "serve-static" - ] - }, - "@react-native-community/cli-doctor@14.1.0_typescript@5.4.5": { - "integrity": "sha512-xIf0oQDRKt7lufUenRwcLYdINGc0x1FSXHaHjd7lQDGT5FJnCEYlIkYEDDgAl5tnVJSvM/IL2c6O+mffkNEPzQ==", - "dependencies": [ - "@react-native-community/cli-config", - "@react-native-community/cli-platform-android", - "@react-native-community/cli-platform-apple", - "@react-native-community/cli-platform-ios", - "@react-native-community/cli-tools", - "chalk@4.1.2", - "command-exists", - "deepmerge", - "envinfo", - "execa", - "node-stream-zip", - "ora", - "semver@7.6.3", - "strip-ansi@5.2.0", - "wcwidth", - "yaml" - ] - }, - "@react-native-community/cli-platform-android@14.1.0": { - "integrity": "sha512-4JnXkAV+ca8XdUhZ7xjgDhXAMwTVjQs8JqiwP7FTYVrayShXy2cBXm/C3HNDoe+oQOF5tPT2SqsDAF2vYTnKiQ==", - "dependencies": [ - "@react-native-community/cli-tools", - "chalk@4.1.2", - "execa", - "fast-glob", - "fast-xml-parser", - "logkitty" - ] - }, - "@react-native-community/cli-platform-apple@14.1.0": { - "integrity": "sha512-DExd+pZ7hHxXt8I6BBmckeYUxxq7PQ+o4YSmGIeQx0xUpi+f82obBct2WNC3VWU72Jw6obwfoN6Fwe6F7Wxp5Q==", - "dependencies": [ - "@react-native-community/cli-tools", - "chalk@4.1.2", - "execa", - "fast-glob", - "fast-xml-parser", - "ora" - ] - }, - "@react-native-community/cli-platform-ios@14.1.0": { - "integrity": "sha512-ah/ZTiJXUdCVHujyRJ4OmCL5nTq8OWcURcE3UXa1z0sIIiA8io06n+v5n299T9rtPKMwRtVJlQjtO/nbODABPQ==", - "dependencies": [ - "@react-native-community/cli-platform-apple" - ] - }, - "@react-native-community/cli-server-api@14.1.0": { - "integrity": "sha512-1k2LBQaYsy9RDWFIfKVne3frOye73O33MV6eYMoRPff7wqxHCrsX1CYJQkmwpgVigZHxYwalHj+Axtu3gpomCA==", - "dependencies": [ - "@react-native-community/cli-debugger-ui", - "@react-native-community/cli-tools", - "compression", - "connect", - "errorhandler", - "nocache", - "pretty-format@26.6.2", - "serve-static", - "ws@6.2.3" - ] - }, - "@react-native-community/cli-tools@14.1.0": { - "integrity": "sha512-r1KxSu2+OSuhWFoE//1UR7aSTXMLww/UYWQprEw4bSo/kvutGX//4r9ywgXSWp+39udpNN4jQpNTHuWhGZd/Bg==", - "dependencies": [ - "appdirsjs", - "chalk@4.1.2", - "execa", - "find-up@5.0.0", - "mime@2.6.0", - "open@6.4.0", - "ora", - "semver@7.6.3", - "shell-quote", - "sudo-prompt" - ] + "@react-native/assets-registry@0.76.1": { + "integrity": "sha512-1mcDjyvC4Z+XYtY+Abl6pW9P49l/9HJmRChX7EHF1SoXe7zPAPBoAqeZsJNtf8dhJR3u/eGvapr1yJq8T/psEg==" }, - "@react-native-community/cli-types@14.1.0": { - "integrity": "sha512-aJwZI9mGRx3HdP8U4CGhqjt3S4r8GmeOqv4kRagC1UHDk4QNMC+bZ8JgPA4W7FrGiPey+lJQHMDPAXOo51SOUw==", + "@react-native/babel-plugin-codegen@0.76.1_@babel+core@7.26.0": { + "integrity": "sha512-V9bGLyEdAF39nvn4L5gaJcPX1SvCHPJhaT3qfpVGvCnl7WPhdRyCq++WsN8HXlpo6WOAf6//oruLnLdl3RNM4Q==", "dependencies": [ - "joi" + "@react-native/codegen@0.76.1_@babel+preset-env@7.26.0_@babel+core@7.26.0_@babel+preset-env@7.26.0__@babel+core@7.26.0" ] }, - "@react-native-community/cli@14.1.0_typescript@5.4.5": { - "integrity": "sha512-k7aTdKNZIec7WMSqMJn9bDVLWPPOaYmshXcnjWy6t5ItsJnREju9p2azMTR5tXY5uIeynose3cxettbhk2Tbnw==", - "dependencies": [ - "@react-native-community/cli-clean", - "@react-native-community/cli-config", - "@react-native-community/cli-debugger-ui", - "@react-native-community/cli-doctor", - "@react-native-community/cli-server-api", - "@react-native-community/cli-tools", - "@react-native-community/cli-types", - "chalk@4.1.2", - "commander@9.5.0", - "deepmerge", - "execa", - "find-up@5.0.0", - "fs-extra", - "graceful-fs", - "prompts", - "semver@7.6.3" - ] - }, - "@react-native/assets-registry@0.75.4": { - "integrity": "sha512-WX6/LNHwyjislSFM+h3qQjBiPaXXPJW5ZV4TdgNKb6QOPO0g1KGYRQj44cI2xSpZ3fcWrvQFZfQgSMbVK9Sg7A==" - }, - "@react-native/babel-plugin-codegen@0.75.4_@babel+core@7.25.8": { - "integrity": "sha512-gu5ZRIdr7+ufi09DJROhfDtbF4biTnCDJqtqcmtsku4cXOXPHE36QbC/vAmKEZ0PMPURBI8lwF2wfaeHLn7gig==", - "dependencies": [ - "@react-native/codegen@0.75.4_@babel+preset-env@7.25.8_@babel+core@7.25.8_@babel+preset-env@7.25.8__@babel+core@7.25.8" - ] - }, - "@react-native/babel-preset@0.75.4_@babel+core@7.25.8": { - "integrity": "sha512-UtyYCDJ3rZIeggyFEfh/q5t/FZ5a1h9F8EI37Nbrwyk/OKPH+1XS4PbHROHJzBARlJwOAfmT75+ovYUO0eakJA==", + "@react-native/babel-preset@0.76.1_@babel+core@7.26.0": { + "integrity": "sha512-b6YRmA13CmVuTQKHRen/Q0glHwmZFZoEDs+MJ1NL0UNHq9V5ytvdwTW1ntkmjtXuTnPMzkwYvumJBN9UTZjkBA==", "dependencies": [ "@babel/core", "@babel/plugin-proposal-export-default-from", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-default-from", - "@babel/plugin-syntax-flow", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-transform-arrow-functions", @@ -2291,47 +2232,47 @@ "@babel/plugin-transform-unicode-regex", "@babel/template", "@react-native/babel-plugin-codegen", + "babel-plugin-syntax-hermes-parser", "babel-plugin-transform-flow-enums", "react-refresh" ] }, - "@react-native/codegen@0.75.4_@babel+preset-env@7.25.8": { - "integrity": "sha512-0FplNAD/S5FUvm8YIn6uyarOcP4jdJPqWz17K4a/Gp2KSsG/JJKEskX3aj5wpePzVfNQl3WyvBJ0whODdCocIA==", + "@react-native/codegen@0.76.1_@babel+preset-env@7.26.0": { + "integrity": "sha512-7lE0hk2qq27wVeK5eF654v7XsKoRa7ficrfSwIDEDZ1aLB2xgUzLrsq+glSAP9EuzT6ycHhtD3QyqI+TqnlS/A==", "dependencies": [ "@babel/parser", - "@babel/preset-env@7.25.8", + "@babel/preset-env@7.26.0", "glob@7.2.3", - "hermes-parser@0.22.0", + "hermes-parser@0.23.1", "invariant", - "jscodeshift@0.14.0_@babel+preset-env@7.25.8_@babel+core@7.25.8", + "jscodeshift@0.14.0_@babel+preset-env@7.26.0_@babel+core@7.26.0", "mkdirp@0.5.6", "nullthrows", "yargs@17.7.2" ] }, - "@react-native/codegen@0.75.4_@babel+preset-env@7.25.8_@babel+core@7.25.8_@babel+preset-env@7.25.8__@babel+core@7.25.8": { - "integrity": "sha512-0FplNAD/S5FUvm8YIn6uyarOcP4jdJPqWz17K4a/Gp2KSsG/JJKEskX3aj5wpePzVfNQl3WyvBJ0whODdCocIA==", + "@react-native/codegen@0.76.1_@babel+preset-env@7.26.0_@babel+core@7.26.0_@babel+preset-env@7.26.0__@babel+core@7.26.0": { + "integrity": "sha512-7lE0hk2qq27wVeK5eF654v7XsKoRa7ficrfSwIDEDZ1aLB2xgUzLrsq+glSAP9EuzT6ycHhtD3QyqI+TqnlS/A==", "dependencies": [ "@babel/parser", - "@babel/preset-env@7.25.8_@babel+core@7.25.8", + "@babel/preset-env@7.26.0_@babel+core@7.26.0", "glob@7.2.3", - "hermes-parser@0.22.0", + "hermes-parser@0.23.1", "invariant", - "jscodeshift@0.14.0_@babel+preset-env@7.25.8_@babel+core@7.25.8_@babel+preset-env@7.25.8__@babel+core@7.25.8", + "jscodeshift@0.14.0_@babel+preset-env@7.26.0_@babel+core@7.26.0_@babel+preset-env@7.26.0__@babel+core@7.26.0", "mkdirp@0.5.6", "nullthrows", "yargs@17.7.2" ] }, - "@react-native/community-cli-plugin@0.75.4": { - "integrity": "sha512-k/hevYPjEpW0MNVVyb3v9PJosOP+FzenS7+oqYNLXdEmgTnGHrAtYX9ABrJJgzeJt7I6g8g+RDvm8PSE+tnM5w==", + "@react-native/community-cli-plugin@0.76.1": { + "integrity": "sha512-dECc1LuleMQDX/WK2oJInrYCpHb3OFBJxYkhPOAXb9HiktMWRA9T93qqpTDshmtLdYqvxeO9AM5eeoSL412WnQ==", "dependencies": [ - "@react-native-community/cli-server-api", - "@react-native-community/cli-tools", "@react-native/dev-middleware", "@react-native/metro-babel-transformer", "chalk@4.1.2", "execa", + "invariant", "metro", "metro-config", "metro-core", @@ -2339,11 +2280,11 @@ "readline" ] }, - "@react-native/debugger-frontend@0.75.4": { - "integrity": "sha512-QfGurR5hV6bhMPn/6VxS2RomYrPRFGwA03jJr+zKyWHnxDAu5jOqYVyKAktIIbhYe5sPp78QVl1ZYuhcnsRbEw==" + "@react-native/debugger-frontend@0.76.1": { + "integrity": "sha512-0gExx7GR8o2ctGfjIZ9+x54iFbg0eP6+kMYzRA6AcgmFAmMGLADMmjtObCN0CqGeZyWtdVVqcv5mAwRwmMlNWA==" }, - "@react-native/dev-middleware@0.75.4": { - "integrity": "sha512-UhyBeQOG2wNcvrUGw3+IBrHBk/lIu7hHGmWt4j8W9Aqv9BwktHKkPyko+5A1yoUeO1O/VDnHWYqWeOejcA9wpQ==", + "@react-native/dev-middleware@0.76.1": { + "integrity": "sha512-htaFSN2dwI0CinsMxjRuvIVdSDN6d6TDPeOJczM1bdAYalZX1M58knTKs5LJDComW5tleOCAg5lS5tIeFlM9+Q==", "dependencies": [ "@isaacs/ttlcache", "@react-native/debugger-frontend", @@ -2351,34 +2292,33 @@ "chromium-edge-launcher", "connect", "debug@2.6.9", - "node-fetch@2.7.0", "nullthrows", - "open@7.4.2", + "open", "selfsigned", "serve-static", "ws@6.2.3" ] }, - "@react-native/gradle-plugin@0.75.4": { - "integrity": "sha512-kKTmw7cF7p1raT30DC0L6N+xiVXN7dlRy0J+hYPiCRRVHplwgvyS7pszjxfzwXmHFqOxwpxQVI3du8opsma1Mg==" + "@react-native/gradle-plugin@0.76.1": { + "integrity": "sha512-X7rNFltPa9QYxvYrQGaSCw7U57C+y+DwspXf4AnLZj0bQm9tL6UYpijh5vE3VmPcHn76/RNU2bpFjVvWg6gjqw==" }, - "@react-native/js-polyfills@0.75.4": { - "integrity": "sha512-NF5ID5FjcVHBYk1LQ4JMRjPmxBWEo4yoqW1m6vGOQZPT8D5Qs9afgx3f7gQatxbn3ivMh0FVbLW0zBx6LyxEzA==" + "@react-native/js-polyfills@0.76.1": { + "integrity": "sha512-HO3fzJ0FnrnQGmxdXxh2lcGGAMfaX9h1Pg1Zh38MkVw35/KnZHxHqxg6cruze6iWwZdfqSoIcQoalmMuAHby7Q==" }, - "@react-native/metro-babel-transformer@0.75.4_@babel+core@7.25.8": { - "integrity": "sha512-O0WMW/K8Ny/MAAeRebqGEQhrbzcioxcPHZtos+EH2hWeBTEKHQV8fMYYxfYDabpr392qdhSBwg3LlXUD4U3PXQ==", + "@react-native/metro-babel-transformer@0.76.1_@babel+core@7.26.0": { + "integrity": "sha512-LUAKqgsrioXS2a+pE0jak8sutTbLo3T34KWv7mdVUZ5lUACpqkIql1EFtIQlWjIcR4oZE480CkPbRHBI681tkQ==", "dependencies": [ "@babel/core", "@react-native/babel-preset", - "hermes-parser@0.22.0", + "hermes-parser@0.23.1", "nullthrows" ] }, - "@react-native/normalize-colors@0.75.4": { - "integrity": "sha512-90QrQDLg0/k9xqYesaKuIkayOSjD+FKa0hsHollbwT5h3kuGMY+lU7UZxnb8tU55Y1PKdvjYxqQsYWI/ql79zA==" + "@react-native/normalize-colors@0.76.1": { + "integrity": "sha512-/+CUk/wGWIdXbJYVLw/q6Fs8Z0x91zzfXIbNiZUdSW1TNEDmytkF371H8a1/Nx3nWa1RqCMVsaZHCG4zqxeDvg==" }, - "@react-native/virtualized-lists@0.75.4_react@18.3.1_react-native@0.75.4__react@18.3.1__typescript@5.4.5_typescript@5.4.5": { - "integrity": "sha512-iEauRiXjvWG/iOH8bV+9MfepCS+72cuL5rhkrenYZS0NUnDcNjF+wtaoS9+Gx5z1UJOfEXxSmyXRtQJZne8SnA==", + "@react-native/virtualized-lists@0.76.1_react@18.3.1_react-native@0.76.1__react@18.3.1": { + "integrity": "sha512-uWJfv0FC3zmlYORr0Sa17ngbAaw6K9yw4MAkBZyFeTM+W6AJRvTVyR1Mes/MU+vIyGFChnTcyaQrQz8jWqADOA==", "dependencies": [ "invariant", "nullthrows", @@ -2434,18 +2374,6 @@ "@rushstack/eslint-patch@1.10.4": { "integrity": "sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==" }, - "@sideway/address@4.1.5": { - "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", - "dependencies": [ - "@hapi/hoek" - ] - }, - "@sideway/formula@3.0.1": { - "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" - }, - "@sideway/pinpoint@2.0.0": { - "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" - }, "@sinclair/typebox@0.27.8": { "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" }, @@ -2461,8 +2389,8 @@ "@sinonjs/commons" ] }, - "@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.3_@solana+web3.js@1.95.3_react@18.3.1_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3_typescript@5.4.5": { - "integrity": "sha512-IEvPzp4m39sWTS3gybbVfk1WQ5Bx9TrGlthtRlVw1BJPvjbmT6lTcnndgXp7HmMkz5e6cc8fwJWp3EKx5upAug==", + "@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.4_@solana+web3.js@1.95.3_react@18.3.1_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3": { + "integrity": "sha512-eE0NfQ450TrjD20/gN9hDYLhm6ggYtA5Vrrp3kuzj2antC0t6UtCCHe3/ivHLU14ir6kPoQTsTJHQaKGIqcheQ==", "dependencies": [ "@solana-mobile/mobile-wallet-adapter-protocol", "@solana/web3.js", @@ -2470,8 +2398,8 @@ "js-base64" ] }, - "@solana-mobile/mobile-wallet-adapter-protocol@2.1.3_@solana+web3.js@1.95.3_react-native@0.75.4__react@18.3.1__typescript@5.4.5_react@18.3.1_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3_typescript@5.4.5": { - "integrity": "sha512-rj1/cSQVjPYdQjHsJDxmlpgRjI9jly/0Md3bEeqCan2sLXPf5F6+TiVlAg9+Hxg+uVWd1peUrepFUdOykbklSw==", + "@solana-mobile/mobile-wallet-adapter-protocol@2.1.4_@solana+web3.js@1.95.3_react-native@0.76.1__react@18.3.1_react@18.3.1_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3": { + "integrity": "sha512-o5C61cZbtvkuAyn5YxRxsl8jeTVpGO40xT7VjtgFSE9elxvLOZAlqxxrtxpqT4hiwFzQFDzjUGsp97cabij06A==", "dependencies": [ "@solana/wallet-standard", "@solana/wallet-standard-util", @@ -2481,15 +2409,16 @@ "react-native" ] }, - "@solana-mobile/wallet-adapter-mobile@2.1.3_@solana+web3.js@1.95.3_react@18.3.1_typescript@5.4.5_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3": { - "integrity": "sha512-V9gxV7/F1BLode6I+j134kFvQv1mnF0OlN+tYPHEmJOcH4caDfH6rlJy7t9Pktkl9ZEVTO9kT8K19Y4MRl6nxg==", + "@solana-mobile/wallet-adapter-mobile@2.1.4_@solana+web3.js@1.95.3_react@18.3.1_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3": { + "integrity": "sha512-uOG7Jqrjlcf52OyNfguv1CD29zQrUB5YbPhBOv6n/BcS0Zd9jHvcB0J9iMt5EZ6P8MYdJ898L6X1+4mnqFFixg==", "dependencies": [ "@react-native-async-storage/async-storage", "@solana-mobile/mobile-wallet-adapter-protocol-web3js", "@solana/wallet-adapter-base", "@solana/wallet-standard-features", "@solana/web3.js", - "js-base64" + "js-base64", + "qrcode" ] }, "@solana/buffer-layout-utils@0.2.0": { @@ -2504,17 +2433,17 @@ "@solana/buffer-layout@4.0.1": { "integrity": "sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==", "dependencies": [ - "buffer@6.0.3" + "buffer" ] }, - "@solana/codecs-core@2.0.0-rc.1_typescript@5.4.5": { + "@solana/codecs-core@2.0.0-rc.1_typescript@5.6.3": { "integrity": "sha512-bauxqMfSs8EHD0JKESaNmNuNvkvHSuN3bbWAF5RjOfDu2PugxHrvRebmYauvSumZ3cTfQ4HJJX6PG5rN852qyQ==", "dependencies": [ "@solana/errors", "typescript" ] }, - "@solana/codecs-data-structures@2.0.0-rc.1_typescript@5.4.5": { + "@solana/codecs-data-structures@2.0.0-rc.1_typescript@5.6.3": { "integrity": "sha512-rinCv0RrAVJ9rE/rmaibWJQxMwC5lSaORSZuwjopSUE6T0nb/MVg6Z1siNCXhh/HFTOg0l8bNvZHgBcN/yvXog==", "dependencies": [ "@solana/codecs-core", @@ -2523,7 +2452,7 @@ "typescript" ] }, - "@solana/codecs-numbers@2.0.0-rc.1_typescript@5.4.5": { + "@solana/codecs-numbers@2.0.0-rc.1_typescript@5.6.3": { "integrity": "sha512-J5i5mOkvukXn8E3Z7sGIPxsThRCgSdgTWJDQeZvucQ9PT6Y3HiVXJ0pcWiOWAoQ3RX8e/f4I3IC+wE6pZiJzDQ==", "dependencies": [ "@solana/codecs-core", @@ -2531,7 +2460,7 @@ "typescript" ] }, - "@solana/codecs-strings@2.0.0-rc.1_fastestsmallesttextencoderdecoder@1.0.22_typescript@5.4.5": { + "@solana/codecs-strings@2.0.0-rc.1_fastestsmallesttextencoderdecoder@1.0.22_typescript@5.6.3": { "integrity": "sha512-9/wPhw8TbGRTt6mHC4Zz1RqOnuPTqq1Nb4EyuvpZ39GW6O2t2Q7Q0XxiB3+BdoEjwA2XgPw6e2iRfvYgqty44g==", "dependencies": [ "@solana/codecs-core", @@ -2541,7 +2470,7 @@ "typescript" ] }, - "@solana/codecs@2.0.0-rc.1_typescript@5.4.5": { + "@solana/codecs@2.0.0-rc.1_typescript@5.6.3": { "integrity": "sha512-qxoR7VybNJixV51L0G1RD2boZTcxmwUWnKCaJJExQ5qNKwbpSyDdWfFJfM5JhGyKe9DnPVOZB+JHWXnpbZBqrQ==", "dependencies": [ "@solana/codecs-core", @@ -2552,7 +2481,7 @@ "typescript" ] }, - "@solana/errors@2.0.0-rc.1_typescript@5.4.5": { + "@solana/errors@2.0.0-rc.1_typescript@5.6.3": { "integrity": "sha512-ejNvQ2oJ7+bcFAYWj225lyRkHnixuAeb7RQCixm+5mH4n1IA4Qya/9Bmfy5RAAHQzxK43clu3kZmL5eF9VGtYQ==", "dependencies": [ "chalk@5.3.0", @@ -2560,7 +2489,7 @@ "typescript" ] }, - "@solana/options@2.0.0-rc.1_typescript@5.4.5": { + "@solana/options@2.0.0-rc.1_typescript@5.6.3": { "integrity": "sha512-mLUcR9mZ3qfHlmMnREdIFPf9dpMc/Bl66tLSOOWxw4ml5xMT2ohFn7WGqoKcu/UHkT9CrC6+amEdqCNvUqI7AA==", "dependencies": [ "@solana/codecs-core", @@ -2571,7 +2500,7 @@ "typescript" ] }, - "@solana/spl-stake-pool@1.1.0_@solana+web3.js@1.95.3_typescript@5.4.5": { + "@solana/spl-stake-pool@1.1.0_@solana+web3.js@1.95.3_typescript@5.6.3": { "integrity": "sha512-gFpjJ2kiGB4okPGCep8SS/FJQQ/1L0boOgnWWUKFnAWefsKHWmfyuNpYAjd9+j1tgb3GJmUK6D+8CSGC1FZLgg==", "dependencies": [ "@coral-xyz/borsh", @@ -2579,35 +2508,28 @@ "@solana/spl-token", "@solana/web3.js", "bn.js", - "buffer@6.0.3", + "buffer", "superstruct@1.0.4" ] }, - "@solana/spl-token-metadata@0.1.5_@solana+web3.js@1.95.3_typescript@5.4.5": { - "integrity": "sha512-DSBlo7vjuLe/xvNn75OKKndDBkFxlqjLdWlq6rf40StnrhRn7TDntHGLZpry1cf3uzQFShqeLROGNPAJwvkPnA==", + "@solana/spl-token-metadata@0.1.6_@solana+web3.js@1.95.3_typescript@5.6.3": { + "integrity": "sha512-7sMt1rsm/zQOQcUWllQX9mD2O6KhSAtY1hFR2hfFwgqfFWzSY9E9GDvFVNYUI1F0iQKcm6HmePU9QbKRXTEBiA==", "dependencies": [ "@solana/codecs", - "@solana/spl-type-length-value", "@solana/web3.js" ] }, - "@solana/spl-token@0.4.0_@solana+web3.js@1.95.3_typescript@5.4.5": { + "@solana/spl-token@0.4.0_@solana+web3.js@1.95.3_typescript@5.6.3": { "integrity": "sha512-jjBIBG9IsclqQVl5Y82npGE6utdCh7Z9VFcF5qgJa5EUq2XgspW3Dt1wujWjH/vQDRnkp9zGO+BqQU/HhX/3wg==", "dependencies": [ "@solana/buffer-layout", "@solana/buffer-layout-utils", "@solana/spl-token-metadata", "@solana/web3.js", - "buffer@6.0.3" - ] - }, - "@solana/spl-type-length-value@0.1.0": { - "integrity": "sha512-JBMGB0oR4lPttOZ5XiUGyvylwLQjt1CPJa6qQ5oM+MBCndfjz2TKKkw0eATlLLcYmq1jBVsNlJ2cD6ns2GR7lA==", - "dependencies": [ - "buffer@6.0.3" + "buffer" ] }, - "@solana/wallet-adapter-base-ui@0.1.2_@solana+web3.js@1.95.3_react@18.3.1_typescript@5.4.5": { + "@solana/wallet-adapter-base-ui@0.1.2_@solana+web3.js@1.95.3_react@18.3.1": { "integrity": "sha512-33l0WqY0mKKhcrNBbqS9anvT4MjzNnKewoF1VcdbI/uSlMOZtGy+9fr8ETVFI+ivr44QHpvbiZX9dmz2mTCGXw==", "dependencies": [ "@solana/wallet-adapter-react", @@ -2625,7 +2547,7 @@ "eventemitter3@4.0.7" ] }, - "@solana/wallet-adapter-react-ui@0.9.35_@solana+web3.js@1.95.3_react@18.3.1_react-dom@18.3.1__react@18.3.1_typescript@5.4.5": { + "@solana/wallet-adapter-react-ui@0.9.35_@solana+web3.js@1.95.3_react@18.3.1_react-dom@18.3.1__react@18.3.1": { "integrity": "sha512-SyHUavEAyzBL5zim5xAlYaqP5jF3bOtxi/02wgXzMpKXUYpG4EiXXY3DeGw5eUbcvvej45rQENtTHWEEH9fW+A==", "dependencies": [ "@solana/wallet-adapter-base", @@ -2636,7 +2558,7 @@ "react-dom@18.3.1_react@18.3.1" ] }, - "@solana/wallet-adapter-react@0.15.35_@solana+web3.js@1.95.3_react@18.3.1_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3_typescript@5.4.5": { + "@solana/wallet-adapter-react@0.15.35_@solana+web3.js@1.95.3_react@18.3.1_@solana+wallet-adapter-base@0.9.23__@solana+web3.js@1.95.3": { "integrity": "sha512-i4hc/gNLTYNLMEt2LS+4lrrc0QAwa5SU2PtYMnZ2A3rsoKF5m1bv1h6cjLj2KBry4/zRGEBoqkiMOC5zHkLnRQ==", "dependencies": [ "@solana-mobile/wallet-adapter-mobile", @@ -2726,7 +2648,7 @@ "bn.js", "borsh", "bs58@4.0.1", - "buffer@6.0.3", + "buffer", "fast-stable-stringify", "jayson", "node-fetch@2.7.0", @@ -2737,19 +2659,12 @@ "@swc/counter@0.1.3": { "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==" }, - "@swc/helpers@0.5.11": { - "integrity": "sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==", + "@swc/helpers@0.5.13": { + "integrity": "sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==", "dependencies": [ "tslib" ] }, - "@swc/helpers@0.5.5": { - "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==", - "dependencies": [ - "@swc/counter", - "tslib" - ] - }, "@tailwindcss/typography@0.5.14_tailwindcss@3.4.3__postcss@8.4.38": { "integrity": "sha512-ZvOCjUbsJBjL9CxQBn+VEnFpouzuKhxh2dH8xMIWHILL+HfOYtlAkWcyoon8LlzE53d2Yo6YO6pahKKNW3q1YQ==", "dependencies": [ @@ -2760,6 +2675,35 @@ "tailwindcss" ] }, + "@types/babel__core@7.20.5": { + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dependencies": [ + "@babel/parser", + "@babel/types", + "@types/babel__generator", + "@types/babel__template", + "@types/babel__traverse" + ] + }, + "@types/babel__generator@7.6.8": { + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dependencies": [ + "@babel/types" + ] + }, + "@types/babel__template@7.4.4": { + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dependencies": [ + "@babel/parser", + "@babel/types" + ] + }, + "@types/babel__traverse@7.20.6": { + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dependencies": [ + "@babel/types" + ] + }, "@types/connect@3.4.38": { "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dependencies": [ @@ -2781,6 +2725,12 @@ "@types/estree@1.0.6": { "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" }, + "@types/graceful-fs@4.1.9": { + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dependencies": [ + "@types/node@22.5.4" + ] + }, "@types/hast@2.3.10": { "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", "dependencies": [ @@ -2802,19 +2752,15 @@ "@types/istanbul-lib-coverage" ] }, - "@types/istanbul-reports@1.1.2": { - "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", - "dependencies": [ - "@types/istanbul-lib-coverage", - "@types/istanbul-lib-report" - ] - }, "@types/istanbul-reports@3.0.4": { "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dependencies": [ "@types/istanbul-lib-report" ] }, + "@types/json-schema@7.0.15": { + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, "@types/json5@0.0.29": { "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" }, @@ -2827,8 +2773,8 @@ "@types/lodash" ] }, - "@types/lodash@4.17.10": { - "integrity": "sha512-YpS0zzoduEhuOWjAotS6A5AVCva7X4lVlYLF0FYHAY9sdraBfnatttHItlWeZdGhuEkf+OzMNg2ZYAx8t+52uQ==" + "@types/lodash@4.17.13": { + "integrity": "sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==" }, "@types/mdast@3.0.15": { "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", @@ -2875,8 +2821,8 @@ "@types/react" ] }, - "@types/react@18.3.11": { - "integrity": "sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==", + "@types/react@18.3.12": { + "integrity": "sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==", "dependencies": [ "@types/prop-types", "csstype" @@ -2900,8 +2846,8 @@ "@types/node@22.5.4" ] }, - "@types/ws@8.5.12": { - "integrity": "sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==", + "@types/ws@8.5.13": { + "integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==", "dependencies": [ "@types/node@22.5.4" ] @@ -2909,26 +2855,30 @@ "@types/yargs-parser@21.0.3": { "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" }, - "@types/yargs@13.0.12": { - "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", - "dependencies": [ - "@types/yargs-parser" - ] - }, - "@types/yargs@15.0.19": { - "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "@types/yargs@17.0.33": { + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", "dependencies": [ "@types/yargs-parser" ] }, - "@types/yargs@17.0.33": { - "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "@typescript-eslint/eslint-plugin@8.13.0_@typescript-eslint+parser@8.13.0__eslint@9.14.0__typescript@5.6.3_eslint@9.14.0_typescript@5.6.3": { + "integrity": "sha512-nQtBLiZYMUPkclSeC3id+x4uVd1SGtHuElTxL++SfP47jR0zfkZBJHc+gL4qPsgTuypz0k8Y2GheaDYn6Gy3rg==", "dependencies": [ - "@types/yargs-parser" + "@eslint-community/regexpp", + "@typescript-eslint/parser", + "@typescript-eslint/scope-manager", + "@typescript-eslint/type-utils", + "@typescript-eslint/utils", + "@typescript-eslint/visitor-keys", + "eslint", + "graphemer", + "ignore", + "natural-compare", + "ts-api-utils" ] }, - "@typescript-eslint/parser@7.2.0_eslint@8.57.0_typescript@5.4.5": { - "integrity": "sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==", + "@typescript-eslint/parser@8.13.0_eslint@9.14.0_typescript@5.6.3": { + "integrity": "sha512-w0xp+xGg8u/nONcGw1UXAr6cjCPU1w0XVyBs6Zqaj5eLmxkKQAByTdV/uGgNN5tVvN/kKpoQlP2cL7R+ajZZIQ==", "dependencies": [ "@typescript-eslint/scope-manager", "@typescript-eslint/types", @@ -2938,65 +2888,92 @@ "eslint" ] }, - "@typescript-eslint/scope-manager@7.2.0": { - "integrity": "sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==", + "@typescript-eslint/scope-manager@8.13.0": { + "integrity": "sha512-XsGWww0odcUT0gJoBZ1DeulY1+jkaHUciUq4jKNv4cpInbvvrtDoyBH9rE/n2V29wQJPk8iCH1wipra9BhmiMA==", "dependencies": [ "@typescript-eslint/types", "@typescript-eslint/visitor-keys" ] }, - "@typescript-eslint/types@7.2.0": { - "integrity": "sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==" + "@typescript-eslint/type-utils@8.13.0_eslint@9.14.0_typescript@5.6.3": { + "integrity": "sha512-Rqnn6xXTR316fP4D2pohZenJnp+NwQ1mo7/JM+J1LWZENSLkJI8ID8QNtlvFeb0HnFSK94D6q0cnMX6SbE5/vA==", + "dependencies": [ + "@typescript-eslint/typescript-estree", + "@typescript-eslint/utils", + "debug@4.3.7", + "ts-api-utils" + ] + }, + "@typescript-eslint/types@8.13.0": { + "integrity": "sha512-4cyFErJetFLckcThRUFdReWJjVsPCqyBlJTi6IDEpc1GWCIIZRFxVppjWLIMcQhNGhdWJJRYFHpHoDWvMlDzng==" }, - "@typescript-eslint/typescript-estree@7.2.0_typescript@5.4.5": { - "integrity": "sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==", + "@typescript-eslint/typescript-estree@8.13.0_typescript@5.6.3": { + "integrity": "sha512-v7SCIGmVsRK2Cy/LTLGN22uea6SaUIlpBcO/gnMGT/7zPtxp90bphcGf4fyrCQl3ZtiBKqVTG32hb668oIYy1g==", "dependencies": [ "@typescript-eslint/types", "@typescript-eslint/visitor-keys", "debug@4.3.7", - "globby", + "fast-glob@3.3.2", "is-glob", - "minimatch@9.0.3", + "minimatch@9.0.5", "semver@7.6.3", "ts-api-utils" ] }, - "@typescript-eslint/visitor-keys@7.2.0": { - "integrity": "sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==", + "@typescript-eslint/utils@8.13.0_eslint@9.14.0_typescript@5.6.3": { + "integrity": "sha512-A1EeYOND6Uv250nybnLZapeXpYMl8tkzYUxqmoKAWnI4sei3ihf2XdZVd+vVOmHGcp3t+P7yRrNsyyiXTvShFQ==", + "dependencies": [ + "@eslint-community/eslint-utils", + "@typescript-eslint/scope-manager", + "@typescript-eslint/types", + "@typescript-eslint/typescript-estree", + "eslint" + ] + }, + "@typescript-eslint/visitor-keys@8.13.0": { + "integrity": "sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==", "dependencies": [ "@typescript-eslint/types", - "eslint-visitor-keys" + "eslint-visitor-keys@3.4.3" ] }, "@ungap/structured-clone@1.2.0": { "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" }, - "@wallet-standard/app@1.0.1": { - "integrity": "sha512-LnLYq2Vy2guTZ8GQKKSXQK3+FRGPil75XEdkZqE6fiLixJhZJoJa5hT7lXxwe0ykVTt9LEThdTbOpT7KadS26Q==", + "@wallet-standard/app@1.1.0": { + "integrity": "sha512-3CijvrO9utx598kjr45hTbbeeykQrQfKmSnxeWOgU25TOEpvcipD/bYDQWIqUv1Oc6KK4YStokSMu/FBNecGUQ==", "dependencies": [ "@wallet-standard/base" ] }, - "@wallet-standard/base@1.0.1": { - "integrity": "sha512-1To3ekMfzhYxe0Yhkpri+Fedq0SYcfrOfJi3vbLjMwF2qiKPjTGLwZkf2C9ftdQmxES+hmxhBzTwF4KgcOwf8w==" + "@wallet-standard/base@1.1.0": { + "integrity": "sha512-DJDQhjKmSNVLKWItoKThJS+CsJQjR9AOBOirBVT1F9YpRyC9oYHE+ZnSf8y8bxUphtKqdQMPVQ2mHohYdRvDVQ==" }, - "@wallet-standard/core@1.0.3": { - "integrity": "sha512-Jb33IIjC1wM1HoKkYD7xQ6d6PZ8EmMZvyc8R7dFgX66n/xkvksVTW04g9yLvQXrLFbcIjHrCxW6TXMhvpsAAzg==", + "@wallet-standard/core@1.1.0": { + "integrity": "sha512-v2W5q/NlX1qkn2q/JOXQT//pOAdrhz7+nOcO2uiH9+a0uvreL+sdWWqkhFmMcX+HEBjaibdOQMUoIfDhOGX4XA==", "dependencies": [ "@wallet-standard/app", "@wallet-standard/base", + "@wallet-standard/errors", "@wallet-standard/features", "@wallet-standard/wallet" ] }, - "@wallet-standard/features@1.0.3": { - "integrity": "sha512-m8475I6W5LTatTZuUz5JJNK42wFRgkJTB0I9tkruMwfqBF2UN2eomkYNVf9RbrsROelCRzSFmugqjKZBFaubsA==", + "@wallet-standard/errors@0.1.0": { + "integrity": "sha512-ag0eq5ixy7rz8M5YUWGi/EoIJ69KJ+KILFNunoufgmXVkiISC7+NIZXJYTJrapni4f9twE1hfT+8+IV2CYCvmg==", + "dependencies": [ + "chalk@5.3.0", + "commander@12.1.0" + ] + }, + "@wallet-standard/features@1.1.0": { + "integrity": "sha512-hiEivWNztx73s+7iLxsuD1sOJ28xtRix58W7Xnz4XzzA/pF0+aicnWgjOdA10doVDEDZdUuZCIIqG96SFNlDUg==", "dependencies": [ "@wallet-standard/base" ] }, - "@wallet-standard/wallet@1.0.1": { - "integrity": "sha512-qkhJeuQU2afQTZ02yMZE5SFc91Fo3hyFjFkpQglHudENNyiSG0oUKcIjky8X32xVSaumgTZSQUAzpXnCTWHzKQ==", + "@wallet-standard/wallet@1.1.0": { + "integrity": "sha512-Gt8TnSlDZpAl+RWOOAB/kuvC7RpcdWAlFbHNoi4gsXsfaWa1QCT6LBcfIYTPdOZC9OVZUDwqGuGAcqZejDmHjg==", "dependencies": [ "@wallet-standard/base" ] @@ -3018,10 +2995,10 @@ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dependencies": [ "mime-types", - "negotiator" + "negotiator@0.6.3" ] }, - "acorn-jsx@5.3.2_acorn@8.12.1": { + "acorn-jsx@5.3.2_acorn@8.14.0": { "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dependencies": [ "acorn" @@ -3033,8 +3010,8 @@ "acorn" ] }, - "acorn@8.12.1": { - "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==" + "acorn@8.14.0": { + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==" }, "agentkeepalive@4.5.0": { "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", @@ -3054,33 +3031,16 @@ "anser@1.4.10": { "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==" }, - "ansi-fragments@0.2.1": { - "integrity": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==", - "dependencies": [ - "colorette", - "slice-ansi", - "strip-ansi@5.2.0" - ] - }, - "ansi-regex@4.1.1": { - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" - }, "ansi-regex@5.0.1": { "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" }, "ansi-regex@6.1.0": { "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" }, - "ansi-styles@3.2.1": { - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": [ - "color-convert@1.9.3" - ] - }, "ansi-styles@4.3.0": { "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": [ - "color-convert@2.0.1" + "color-convert" ] }, "ansi-styles@5.2.0": { @@ -3099,9 +3059,6 @@ "picomatch" ] }, - "appdirsjs@1.2.7": { - "integrity": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==" - }, "arg@5.0.2": { "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" }, @@ -3120,11 +3077,8 @@ "tslib" ] }, - "aria-query@5.1.3": { - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dependencies": [ - "deep-equal" - ] + "aria-query@5.3.2": { + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==" }, "array-buffer-byte-length@1.0.1": { "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", @@ -3144,9 +3098,6 @@ "is-string" ] }, - "array-union@2.1.0": { - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - }, "array.prototype.findlast@1.2.5": { "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", "dependencies": [ @@ -3228,9 +3179,6 @@ "tslib" ] }, - "astral-regex@1.0.0": { - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" - }, "async-limiter@1.0.1": { "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" }, @@ -3252,19 +3200,51 @@ "possible-typed-array-names" ] }, - "axe-core@4.10.0": { - "integrity": "sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==" + "axe-core@4.10.2": { + "integrity": "sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==" }, "axobject-query@4.1.0": { "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==" }, - "babel-core@7.0.0-bridge.0_@babel+core@7.25.8": { + "babel-core@7.0.0-bridge.0_@babel+core@7.26.0": { "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", "dependencies": [ "@babel/core" ] }, - "babel-plugin-polyfill-corejs2@0.4.11_@babel+core@7.25.8": { + "babel-jest@29.7.0_@babel+core@7.26.0": { + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dependencies": [ + "@babel/core", + "@jest/transform", + "@types/babel__core", + "babel-plugin-istanbul", + "babel-preset-jest", + "chalk@4.1.2", + "graceful-fs", + "slash" + ] + }, + "babel-plugin-istanbul@6.1.1": { + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": [ + "@babel/helper-plugin-utils", + "@istanbuljs/load-nyc-config", + "@istanbuljs/schema", + "istanbul-lib-instrument", + "test-exclude" + ] + }, + "babel-plugin-jest-hoist@29.6.3": { + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dependencies": [ + "@babel/template", + "@babel/types", + "@types/babel__core", + "@types/babel__traverse" + ] + }, + "babel-plugin-polyfill-corejs2@0.4.11_@babel+core@7.26.0": { "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", "dependencies": [ "@babel/compat-data", @@ -3273,7 +3253,7 @@ "semver@6.3.1" ] }, - "babel-plugin-polyfill-corejs3@0.10.6_@babel+core@7.25.8": { + "babel-plugin-polyfill-corejs3@0.10.6_@babel+core@7.26.0": { "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", "dependencies": [ "@babel/core", @@ -3281,31 +3261,60 @@ "core-js-compat" ] }, - "babel-plugin-polyfill-regenerator@0.6.2_@babel+core@7.25.8": { + "babel-plugin-polyfill-regenerator@0.6.2_@babel+core@7.26.0": { "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dependencies": [ "@babel/core", "@babel/helper-define-polyfill-provider" ] }, - "babel-plugin-react-compiler@0.0.0-experimental-487cb0e-20240529_zod@3.23.8": { - "integrity": "sha512-77FYmA+oiCQnq5fK0jvoR0b78oKkgXrECc8n9U+gyWh+8P0zFJSX0wyI16Z456m/lrcANE56VWbr6+VxzoMBJg==", + "babel-plugin-react-compiler@19.0.0-beta-63b359f-20241101": { + "integrity": "sha512-qrmTHJP3O2kGbtL7kuySX3Lmk+5/4ZR1rHr8QhKa0GzKbmpAUGrTeWOg0NCI5t+QUfKKizxIO1+t0HsZW9x4vQ==", "dependencies": [ - "@babel/generator@7.2.0", - "@babel/types", - "chalk@4.1.2", - "invariant", - "pretty-format@24.9.0", - "zod", - "zod-validation-error" + "@babel/types" ] }, - "babel-plugin-transform-flow-enums@0.0.2_@babel+core@7.25.8": { + "babel-plugin-syntax-hermes-parser@0.23.1": { + "integrity": "sha512-uNLD0tk2tLUjGFdmCk+u/3FEw2o+BAwW4g+z2QVlxJrzZYOOPADroEcNtTPt5lNiScctaUmnsTkVEnOwZUOLhA==", + "dependencies": [ + "hermes-parser@0.23.1" + ] + }, + "babel-plugin-transform-flow-enums@0.0.2_@babel+core@7.26.0": { "integrity": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==", "dependencies": [ "@babel/plugin-syntax-flow" ] }, + "babel-preset-current-node-syntax@1.1.0_@babel+core@7.26.0": { + "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", + "dependencies": [ + "@babel/core", + "@babel/plugin-syntax-async-generators", + "@babel/plugin-syntax-bigint", + "@babel/plugin-syntax-class-properties", + "@babel/plugin-syntax-class-static-block", + "@babel/plugin-syntax-import-attributes", + "@babel/plugin-syntax-import-meta", + "@babel/plugin-syntax-json-strings", + "@babel/plugin-syntax-logical-assignment-operators", + "@babel/plugin-syntax-nullish-coalescing-operator", + "@babel/plugin-syntax-numeric-separator", + "@babel/plugin-syntax-object-rest-spread", + "@babel/plugin-syntax-optional-catch-binding", + "@babel/plugin-syntax-optional-chaining", + "@babel/plugin-syntax-private-property-in-object", + "@babel/plugin-syntax-top-level-await" + ] + }, + "babel-preset-jest@29.6.3_@babel+core@7.26.0": { + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dependencies": [ + "@babel/core", + "babel-plugin-jest-hoist", + "babel-preset-current-node-syntax" + ] + }, "bail@2.0.2": { "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==" }, @@ -3342,14 +3351,6 @@ "file-uri-to-path" ] }, - "bl@4.1.0": { - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dependencies": [ - "buffer@5.7.1", - "inherits", - "readable-stream@3.6.2" - ] - }, "blake3-wasm@2.1.5": { "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==" }, @@ -3383,8 +3384,8 @@ "fill-range" ] }, - "browserslist@4.24.0": { - "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", + "browserslist@4.24.2": { + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dependencies": [ "caniuse-lite", "electron-to-chromium", @@ -3416,13 +3417,6 @@ "buffer-layout@1.2.2": { "integrity": "sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA==" }, - "buffer@5.7.1": { - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dependencies": [ - "base64-js", - "ieee754" - ] - }, "buffer@6.0.3": { "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "dependencies": [ @@ -3442,9 +3436,6 @@ "streamsearch" ] }, - "bytes@3.0.0": { - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "call-bind@1.0.7": { "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dependencies": [ @@ -3482,8 +3473,8 @@ "camelcase@6.3.0": { "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" }, - "caniuse-lite@1.0.30001668": { - "integrity": "sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==" + "caniuse-lite@1.0.30001680": { + "integrity": "sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==" }, "capnp-ts@0.7.0": { "integrity": "sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==", @@ -3495,14 +3486,6 @@ "ccount@2.0.1": { "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==" }, - "chalk@2.4.2": { - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": [ - "ansi-styles@3.2.1", - "escape-string-regexp@1.0.5", - "supports-color@5.5.0" - ] - }, "chalk@4.1.2": { "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": [ @@ -3552,7 +3535,7 @@ "dependencies": [ "@types/node@22.5.4", "escape-string-regexp@4.0.0", - "is-wsl@2.2.0", + "is-wsl", "lighthouse-logger" ] }, @@ -3561,7 +3544,7 @@ "dependencies": [ "@types/node@22.5.4", "escape-string-regexp@4.0.0", - "is-wsl@2.2.0", + "is-wsl", "lighthouse-logger", "mkdirp@1.0.4", "rimraf@3.0.2" @@ -3579,15 +3562,6 @@ "clsx@2.0.0" ] }, - "cli-cursor@3.1.0": { - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dependencies": [ - "restore-cursor" - ] - }, - "cli-spinners@2.9.2": { - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" - }, "client-only@0.0.1": { "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" }, @@ -3615,59 +3589,41 @@ "shallow-clone" ] }, - "clone@1.0.4": { - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - }, "clsx@2.0.0": { "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==" }, "clsx@2.1.1": { "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" }, - "color-convert@1.9.3": { - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": [ - "color-name@1.1.3" - ] - }, "color-convert@2.0.1": { "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": [ - "color-name@1.1.4" + "color-name" ] }, - "color-name@1.1.3": { - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, "color-name@1.1.4": { "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "color-string@1.9.1": { "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", "dependencies": [ - "color-name@1.1.4", + "color-name", "simple-swizzle" ] }, "color@4.2.3": { "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", "dependencies": [ - "color-convert@2.0.1", + "color-convert", "color-string" ] }, - "colorette@1.4.0": { - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" - }, "comma-separated-tokens@1.0.8": { "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==" }, "comma-separated-tokens@2.0.3": { "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==" }, - "command-exists@1.2.9": { - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "commander@12.1.0": { "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==" }, @@ -3680,30 +3636,9 @@ "commander@8.3.0": { "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" }, - "commander@9.5.0": { - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==" - }, "commondir@1.0.1": { "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" }, - "compressible@2.0.18": { - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dependencies": [ - "mime-db" - ] - }, - "compression@1.7.4": { - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dependencies": [ - "accepts", - "bytes", - "compressible", - "debug@2.6.9", - "on-headers", - "safe-buffer@5.1.2", - "vary" - ] - }, "concat-map@0.0.1": { "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, @@ -3722,8 +3657,8 @@ "cookie@0.7.2": { "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==" }, - "core-js-compat@3.38.1": { - "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", + "core-js-compat@3.39.0": { + "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", "dependencies": [ "browserslist" ] @@ -3737,21 +3672,11 @@ "import-fresh@2.0.0", "is-directory", "js-yaml@3.14.1", - "parse-json@4.0.0" + "parse-json" ] }, - "cosmiconfig@9.0.0_typescript@5.4.5": { - "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", - "dependencies": [ - "env-paths", - "import-fresh@3.3.0", - "js-yaml@4.1.0", - "parse-json@5.2.0", - "typescript" - ] - }, - "cross-spawn@7.0.3": { - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "cross-spawn@7.0.5": { + "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==", "dependencies": [ "path-key", "shebang-command", @@ -3800,9 +3725,6 @@ "date-fns@4.1.0": { "integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==" }, - "dayjs@1.11.13": { - "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==" - }, "debug@2.6.9": { "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": [ @@ -3818,53 +3740,21 @@ "debug@4.3.7": { "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dependencies": [ - "ms@2.1.3" - ] - }, - "decamelize@1.2.0": { - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" - }, - "decode-named-character-reference@1.0.2": { - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", - "dependencies": [ - "character-entities@2.0.2" - ] - }, - "deep-equal@2.2.3": { - "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", - "dependencies": [ - "array-buffer-byte-length", - "call-bind", - "es-get-iterator", - "get-intrinsic", - "is-arguments", - "is-array-buffer", - "is-date-object", - "is-regex", - "is-shared-array-buffer", - "isarray@2.0.5", - "object-is", - "object-keys", - "object.assign", - "regexp.prototype.flags", - "side-channel", - "which-boxed-primitive", - "which-collection", - "which-typed-array" - ] - }, - "deep-is@0.1.4": { - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + "ms@2.1.3" + ] }, - "deepmerge@4.3.1": { - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + "decamelize@1.2.0": { + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" }, - "defaults@1.0.4": { - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "decode-named-character-reference@1.0.2": { + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", "dependencies": [ - "clone" + "character-entities@2.0.2" ] }, + "deep-is@0.1.4": { + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, "define-data-property@1.1.4": { "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dependencies": [ @@ -3881,6 +3771,9 @@ "object-keys" ] }, + "defu@6.1.4": { + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" + }, "delay@5.0.0": { "integrity": "sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==" }, @@ -3911,11 +3804,8 @@ "didyoumean@1.2.2": { "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" }, - "dir-glob@3.0.1": { - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dependencies": [ - "path-type" - ] + "dijkstrajs@1.0.3": { + "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==" }, "dlv@1.1.3": { "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" @@ -3926,20 +3816,14 @@ "esutils" ] }, - "doctrine@3.0.0": { - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dependencies": [ - "esutils" - ] - }, "eastasianwidth@0.2.0": { "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" }, "ee-first@1.1.1": { "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, - "electron-to-chromium@1.5.36": { - "integrity": "sha512-HYTX8tKge/VNp6FGO+f/uVDmUkq+cEfcxYhKf15Akc4M5yxt5YmorwlAitKWjWhWQnKcDRBAQKXkhqqXMqcrjw==" + "electron-to-chromium@1.5.55": { + "integrity": "sha512-6maZ2ASDOTBtjt9FhqYPRnbvKU5tjG0IN9SztUOWYw2AzNDNpKJYLJmlK0/En4Hs/aiWnB+JZ+gW19PIGszgKg==" }, "embla-carousel-autoplay@8.3.0_embla-carousel@8.3.0": { "integrity": "sha512-h7DFJLf9uQD+XDxr1NwA3/oFIjsnj/iED2RjET5u6/svMec46IbF1CYPhmB5Q/1Fc0WkcvhPpsEsrtVXQLxNzA==", @@ -3983,12 +3867,6 @@ "tapable" ] }, - "env-paths@2.2.1": { - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - }, - "envinfo@7.14.0": { - "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==" - }, "error-ex@1.3.2": { "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dependencies": [ @@ -4001,13 +3879,6 @@ "stackframe" ] }, - "errorhandler@1.5.1": { - "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", - "dependencies": [ - "accepts", - "escape-html" - ] - }, "es-abstract@1.23.3": { "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", "dependencies": [ @@ -4068,22 +3939,8 @@ "es-errors@1.3.0": { "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" }, - "es-get-iterator@1.1.3": { - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "dependencies": [ - "call-bind", - "get-intrinsic", - "has-symbols", - "is-arguments", - "is-map", - "is-set", - "is-string", - "isarray@2.0.5", - "stop-iteration-iterator" - ] - }, - "es-iterator-helpers@1.1.0": { - "integrity": "sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==", + "es-iterator-helpers@1.2.0": { + "integrity": "sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==", "dependencies": [ "call-bind", "define-properties", @@ -4093,6 +3950,7 @@ "function-bind", "get-intrinsic", "globalthis", + "gopd", "has-property-descriptors", "has-proto", "has-symbols", @@ -4171,9 +4029,6 @@ "escape-html@1.0.3": { "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, - "escape-string-regexp@1.0.5": { - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - }, "escape-string-regexp@2.0.0": { "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" }, @@ -4183,11 +4038,12 @@ "escape-string-regexp@5.0.0": { "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" }, - "eslint-config-next@14.2.3_eslint@8.57.0_typescript@5.4.5_eslint-plugin-import@2.31.0__eslint@8.57.0": { - "integrity": "sha512-ZkNztm3Q7hjqvB1rRlOX8P9E/cXRL9ajRcs8jufEtwMfTVYRqnmtnaSu57QqHyBlovMuiB8LEzfLBkh5RYV6Fg==", + "eslint-config-next@15.0.3_eslint@9.14.0_typescript@5.6.3_@typescript-eslint+parser@8.13.0__eslint@9.14.0__typescript@5.6.3_eslint-plugin-import@2.31.0__eslint@9.14.0": { + "integrity": "sha512-IGP2DdQQrgjcr4mwFPve4DrCqo7CVVez1WoYY47XwKSrYO4hC0Dlb+iJA60i0YfICOzgNADIb8r28BpQ5Zs0wg==", "dependencies": [ "@next/eslint-plugin-next", "@rushstack/eslint-patch", + "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-import-resolver-node", @@ -4199,7 +4055,7 @@ "typescript" ] }, - "eslint-config-prettier@9.1.0_eslint@8.57.0": { + "eslint-config-prettier@9.1.0_eslint@9.14.0": { "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", "dependencies": [ "eslint" @@ -4213,7 +4069,7 @@ "resolve@1.22.8" ] }, - "eslint-import-resolver-typescript@3.6.3_eslint@8.57.0_eslint-plugin-import@2.31.0__eslint@8.57.0": { + "eslint-import-resolver-typescript@3.6.3_eslint@9.14.0_eslint-plugin-import@2.31.0__eslint@9.14.0": { "integrity": "sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==", "dependencies": [ "@nolyfill/is-core-module", @@ -4222,7 +4078,7 @@ "eslint", "eslint-module-utils", "eslint-plugin-import", - "fast-glob", + "fast-glob@3.3.2", "get-tsconfig", "is-bun-module", "is-glob" @@ -4234,7 +4090,7 @@ "debug@3.2.7" ] }, - "eslint-plugin-import@2.31.0_eslint@8.57.0": { + "eslint-plugin-import@2.31.0_eslint@9.14.0": { "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", "dependencies": [ "@rtsao/scc", @@ -4243,7 +4099,7 @@ "array.prototype.flat", "array.prototype.flatmap", "debug@3.2.7", - "doctrine@2.1.0", + "doctrine", "eslint", "eslint-import-resolver-node", "eslint-module-utils", @@ -4259,8 +4115,8 @@ "tsconfig-paths" ] }, - "eslint-plugin-jsx-a11y@6.10.0_eslint@8.57.0": { - "integrity": "sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==", + "eslint-plugin-jsx-a11y@6.10.2_eslint@9.14.0": { + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", "dependencies": [ "aria-query", "array-includes", @@ -4270,7 +4126,6 @@ "axobject-query", "damerau-levenshtein", "emoji-regex@9.2.2", - "es-iterator-helpers", "eslint", "hasown", "jsx-ast-utils", @@ -4281,20 +4136,20 @@ "string.prototype.includes" ] }, - "eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705_eslint@8.57.0": { - "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==", + "eslint-plugin-react-hooks@5.0.0_eslint@9.14.0": { + "integrity": "sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==", "dependencies": [ "eslint" ] }, - "eslint-plugin-react@7.37.1_eslint@8.57.0": { - "integrity": "sha512-xwTnwDqzbDRA8uJ7BMxPs/EXRB3i8ZfnOIp8BsxEQkT0nHPp+WWceqGgo6rKb9ctNi8GJLDT4Go5HAWELa/WMg==", + "eslint-plugin-react@7.37.2_eslint@9.14.0": { + "integrity": "sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==", "dependencies": [ "array-includes", "array.prototype.findlast", "array.prototype.flatmap", "array.prototype.tosorted", - "doctrine@2.1.0", + "doctrine", "es-iterator-helpers", "eslint", "estraverse", @@ -4311,8 +4166,8 @@ "string.prototype.repeat" ] }, - "eslint-scope@7.2.2": { - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "eslint-scope@8.2.0": { + "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", "dependencies": [ "esrecurse", "estraverse" @@ -4321,25 +4176,31 @@ "eslint-visitor-keys@3.4.3": { "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" }, - "eslint@8.57.0": { - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "eslint-visitor-keys@4.2.0": { + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==" + }, + "eslint@9.14.0": { + "integrity": "sha512-c2FHsVBr87lnUtjP4Yhvk4yEhKrQavGafRA/Se1ouse8PfbfC/Qh9Mxa00yWsZRlqeUB9raXip0aiiUZkgnr9g==", "dependencies": [ "@eslint-community/eslint-utils", "@eslint-community/regexpp", + "@eslint/config-array", + "@eslint/core", "@eslint/eslintrc", "@eslint/js", - "@humanwhocodes/config-array", + "@eslint/plugin-kit", + "@humanfs/node", "@humanwhocodes/module-importer", - "@nodelib/fs.walk", - "@ungap/structured-clone", + "@humanwhocodes/retry@0.4.1", + "@types/estree", + "@types/json-schema", "ajv", "chalk@4.1.2", "cross-spawn", "debug@4.3.7", - "doctrine@3.0.0", "escape-string-regexp@4.0.0", "eslint-scope", - "eslint-visitor-keys", + "eslint-visitor-keys@4.2.0", "espree", "esquery", "esutils", @@ -4347,29 +4208,23 @@ "file-entry-cache", "find-up@5.0.0", "glob-parent@6.0.2", - "globals@13.24.0", - "graphemer", "ignore", "imurmurhash", "is-glob", - "is-path-inside", - "js-yaml@4.1.0", "json-stable-stringify-without-jsonify", - "levn", "lodash.merge", "minimatch@3.1.2", "natural-compare", "optionator", - "strip-ansi@6.0.1", "text-table" ] }, - "espree@9.6.1_acorn@8.12.1": { - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "espree@10.3.0_acorn@8.14.0": { + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", "dependencies": [ "acorn", "acorn-jsx", - "eslint-visitor-keys" + "eslint-visitor-keys@4.2.0" ] }, "esprima@4.0.1": { @@ -4446,6 +4301,16 @@ "fast-deep-equal@3.1.3": { "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, + "fast-glob@3.3.1": { + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dependencies": [ + "@nodelib/fs.stat", + "@nodelib/fs.walk", + "glob-parent@5.1.2", + "merge2", + "micromatch" + ] + }, "fast-glob@3.3.2": { "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dependencies": [ @@ -4465,12 +4330,6 @@ "fast-stable-stringify@1.0.0": { "integrity": "sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==" }, - "fast-xml-parser@4.5.0": { - "integrity": "sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==", - "dependencies": [ - "strnum" - ] - }, "fastestsmallesttextencoderdecoder@1.0.22": { "integrity": "sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==" }, @@ -4498,8 +4357,8 @@ "node-fetch@2.6.13" ] }, - "file-entry-cache@6.0.1": { - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "file-entry-cache@8.0.0": { + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dependencies": [ "flat-cache" ] @@ -4553,12 +4412,11 @@ "path-exists@4.0.0" ] }, - "flat-cache@3.2.0": { - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "flat-cache@4.0.1": { + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dependencies": [ "flatted", - "keyv", - "rimraf@3.0.2" + "keyv" ] }, "flatted@3.3.1": { @@ -4567,8 +4425,8 @@ "flow-enums-runtime@0.0.6": { "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==" }, - "flow-parser@0.248.1": { - "integrity": "sha512-fkCfVPelbTzSVp+jVwSvEyc+I4WG8MNhRG/EWSZZTlgHAMEdhXJaFEbfErXxMktboMhVGchvEFhWxkzNGM1m2A==" + "flow-parser@0.252.0": { + "integrity": "sha512-z8hKPUjZ33VLn4HVntifqmEhmolUMopysnMNzazoDqo1GLUkBsreLNsxETlKJMPotUWStQnen6SGvUNe1j4Hlg==" }, "for-each@0.3.3": { "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", @@ -4592,14 +4450,6 @@ "fresh@0.5.2": { "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" }, - "fs-extra@8.1.0": { - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dependencies": [ - "graceful-fs", - "jsonfile", - "universalify" - ] - }, "fs.realpath@1.0.0": { "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" }, @@ -4640,6 +4490,9 @@ "get-nonce@1.0.1": { "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==" }, + "get-package-type@0.1.0": { + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + }, "get-source@2.0.12": { "integrity": "sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==", "dependencies": [ @@ -4685,21 +4538,11 @@ "glob-to-regexp@0.4.1": { "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" }, - "glob@10.3.10": { - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dependencies": [ - "foreground-child", - "jackspeak@2.3.6", - "minimatch@9.0.5", - "minipass", - "path-scurry" - ] - }, "glob@10.4.3": { "integrity": "sha512-Q38SGlYRpVtDBPSWEylRyctn7uDeTp4NQERTLiCT1FqA9JXPYWqAVmQU6qh4r/zMM5ehxTcbaO8EjhWnvEhmyg==", "dependencies": [ "foreground-child", - "jackspeak@3.4.3", + "jackspeak", "minimatch@9.0.5", "minipass", "package-json-from-dist", @@ -4720,11 +4563,8 @@ "globals@11.12.0": { "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" }, - "globals@13.24.0": { - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dependencies": [ - "type-fest@0.20.2" - ] + "globals@14.0.0": { + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==" }, "globalthis@1.0.4": { "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", @@ -4733,17 +4573,6 @@ "gopd" ] }, - "globby@11.1.0": { - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dependencies": [ - "array-union", - "dir-glob", - "fast-glob", - "ignore", - "merge2", - "slash" - ] - }, "gopd@1.0.1": { "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dependencies": [ @@ -4768,9 +4597,6 @@ "has-bigints@1.0.2": { "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" }, - "has-flag@3.0.0": { - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, "has-flag@4.0.0": { "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, @@ -4801,8 +4627,8 @@ "hast-util-parse-selector@2.2.5": { "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" }, - "hast-util-to-jsx-runtime@2.3.1": { - "integrity": "sha512-Rbemi1rzrkysSin0FDHZfsxYPoqLGHFfxFm28aOBHPibT7aqjy7kUgY636se9xbuCWUsFpWAYlmtGHQakiqtEA==", + "hast-util-to-jsx-runtime@2.3.2": { + "integrity": "sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==", "dependencies": [ "@types/estree", "@types/hast@3.0.4", @@ -4837,17 +4663,11 @@ "space-separated-tokens@1.1.5" ] }, - "hermes-estree@0.22.0": { - "integrity": "sha512-FLBt5X9OfA8BERUdc6aZS36Xz3rRuB0Y/mfocSADWEJfomc1xfene33GdyAmtTkKTBXTN/EgAy+rjTKkkZJHlw==" - }, "hermes-estree@0.23.1": { "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==" }, - "hermes-parser@0.22.0": { - "integrity": "sha512-gn5RfZiEXCsIWsFGsKiykekktUoh0PdFWYocXsUdZIyWSckT6UIyPcyyUIPSR3kpnELWeK3n3ztAse7Mat6PSA==", - "dependencies": [ - "hermes-estree@0.22.0" - ] + "hermes-estree@0.24.0": { + "integrity": "sha512-LyoXLB7IFzeZW0EvAbGZacbxBN7t6KKSDqFJPo3Ydow7wDlrDjXwsdiAHV6XOdvEN9MEuWXsSIFN4tzpyrXIHw==" }, "hermes-parser@0.23.1": { "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", @@ -4855,9 +4675,18 @@ "hermes-estree@0.23.1" ] }, + "hermes-parser@0.24.0": { + "integrity": "sha512-IJooSvvu2qNRe7oo9Rb04sUT4omtZqZqf9uq9WM25Tb6v3usmvA93UqfnnoWs5V0uYjEl9Al6MNU10MCGKLwpg==", + "dependencies": [ + "hermes-estree@0.24.0" + ] + }, "highlight.js@10.7.3": { "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==" }, + "highlightjs-vue@1.0.0": { + "integrity": "sha512-PDEfEF102G23vHmPhLyPboFCD+BkMGu+GuJe2d9/eH4FsCwvgBpnc9n0pGE+ffKdph38s6foEZiEjdgHdzp+IA==" + }, "html-url-attributes@3.0.1": { "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==" }, @@ -4930,8 +4759,8 @@ "side-channel" ] }, - "intl-messageformat@10.6.0": { - "integrity": "sha512-AYKl/DY1nl75pJU8EK681JOVL40uQTNJe3yEMXKfydDFoz+5hNrM/PqjchueSMKGKCZKBVgeexqZwy3uC2B36Q==", + "intl-messageformat@10.7.6": { + "integrity": "sha512-IsMU/hqyy3FJwNJ0hxDfY2heJ7MteSuFvcnCebxRp67di4Fhx1gKKE+qS0bBwUF8yXkX9SsPUhLeX/B6h5SKUA==", "dependencies": [ "@formatjs/ecma402-abstract", "@formatjs/fast-memoize", @@ -4965,13 +4794,6 @@ "is-decimal@2.0.1" ] }, - "is-arguments@1.1.1": { - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dependencies": [ - "call-bind", - "has-tostringtag" - ] - }, "is-array-buffer@3.0.4": { "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dependencies": [ @@ -5064,9 +4886,6 @@ "call-bind" ] }, - "is-fullwidth-code-point@2.0.0": { - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" - }, "is-fullwidth-code-point@3.0.0": { "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" }, @@ -5088,9 +4907,6 @@ "is-hexadecimal@2.0.1": { "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==" }, - "is-interactive@1.0.0": { - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - }, "is-map@2.0.3": { "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==" }, @@ -5106,9 +4922,6 @@ "is-number@7.0.0": { "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" }, - "is-path-inside@3.0.3": { - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - }, "is-plain-obj@2.1.0": { "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" }, @@ -5158,9 +4971,6 @@ "which-typed-array" ] }, - "is-unicode-supported@0.1.0": { - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - }, "is-weakmap@2.0.2": { "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==" }, @@ -5177,9 +4987,6 @@ "get-intrinsic" ] }, - "is-wsl@1.1.0": { - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" - }, "is-wsl@2.2.0": { "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dependencies": [ @@ -5204,6 +5011,19 @@ "ws@7.5.10" ] }, + "istanbul-lib-coverage@3.2.2": { + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" + }, + "istanbul-lib-instrument@5.2.1": { + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": [ + "@babel/core", + "@babel/parser", + "@istanbuljs/schema", + "istanbul-lib-coverage", + "semver@6.3.1" + ] + }, "iterator.prototype@1.1.3": { "integrity": "sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==", "dependencies": [ @@ -5214,12 +5034,8 @@ "set-function-name" ] }, - "jackspeak@2.3.6": { - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dependencies": [ - "@isaacs/cliui", - "@pkgjs/parseargs" - ] + "itty-time@1.0.6": { + "integrity": "sha512-+P8IZaLLBtFv8hCkIjcymZOp4UJ+xW6bSlQsXGqrkmJh7vSiMFSlNne0mCYagEE0N7HDNR5jJBRxwN0oYv61Rw==" }, "jackspeak@3.4.3": { "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", @@ -5250,7 +5066,7 @@ "dependencies": [ "@jest/environment", "@jest/fake-timers", - "@jest/types@29.6.3", + "@jest/types", "@types/node@22.5.4", "jest-mock", "jest-util" @@ -5259,16 +5075,33 @@ "jest-get-type@29.6.3": { "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" }, + "jest-haste-map@29.7.0": { + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dependencies": [ + "@jest/types", + "@types/graceful-fs", + "@types/node@22.5.4", + "anymatch", + "fb-watchman", + "fsevents", + "graceful-fs", + "jest-regex-util", + "jest-util", + "jest-worker", + "micromatch", + "walker" + ] + }, "jest-message-util@29.7.0": { "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dependencies": [ "@babel/code-frame", - "@jest/types@29.6.3", + "@jest/types", "@types/stack-utils", "chalk@4.1.2", "graceful-fs", "micromatch", - "pretty-format@29.7.0", + "pretty-format", "slash", "stack-utils" ] @@ -5276,15 +5109,18 @@ "jest-mock@29.7.0": { "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dependencies": [ - "@jest/types@29.6.3", + "@jest/types", "@types/node@22.5.4", "jest-util" ] }, + "jest-regex-util@29.6.3": { + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" + }, "jest-util@29.7.0": { "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dependencies": [ - "@jest/types@29.6.3", + "@jest/types", "@types/node@22.5.4", "chalk@4.1.2", "ci-info@3.9.0", @@ -5295,12 +5131,12 @@ "jest-validate@29.7.0": { "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dependencies": [ - "@jest/types@29.6.3", + "@jest/types", "camelcase@6.3.0", "chalk@4.1.2", "jest-get-type", "leven", - "pretty-format@29.7.0" + "pretty-format" ] }, "jest-worker@29.7.0": { @@ -5315,18 +5151,8 @@ "jiti@1.21.6": { "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==" }, - "joi@17.13.3": { - "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", - "dependencies": [ - "@hapi/hoek", - "@hapi/topo", - "@sideway/address", - "@sideway/formula", - "@sideway/pinpoint" - ] - }, - "jotai@2.8.4": { - "integrity": "sha512-f6jwjhBJcDtpeauT2xH01gnqadKEySwwt1qNBLvAXcnojkmb76EdqRt05Ym8IamfHGAQz2qMKAwftnyjeSoHAA==" + "jotai@2.10.1": { + "integrity": "sha512-4FycO+BOTl2auLyF2Chvi6KTDqdsdDDtpaL/WHQMs8f3KS1E3loiUShQzAzFA/sMU5cJ0hz/RT1xum9YbG/zaA==" }, "js-base64@3.7.7": { "integrity": "sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==" @@ -5353,7 +5179,7 @@ "jsc-safe-url@0.2.4": { "integrity": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==" }, - "jscodeshift@0.14.0_@babel+preset-env@7.25.8_@babel+core@7.25.8": { + "jscodeshift@0.14.0_@babel+preset-env@7.26.0_@babel+core@7.26.0": { "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", "dependencies": [ "@babel/core", @@ -5362,7 +5188,7 @@ "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-transform-modules-commonjs", - "@babel/preset-env@7.25.8_@babel+core@7.25.8", + "@babel/preset-env@7.26.0_@babel+core@7.26.0", "@babel/preset-flow", "@babel/preset-typescript", "@babel/register", @@ -5375,10 +5201,10 @@ "node-dir", "recast", "temp", - "write-file-atomic" + "write-file-atomic@2.4.3" ] }, - "jscodeshift@0.14.0_@babel+preset-env@7.25.8_@babel+core@7.25.8_@babel+preset-env@7.25.8__@babel+core@7.25.8": { + "jscodeshift@0.14.0_@babel+preset-env@7.26.0_@babel+core@7.26.0_@babel+preset-env@7.26.0__@babel+core@7.26.0": { "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", "dependencies": [ "@babel/core", @@ -5387,7 +5213,7 @@ "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-transform-modules-commonjs", - "@babel/preset-env@7.25.8_@babel+core@7.25.8", + "@babel/preset-env@7.26.0_@babel+core@7.26.0", "@babel/preset-flow", "@babel/preset-typescript", "@babel/register", @@ -5400,12 +5226,9 @@ "node-dir", "recast", "temp", - "write-file-atomic" + "write-file-atomic@2.4.3" ] }, - "jsesc@2.5.2": { - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - }, "jsesc@3.0.2": { "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==" }, @@ -5415,9 +5238,6 @@ "json-parse-better-errors@1.0.2": { "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" }, - "json-parse-even-better-errors@2.3.1": { - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, "json-schema-traverse@0.4.1": { "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, @@ -5436,12 +5256,6 @@ "json5@2.2.3": { "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" }, - "jsonfile@4.0.0": { - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dependencies": [ - "graceful-fs" - ] - }, "jsonparse@1.3.1": { "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" }, @@ -5469,9 +5283,6 @@ "kind-of@6.0.3": { "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, - "kleur@3.0.3": { - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - }, "language-subtag-registry@0.3.23": { "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==" }, @@ -5541,24 +5352,6 @@ "lodash.throttle@4.1.1": { "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" }, - "lodash@4.17.21": { - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "log-symbols@4.1.0": { - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dependencies": [ - "chalk@4.1.2", - "is-unicode-supported" - ] - }, - "logkitty@0.7.1": { - "integrity": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==", - "dependencies": [ - "ansi-fragments", - "dayjs", - "yargs@15.4.1" - ] - }, "longest-streak@3.1.0": { "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==" }, @@ -5603,8 +5396,8 @@ "tmpl" ] }, - "markdown-table@3.0.3": { - "integrity": "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==" + "markdown-table@3.0.4": { + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==" }, "marky@1.2.5": { "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==" @@ -5618,8 +5411,8 @@ "unist-util-visit-parents@6.0.1" ] }, - "mdast-util-from-markdown@2.0.1": { - "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", + "mdast-util-from-markdown@2.0.2": { + "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", "dependencies": [ "@types/mdast@4.0.4", "@types/unist@3.0.3", @@ -5766,14 +5559,15 @@ "vfile@6.0.3" ] }, - "mdast-util-to-markdown@2.1.0": { - "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", + "mdast-util-to-markdown@2.1.2": { + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", "dependencies": [ "@types/mdast@4.0.4", "@types/unist@3.0.3", "longest-streak", "mdast-util-phrasing", "mdast-util-to-string@4.0.0", + "micromark-util-classify-character", "micromark-util-decode-string", "unist-util-visit@5.0.0", "zwitch" @@ -5806,34 +5600,34 @@ "merge2@1.4.1": { "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" }, - "metro-babel-transformer@0.80.12": { - "integrity": "sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==", + "metro-babel-transformer@0.81.0": { + "integrity": "sha512-Dc0QWK4wZIeHnyZ3sevWGTnnSkIDDn/SWyfrn99zbKbDOCoCYy71PAn9uCRrP/hduKLJQOy+tebd63Rr9D8tXg==", "dependencies": [ "@babel/core", "flow-enums-runtime", - "hermes-parser@0.23.1", + "hermes-parser@0.24.0", "nullthrows" ] }, - "metro-cache-key@0.80.12": { - "integrity": "sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==", + "metro-cache-key@0.81.0": { + "integrity": "sha512-qX/IwtknP9bQZL78OK9xeSvLM/xlGfrs6SlUGgHvrxtmGTRSsxcyqxR+c+7ch1xr05n62Gin/O44QKg5V70rNQ==", "dependencies": [ "flow-enums-runtime" ] }, - "metro-cache@0.80.12": { - "integrity": "sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==", + "metro-cache@0.81.0": { + "integrity": "sha512-DyuqySicHXkHUDZFVJmh0ygxBSx6pCKUrTcSgb884oiscV/ROt1Vhye+x+OIHcsodyA10gzZtrVtxIFV4l9I4g==", "dependencies": [ "exponential-backoff", "flow-enums-runtime", "metro-core" ] }, - "metro-config@0.80.12": { - "integrity": "sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==", + "metro-config@0.81.0": { + "integrity": "sha512-6CinEaBe3WLpRlKlYXXu8r1UblJhbwD6Gtnoib5U8j6Pjp7XxMG9h/DGMeNp9aGLDu1OieUqiXpFo7O0/rR5Kg==", "dependencies": [ "connect", - "cosmiconfig@5.2.1", + "cosmiconfig", "flow-enums-runtime", "jest-validate", "metro", @@ -5842,16 +5636,16 @@ "metro-runtime" ] }, - "metro-core@0.80.12": { - "integrity": "sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==", + "metro-core@0.81.0": { + "integrity": "sha512-CVkM5YCOAFkNMvJai6KzA0RpztzfEKRX62/PFMOJ9J7K0uq/UkOFLxcgpcncMIrfy0PbfEj811b69tjULUQe1Q==", "dependencies": [ "flow-enums-runtime", "lodash.throttle", "metro-resolver" ] }, - "metro-file-map@0.80.12": { - "integrity": "sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==", + "metro-file-map@0.81.0": { + "integrity": "sha512-zMDI5uYhQCyxbye/AuFx/pAbsz9K+vKL7h1ShUXdN2fz4VUPiyQYRsRqOoVG1DsiCgzd5B6LW0YW77NFpjDQeg==", "dependencies": [ "anymatch", "debug@2.6.9", @@ -5867,30 +5661,31 @@ "walker" ] }, - "metro-minify-terser@0.80.12": { - "integrity": "sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==", + "metro-minify-terser@0.81.0": { + "integrity": "sha512-U2ramh3W822ZR1nfXgIk+emxsf5eZSg10GbQrT0ZizImK8IZ5BmJY+BHRIkQgHzWFpExOVxC7kWbGL1bZALswA==", "dependencies": [ "flow-enums-runtime", "terser" ] }, - "metro-resolver@0.80.12": { - "integrity": "sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==", + "metro-resolver@0.81.0": { + "integrity": "sha512-Uu2Q+buHhm571cEwpPek8egMbdSTqmwT/5U7ZVNpK6Z2ElQBBCxd7HmFAslKXa7wgpTO2FAn6MqGeERbAtVDUA==", "dependencies": [ "flow-enums-runtime" ] }, - "metro-runtime@0.80.12": { - "integrity": "sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==", + "metro-runtime@0.81.0": { + "integrity": "sha512-6oYB5HOt37RuGz2eV4A6yhcl+PUTwJYLDlY9vhT+aVjbUWI6MdBCf69vc4f5K5Vpt+yOkjy+2LDwLS0ykWFwYw==", "dependencies": [ "@babel/runtime", "flow-enums-runtime" ] }, - "metro-source-map@0.80.12": { - "integrity": "sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==", + "metro-source-map@0.81.0": { + "integrity": "sha512-TzsVxhH83dyxg4A4+L1nzNO12I7ps5IHLjKGZH3Hrf549eiZivkdjYiq/S5lOB+p2HiQ+Ykcwtmcja95LIC62g==", "dependencies": [ "@babel/traverse", + "@babel/traverse--for-generate-function-map@npm:@babel/traverse@7.25.9", "@babel/types", "flow-enums-runtime", "invariant", @@ -5901,8 +5696,8 @@ "vlq" ] }, - "metro-symbolicate@0.80.12": { - "integrity": "sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==", + "metro-symbolicate@0.81.0": { + "integrity": "sha512-C/1rWbNTPYp6yzID8IPuQPpVGzJ2rbWYBATxlvQ9dfK5lVNoxcwz77hjcY8ISLsRRR15hyd/zbjCNKPKeNgE1Q==", "dependencies": [ "flow-enums-runtime", "invariant", @@ -5913,22 +5708,22 @@ "vlq" ] }, - "metro-transform-plugins@0.80.12": { - "integrity": "sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==", + "metro-transform-plugins@0.81.0": { + "integrity": "sha512-uErLAPBvttGCrmGSCa0dNHlOTk3uJFVEVWa5WDg6tQ79PRmuYRwzUgLhVzn/9/kyr75eUX3QWXN79Jvu4txt6Q==", "dependencies": [ "@babel/core", - "@babel/generator@7.25.7", + "@babel/generator", "@babel/template", "@babel/traverse", "flow-enums-runtime", "nullthrows" ] }, - "metro-transform-worker@0.80.12": { - "integrity": "sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==", + "metro-transform-worker@0.81.0": { + "integrity": "sha512-HrQ0twiruhKy0yA+9nK5bIe3WQXZcC66PXTvRIos61/EASLAP2DzEmW7IxN/MGsfZegN2UzqL2CG38+mOB45vg==", "dependencies": [ "@babel/core", - "@babel/generator@7.25.7", + "@babel/generator", "@babel/parser", "@babel/types", "flow-enums-runtime", @@ -5942,12 +5737,12 @@ "nullthrows" ] }, - "metro@0.80.12": { - "integrity": "sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==", + "metro@0.81.0": { + "integrity": "sha512-kzdzmpL0gKhEthZ9aOV7sTqvg6NuTxDV8SIm9pf9sO8VVEbKrQk5DNcwupOUjgPPFAuKUc2NkT0suyT62hm2xg==", "dependencies": [ "@babel/code-frame", "@babel/core", - "@babel/generator@7.25.7", + "@babel/generator", "@babel/parser", "@babel/template", "@babel/traverse", @@ -5961,7 +5756,7 @@ "error-stack-parser", "flow-enums-runtime", "graceful-fs", - "hermes-parser@0.23.1", + "hermes-parser@0.24.0", "image-size", "invariant", "jest-worker", @@ -6261,17 +6056,14 @@ "mime@1.6.0": { "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" }, - "mime@2.6.0": { - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - }, "mime@3.0.0": { "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" }, "mimic-fn@2.1.0": { "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" }, - "miniflare@3.20240524.1": { - "integrity": "sha512-5d3pRxvd5pT7lX1SsBH9+AjXuyHJnChSNOnYhubfi7pxMek4ZfULwhnUmNUp1R7b2xKuzqdFDZa0fsZuUoFxlw==", + "miniflare@3.20241106.0": { + "integrity": "sha512-PjOoJKjUUofCueQskfhXlGvvHxZj36UAJAp1DnquMK88MFF50zCULblh0KXMSNM+bXeQYA94Gj06a7kfmBGxPw==", "dependencies": [ "@cspotcode/source-map-support", "acorn", @@ -6293,12 +6085,6 @@ "brace-expansion@1.1.11" ] }, - "minimatch@9.0.3": { - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dependencies": [ - "brace-expansion@2.0.1" - ] - }, "minimatch@9.0.5": { "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dependencies": [ @@ -6340,8 +6126,8 @@ "nanoid@3.3.7": { "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" }, - "nanoid@5.0.7": { - "integrity": "sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==" + "nanoid@5.0.8": { + "integrity": "sha512-TcJPw+9RV9dibz1hHUzlLVy8N4X9TnwirAjrU08Juo6BNKggzVfP2ZJ/3ZUSq15Xl5i85i+Z89XBO90pB2PghQ==" }, "natural-compare@1.4.0": { "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" @@ -6349,27 +6135,30 @@ "negotiator@0.6.3": { "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" }, + "negotiator@1.0.0": { + "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==" + }, "neo-async@2.6.2": { "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, - "next-intl@3.14.1_next@14.2.15__react@18.3.1__react-dom@18.3.1___react@18.3.1_react@18.3.1": { - "integrity": "sha512-Jb5KdYaJCH3z4O/Ab05YOi7lzaqtFcnOa8KdUCHvHKxPYNM7H6I/5hC3dvKPDb9S5gW6wMp3bNQoMzcWw227jw==", + "next-intl@3.25.0_next@15.0.3__react@19.0.0-rc-66855b96-20241106__react-dom@19.0.0-rc-66855b96-20241106___react@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { + "integrity": "sha512-xjHNqYyW6LS2Mwmld4Q7tBhyv6g2zO7BtclOAQXe6Fgl5hEsWCv8KNZc0jumud1qnNr8erzmYz8KepJZtXPA4Q==", "dependencies": [ - "@formatjs/intl-localematcher@0.2.32", - "negotiator", - "next@14.2.15_react@18.3.1_react-dom@18.3.1__react@18.3.1", - "react@18.3.1", + "@formatjs/intl-localematcher", + "negotiator@1.0.0", + "next", + "react@19.0.0-rc-66855b96-20241106", "use-intl" ] }, - "next-sitemap@4.2.3_next@14.2.15__react@18.3.1__react-dom@18.3.1___react@18.3.1": { + "next-sitemap@4.2.3_next@15.0.3__react@19.0.0-rc-66855b96-20241106__react-dom@19.0.0-rc-66855b96-20241106___react@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-vjdCxeDuWDzldhCnyFCQipw5bfpl4HmZA7uoo3GAaYGjGgfL4Cxb1CiztPuWGmS+auYs7/8OekRS8C2cjdAsjQ==", "dependencies": [ "@corex/deepmerge", "@next/env@13.5.7", - "fast-glob", + "fast-glob@3.3.2", "minimist", - "next@14.2.15_react@18.3.1_react-dom@18.3.1__react@18.3.1" + "next" ] }, "next-themes@0.3.0_react@18.3.1_react-dom@18.3.1__react@18.3.1": { @@ -6379,56 +6168,29 @@ "react-dom@18.3.1_react@18.3.1" ] }, - "next@14.2.15_react@18.3.1_react-dom@18.3.1__react@18.3.1": { - "integrity": "sha512-h9ctmOokpoDphRvMGnwOJAedT6zKhwqyZML9mDtspgf4Rh3Pn7UTYKqePNoDvhsWBAO5GoPNYshnAUGIazVGmw==", - "dependencies": [ - "@next/env@14.2.15", - "@next/swc-darwin-arm64@14.2.15", - "@next/swc-darwin-x64@14.2.15", - "@next/swc-linux-arm64-gnu@14.2.15", - "@next/swc-linux-arm64-musl@14.2.15", - "@next/swc-linux-x64-gnu@14.2.15", - "@next/swc-linux-x64-musl@14.2.15", - "@next/swc-win32-arm64-msvc@14.2.15", - "@next/swc-win32-ia32-msvc@14.2.15", - "@next/swc-win32-x64-msvc@14.2.15", - "@swc/helpers@0.5.5", - "busboy", - "caniuse-lite", - "graceful-fs", - "postcss@8.4.31", - "react@18.3.1", - "react-dom@18.3.1_react@18.3.1", - "styled-jsx@5.1.1_react@18.3.1" - ] - }, - "next@15.0.0-canary.2_react@19.0.0-rc-f994737d14-20240522_react-dom@19.0.0-rc-f994737d14-20240522__react@19.0.0-rc-f994737d14-20240522": { - "integrity": "sha512-rM5i5l+tKjuQVBPsAQFoHU7S6OnYJl1cfuF0SaGMhM6udWYnxIHUhMbrfxTnIxSeK7oqeZNu8cvHNlI1033IFg==", - "dependencies": [ - "@next/env@15.0.0-canary.2", - "@next/swc-darwin-arm64@15.0.0-canary.2", - "@next/swc-darwin-x64@15.0.0-canary.2", - "@next/swc-linux-arm64-gnu@15.0.0-canary.2", - "@next/swc-linux-arm64-musl@15.0.0-canary.2", - "@next/swc-linux-x64-gnu@15.0.0-canary.2", - "@next/swc-linux-x64-musl@15.0.0-canary.2", - "@next/swc-win32-arm64-msvc@15.0.0-canary.2", - "@next/swc-win32-ia32-msvc@15.0.0-canary.2", - "@next/swc-win32-x64-msvc@15.0.0-canary.2", - "@swc/helpers@0.5.11", + "next@15.0.3_react@19.0.0-rc-66855b96-20241106_react-dom@19.0.0-rc-66855b96-20241106__react@19.0.0-rc-66855b96-20241106": { + "integrity": "sha512-ontCbCRKJUIoivAdGB34yCaOcPgYXr9AAkV/IwqFfWWTXEPUgLYkSkqBhIk9KK7gGmgjc64B+RdoeIDM13Irnw==", + "dependencies": [ + "@next/env@15.0.3", + "@next/swc-darwin-arm64", + "@next/swc-darwin-x64", + "@next/swc-linux-arm64-gnu", + "@next/swc-linux-arm64-musl", + "@next/swc-linux-x64-gnu", + "@next/swc-linux-x64-musl", + "@next/swc-win32-arm64-msvc", + "@next/swc-win32-x64-msvc", + "@swc/counter", + "@swc/helpers", "busboy", "caniuse-lite", - "graceful-fs", "postcss@8.4.31", - "react@19.0.0-rc-f994737d14-20240522", - "react-dom@19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522", + "react@19.0.0-rc-66855b96-20241106", + "react-dom@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106", "sharp", - "styled-jsx@5.1.6_react@19.0.0-rc-f994737d14-20240522" + "styled-jsx" ] }, - "nocache@3.0.4": { - "integrity": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==" - }, "node-abort-controller@3.1.1": { "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" }, @@ -6462,9 +6224,6 @@ "node-releases@2.0.18": { "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" }, - "node-stream-zip@1.15.0": { - "integrity": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==" - }, "normalize-path@3.0.0": { "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" }, @@ -6480,8 +6239,8 @@ "nullthrows@1.1.1": { "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==" }, - "ob1@0.80.12": { - "integrity": "sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==", + "ob1@0.81.0": { + "integrity": "sha512-6Cvrkxt1tqaRdWqTAMcVYEiO5i1xcF9y7t06nFdjFqkfPsEloCf8WwhXdwBpNUkVYSQlSGS7cDgVQR86miBfBQ==", "dependencies": [ "flow-enums-runtime" ] @@ -6492,15 +6251,8 @@ "object-hash@3.0.0": { "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" }, - "object-inspect@1.13.2": { - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" - }, - "object-is@1.1.6": { - "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", - "dependencies": [ - "call-bind", - "define-properties" - ] + "object-inspect@1.13.3": { + "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==" }, "object-keys@1.1.1": { "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" @@ -6547,6 +6299,9 @@ "es-object-atoms" ] }, + "ohash@1.1.4": { + "integrity": "sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==" + }, "on-finished@2.3.0": { "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", "dependencies": [ @@ -6559,9 +6314,6 @@ "ee-first" ] }, - "on-headers@1.0.2": { - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - }, "once@1.4.0": { "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dependencies": [ @@ -6574,17 +6326,11 @@ "mimic-fn" ] }, - "open@6.4.0": { - "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", - "dependencies": [ - "is-wsl@1.1.0" - ] - }, "open@7.4.2": { "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dependencies": [ "is-docker", - "is-wsl@2.2.0" + "is-wsl" ] }, "optionator@0.9.4": { @@ -6598,20 +6344,6 @@ "word-wrap" ] }, - "ora@5.4.1": { - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dependencies": [ - "bl", - "chalk@4.1.2", - "cli-cursor", - "cli-spinners", - "is-interactive", - "is-unicode-supported", - "log-symbols", - "strip-ansi@6.0.1", - "wcwidth" - ] - }, "p-limit@2.3.0": { "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dependencies": [ @@ -6685,15 +6417,6 @@ "json-parse-better-errors" ] }, - "parse-json@5.2.0": { - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dependencies": [ - "@babel/code-frame", - "error-ex", - "json-parse-even-better-errors", - "lines-and-columns" - ] - }, "parseurl@1.3.3": { "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" }, @@ -6722,11 +6445,11 @@ "path-to-regexp@6.3.0": { "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==" }, - "path-type@4.0.0": { - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + "pathe@1.1.2": { + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==" }, - "picocolors@1.1.0": { - "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==" + "picocolors@1.1.1": { + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch@2.3.1": { "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" @@ -6746,6 +6469,9 @@ "find-up@3.0.0" ] }, + "pngjs@5.0.0": { + "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==" + }, "possible-typed-array-names@1.0.0": { "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==" }, @@ -6816,32 +6542,14 @@ "prelude-ls@1.2.1": { "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" }, - "prettier-plugin-tailwindcss@0.6.1_prettier@3.2.5": { + "prettier-plugin-tailwindcss@0.6.1_prettier@3.3.3": { "integrity": "sha512-AnbeYZu0WGj+QgKciUgdMnRxrqcxltleZPgdwfA5104BHM3siBLONN/HLW1yS2HvzSNkzpQ/JAj+LN0jcJO+0w==", "dependencies": [ "prettier" ] }, - "prettier@3.2.5": { - "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==" - }, - "pretty-format@24.9.0": { - "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", - "dependencies": [ - "@jest/types@24.9.0", - "ansi-regex@4.1.1", - "ansi-styles@3.2.1", - "react-is@16.13.1" - ] - }, - "pretty-format@26.6.2": { - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", - "dependencies": [ - "@jest/types@26.6.2", - "ansi-regex@5.0.1", - "ansi-styles@4.3.0", - "react-is@17.0.2" - ] + "prettier@3.3.3": { + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==" }, "pretty-format@29.7.0": { "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", @@ -6869,13 +6577,6 @@ "asap" ] }, - "prompts@2.4.2": { - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dependencies": [ - "kleur", - "sisteransi" - ] - }, "prop-types@15.8.1": { "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "dependencies": [ @@ -6896,6 +6597,14 @@ "punycode@2.3.1": { "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" }, + "qrcode@1.5.4": { + "integrity": "sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==", + "dependencies": [ + "dijkstrajs", + "pngjs", + "yargs@15.4.1" + ] + }, "queue-microtask@1.2.3": { "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" }, @@ -6923,23 +6632,20 @@ "scheduler@0.23.2" ] }, - "react-dom@19.0.0-rc-f994737d14-20240522_react@19.0.0-rc-f994737d14-20240522": { - "integrity": "sha512-J4CsfTSptPKkhaPbaR6n/KohQiHZTrRZ8GL4H8rbAqN/Qpy69g2MIoLBr5/PUX21ye6JxC1ZRWJFna7Xdg1pdA==", + "react-dom@19.0.0-rc-66855b96-20241106_react@19.0.0-rc-66855b96-20241106": { + "integrity": "sha512-D25vdaytZ1wFIRiwNU98NPQ/upS2P8Co4/oNoa02PzHbh8deWdepjm5qwZM/46OdSiGv4WSWwxP55RO9obqJEQ==", "dependencies": [ - "react@19.0.0-rc-f994737d14-20240522", - "scheduler@0.25.0-rc-f994737d14-20240522" + "react@19.0.0-rc-66855b96-20241106", + "scheduler@0.25.0-rc-66855b96-20241106" ] }, "react-is@16.13.1": { "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, - "react-is@17.0.2": { - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, "react-is@18.3.1": { "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" }, - "react-markdown@9.0.1_@types+react@18.3.11_react@18.3.1": { + "react-markdown@9.0.1_@types+react@18.3.12_react@18.3.1": { "integrity": "sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==", "dependencies": [ "@types/hast@3.0.4", @@ -6956,15 +6662,12 @@ "vfile@6.0.3" ] }, - "react-native@0.75.4_react@18.3.1_typescript@5.4.5": { - "integrity": "sha512-Jehg4AMNIAXu9cn0/1jbTCoNg3tc+t6EekwucCalN8YoRmxGd/PY6osQTI/5fSAM40JQ4O8uv8Qg09Ycpb5sxQ==", + "react-native@0.76.1_react@18.3.1": { + "integrity": "sha512-z4KnbrnnAvloRs9NGnah3u6/LK3IbtNMrvByxa3ifigbMlsMY4WPRYV9lvt/hH4Mzt8bfuI+utnOxFyJTTq3lg==", "dependencies": [ "@jest/create-cache-key-function", - "@react-native-community/cli", - "@react-native-community/cli-platform-android", - "@react-native-community/cli-platform-ios", "@react-native/assets-registry", - "@react-native/codegen@0.75.4_@babel+preset-env@7.25.8", + "@react-native/codegen@0.76.1_@babel+preset-env@7.26.0", "@react-native/community-cli-plugin", "@react-native/gradle-plugin", "@react-native/js-polyfills", @@ -6973,9 +6676,11 @@ "abort-controller", "anser", "ansi-regex@5.0.1", + "babel-jest", + "babel-plugin-syntax-hermes-parser", "base64-js", "chalk@4.1.2", - "commander@9.5.0", + "commander@12.1.0", "event-target-shim", "flow-enums-runtime", "glob@7.2.3", @@ -6987,7 +6692,7 @@ "metro-source-map", "mkdirp@0.5.6", "nullthrows", - "pretty-format@26.6.2", + "pretty-format", "promise", "react@18.3.1", "react-devtools-core", @@ -7032,11 +6737,12 @@ "tslib" ] }, - "react-syntax-highlighter@15.5.0_react@18.3.1": { - "integrity": "sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==", + "react-syntax-highlighter@15.6.1_react@18.3.1": { + "integrity": "sha512-OqJ2/vL7lEeV5zTJyG7kmARppUjiB9h9udl4qHQjjgEos66z00Ia0OckwYfRxCSFrW8RJIBnsBwQsHZbVPspqg==", "dependencies": [ "@babel/runtime", "highlight.js", + "highlightjs-vue", "lowlight", "prismjs@1.29.0", "react@18.3.1", @@ -7049,8 +6755,8 @@ "loose-envify" ] }, - "react@19.0.0-rc-f994737d14-20240522": { - "integrity": "sha512-SeU2v5Xy6FotVhKz0pMS2gvYP7HlkF0qgTskj3JzA1vlxcb3dQjxlm9t0ZlJqcgoyI3VFAw7bomuDMdgy1nBuw==" + "react@19.0.0-rc-66855b96-20241106": { + "integrity": "sha512-klH7xkT71SxRCx4hb1hly5FJB21Hz0ACyxbXYAECEqssUjtJeFUAaI2U1DgJAzkGEnvEm3DkxuBchMC/9K4ipg==" }, "read-cache@1.0.0": { "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", @@ -7070,14 +6776,6 @@ "util-deprecate" ] }, - "readable-stream@3.6.2": { - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": [ - "inherits", - "string_decoder", - "util-deprecate" - ] - }, "readdirp@3.6.0": { "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dependencies": [ @@ -7160,10 +6858,10 @@ "regjsgen@0.8.0": { "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==" }, - "regjsparser@0.11.1": { - "integrity": "sha512-1DHODs4B8p/mQHU9kr+jv8+wIC9mtG4eBHxWxIq5mhjE3D5oORhCc6deRKzTjs9DcfRFmj9BHSDguZklqCGFWQ==", + "regjsparser@0.11.2": { + "integrity": "sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA==", "dependencies": [ - "jsesc@3.0.2" + "jsesc" ] }, "remark-gfm@4.0.0": { @@ -7245,6 +6943,9 @@ "resolve-from@4.0.0": { "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" }, + "resolve-from@5.0.0": { + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + }, "resolve-pkg-maps@1.0.0": { "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" }, @@ -7267,13 +6968,6 @@ "supports-preserve-symlinks-flag" ] }, - "restore-cursor@3.1.0": { - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dependencies": [ - "onetime", - "signal-exit@3.0.7" - ] - }, "reusify@1.0.4": { "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" }, @@ -7312,10 +7006,10 @@ "rpc-websockets@9.0.4_bufferutil@4.0.8_utf-8-validate@5.0.10": { "integrity": "sha512-yWZWN0M+bivtoNLnaDbtny4XchdAIF5Q4g/ZsC5UC61Ckbp0QczwO8fg44rV3uYmY4WHd+EZQbn90W1d8ojzqQ==", "dependencies": [ - "@swc/helpers@0.5.11", + "@swc/helpers", "@types/uuid", - "@types/ws@8.5.12", - "buffer@6.0.3", + "@types/ws@8.5.13", + "buffer", "bufferutil", "eventemitter3@5.0.1", "utf-8-validate", @@ -7364,8 +7058,8 @@ "loose-envify" ] }, - "scheduler@0.25.0-rc-f994737d14-20240522": { - "integrity": "sha512-qS+xGFF7AljP2APO2iJe8zESNsK20k25MACz+WGOXPybUsRdi1ssvaoF93im2nSX2q/XT3wKkjdz6RQfbmaxdw==" + "scheduler@0.25.0-rc-66855b96-20241106": { + "integrity": "sha512-HQXp/Mnp/MMRSXMQF7urNFla+gmtXW/Gr1KliuR0iboTit4KvZRY8KYaq5ccCTAOJiUqQh2rE2F3wgUekmgdlA==" }, "section-matter@1.0.0": { "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", @@ -7512,20 +7206,9 @@ "is-arrayish@0.3.2" ] }, - "sisteransi@1.0.5": { - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - }, "slash@3.0.0": { "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" }, - "slice-ansi@2.1.0": { - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", - "dependencies": [ - "ansi-styles@3.2.1", - "astral-regex", - "is-fullwidth-code-point@2.0.0" - ] - }, "source-map-js@1.2.1": { "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" }, @@ -7566,7 +7249,7 @@ "stacktrace-parser@0.1.10": { "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", "dependencies": [ - "type-fest@0.7.1" + "type-fest" ] }, "stacktracey@2.1.8": { @@ -7582,12 +7265,6 @@ "statuses@2.0.1": { "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" }, - "stop-iteration-iterator@1.0.0": { - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dependencies": [ - "internal-slot" - ] - }, "stoppable@1.1.0": { "integrity": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==" }, @@ -7598,7 +7275,7 @@ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dependencies": [ "emoji-regex@8.0.0", - "is-fullwidth-code-point@3.0.0", + "is-fullwidth-code-point", "strip-ansi@6.0.1" ] }, @@ -7610,9 +7287,10 @@ "strip-ansi@7.1.0" ] }, - "string.prototype.includes@2.0.0": { - "integrity": "sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==", + "string.prototype.includes@2.0.1": { + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", "dependencies": [ + "call-bind", "define-properties", "es-abstract" ] @@ -7679,12 +7357,6 @@ "character-entities-legacy@3.0.0" ] }, - "strip-ansi@5.2.0": { - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dependencies": [ - "ansi-regex@4.1.1" - ] - }, "strip-ansi@6.0.1": { "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dependencies": [ @@ -7709,27 +7381,17 @@ "strip-json-comments@3.1.1": { "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" }, - "strnum@1.0.5": { - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" - }, "style-to-object@1.0.8": { "integrity": "sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==", "dependencies": [ "inline-style-parser" ] }, - "styled-jsx@5.1.1_react@18.3.1": { - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "dependencies": [ - "client-only", - "react@18.3.1" - ] - }, - "styled-jsx@5.1.6_react@19.0.0-rc-f994737d14-20240522": { + "styled-jsx@5.1.6_react@19.0.0-rc-66855b96-20241106": { "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", "dependencies": [ "client-only", - "react@19.0.0-rc-f994737d14-20240522" + "react@19.0.0-rc-66855b96-20241106" ] }, "sucrase@3.35.0": { @@ -7744,31 +7406,22 @@ "ts-interface-checker" ] }, - "sudo-prompt@9.2.1": { - "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==" - }, "superstruct@1.0.4": { "integrity": "sha512-7JpaAoX2NGyoFlI9NBh66BQXGONc+uE+MRS5i2iOBKuS4e+ccgMDjATgZldkah+33DakBxDHiss9kvUcGAO8UQ==" }, "superstruct@2.0.2": { "integrity": "sha512-uV+TFRZdXsqXTL2pRvujROjdZQ4RAlBUS5BTh9IGm+jTqQntYThciG/qu57Gs69yjnVUSqdxF9YLmSnpupBW9A==" }, - "supports-color@5.5.0": { - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": [ - "has-flag@3.0.0" - ] - }, "supports-color@7.2.0": { "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": [ - "has-flag@4.0.0" + "has-flag" ] }, "supports-color@8.1.1": { "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dependencies": [ - "has-flag@4.0.0" + "has-flag" ] }, "supports-preserve-symlinks-flag@1.0.0": { @@ -7800,7 +7453,7 @@ "chokidar", "didyoumean", "dlv", - "fast-glob", + "fast-glob@3.3.2", "glob-parent@6.0.2", "is-glob", "jiti", @@ -7828,8 +7481,8 @@ "rimraf@2.6.3" ] }, - "terser@5.34.1": { - "integrity": "sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==", + "terser@5.36.0": { + "integrity": "sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==", "dependencies": [ "@jridgewell/source-map", "acorn", @@ -7837,6 +7490,14 @@ "source-map-support" ] }, + "test-exclude@6.0.0": { + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": [ + "@istanbuljs/schema", + "glob@7.2.3", + "minimatch@3.1.2" + ] + }, "text-encoding-utf-8@1.0.2": { "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==" }, @@ -7861,7 +7522,7 @@ "through2@2.0.5": { "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dependencies": [ - "readable-stream@2.3.8", + "readable-stream", "xtend" ] }, @@ -7871,9 +7532,6 @@ "tmpl@1.0.5": { "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" }, - "to-fast-properties@2.0.0": { - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - }, "to-regex-range@5.0.1": { "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dependencies": [ @@ -7889,14 +7547,11 @@ "trim-lines@3.0.1": { "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==" }, - "trim-right@1.0.1": { - "integrity": "sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==" - }, "trough@2.2.0": { "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==" }, - "ts-api-utils@1.3.0_typescript@5.4.5": { - "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "ts-api-utils@1.4.0_typescript@5.6.3": { + "integrity": "sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==", "dependencies": [ "typescript" ] @@ -7913,8 +7568,8 @@ "strip-bom" ] }, - "tslib@2.7.0": { - "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + "tslib@2.8.1": { + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, "type-check@0.4.0": { "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", @@ -7925,9 +7580,6 @@ "type-detect@4.0.8": { "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" }, - "type-fest@0.20.2": { - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - }, "type-fest@0.7.1": { "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==" }, @@ -7971,20 +7623,23 @@ "possible-typed-array-names" ] }, - "types-react-dom@19.0.0-rc.0": { - "integrity": "sha512-wGlQSD6H6EeCxhH+dSip1cPcCU7nNTOwHEr29rjiNtGkUPlmEofOizoQaPMEqQH2V76ME3NLvBDLGajRu3xZOw==", + "types-react-dom@19.0.0-rc.1": { + "integrity": "sha512-VSLZJl8VXCD0fAWp7DUTFUDCcZ8DVXOQmjhJMD03odgeFmu14ZQJHCXeETm3BEAhJqfgJaFkLnGkQv88sRx0fQ==", "dependencies": [ "@types/react" ] }, - "types-react@19.0.0-rc.0": { - "integrity": "sha512-JFd3qtgXZ+EdHht8WXMPSF231brd6Bu4yLKqyo0JjpzhmjYxJptT6TBh/xFqOhx+ee2Nagj7Ttkh5F/jc49TVQ==", + "types-react@19.0.0-rc.1": { + "integrity": "sha512-RshndUfqTW6K3STLPis8BtAYCGOkMbtvYsi90gmVNDZBXUyUc5juf2PE9LfS/JmOlUIRO8cWTS/1MTnmhjDqyQ==", "dependencies": [ "csstype" ] }, - "typescript@5.4.5": { - "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==" + "typescript@5.6.3": { + "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==" + }, + "ufo@1.5.4": { + "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==" }, "unbox-primitive@1.0.2": { "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", @@ -8007,6 +7662,15 @@ "@fastify/busboy" ] }, + "unenv-nightly@2.0.0-20241024-111401-d4156ac": { + "integrity": "sha512-xJO1hfY+Te+/XnfCYrCbFbRcgu6XEODND1s5wnVbaBCkuQX7JXF7fHEXPrukFE2j8EOH848P8QN19VO47XN8hw==", + "dependencies": [ + "defu", + "ohash", + "pathe", + "ufo" + ] + }, "unicode-canonical-property-names-ecmascript@2.0.1": { "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==" }, @@ -8114,13 +7778,10 @@ "unist-util-visit-parents@6.0.1" ] }, - "universalify@0.1.2": { - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - }, "unpipe@1.0.0": { "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, - "update-browserslist-db@1.1.1_browserslist@4.24.0": { + "update-browserslist-db@1.1.1_browserslist@4.24.2": { "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "dependencies": [ "browserslist", @@ -8141,12 +7802,12 @@ "tslib" ] }, - "use-intl@3.21.1_react@18.3.1": { - "integrity": "sha512-52kYgcydYkG9SX0ZZGt7W6WD2Va01hwe15bDgkXuaTdSxrF9fDu6hHTV5DxIuSmSSf/FEcBo/nodpw3ZhY31Lw==", + "use-intl@3.25.0_react@19.0.0-rc-66855b96-20241106": { + "integrity": "sha512-e9nfJm18rM+naT14oZZYR3FNWd2mRDmNFQJC4R9qh4vhfabDwl0Kd/B6PodYst7U/0oT3qeKKjlz7qG3BvXAaQ==", "dependencies": [ "@formatjs/fast-memoize", "intl-messageformat", - "react@18.3.1" + "react@19.0.0-rc-66855b96-20241106" ] }, "use-sidecar@1.1.2_react@18.3.1": { @@ -8172,9 +7833,6 @@ "uuid@8.3.2": { "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" }, - "vary@1.1.2": { - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - }, "vfile-message@3.1.4": { "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "dependencies": [ @@ -8214,12 +7872,6 @@ "makeerror" ] }, - "wcwidth@1.0.1": { - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dependencies": [ - "defaults" - ] - }, "webidl-conversions@3.0.1": { "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, @@ -8291,8 +7943,8 @@ "word-wrap@1.2.5": { "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" }, - "workerd@1.20240524.0": { - "integrity": "sha512-LWLe5D8PVHBcqturmBbwgI71r7YPpIMYZoVEH6S4G35EqIJ55cb0n3FipoSyraoIfpcCxCFxX1K6WsRHbP3pFA==", + "workerd@1.20241106.1": { + "integrity": "sha512-1GdKl0kDw8rrirr/ThcK66Kbl4/jd4h8uHx5g7YHBrnenY5SX1UPuop2cnCzYUxlg55kPjzIqqYslz1muRFgFw==", "dependencies": [ "@cloudflare/workerd-darwin-64", "@cloudflare/workerd-darwin-arm64", @@ -8301,16 +7953,19 @@ "@cloudflare/workerd-windows-64" ] }, - "wrangler@3.58.0_esbuild@0.17.19": { - "integrity": "sha512-h9gWER7LXLnmHABDNP1p3aqXtchlvSBN8Dp22ZurnkxaLMZ3L3H1Ze1ftiFSs0VRWv0BUnz7AWIUqZmzuBY4Nw==", + "wrangler@3.86.0_esbuild@0.17.19": { + "integrity": "sha512-jL670AFVPLTILvEjAL165aYM/ZqtZCqT+e6LKiniflRZxSGKu4o/wyHeOmOM6i5kYJHSmF40E4lOZqapDtkF8g==", "dependencies": [ "@cloudflare/kv-asset-handler", + "@cloudflare/workers-shared", "@esbuild-plugins/node-globals-polyfill", "@esbuild-plugins/node-modules-polyfill", "blake3-wasm", "chokidar", + "date-fns", "esbuild", "fsevents", + "itty-time", "miniflare", "nanoid@3.3.7", "path-to-regexp", @@ -8318,6 +7973,8 @@ "resolve.exports", "selfsigned", "source-map@0.6.1", + "unenv@npm:unenv-nightly@2.0.0-20241024-111401-d4156ac", + "workerd", "xxhash-wasm" ] }, @@ -8356,6 +8013,13 @@ "signal-exit@3.0.7" ] }, + "write-file-atomic@4.0.2": { + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dependencies": [ + "imurmurhash", + "signal-exit@3.0.7" + ] + }, "ws@6.2.3": { "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", "dependencies": [ @@ -8387,8 +8051,8 @@ "yallist@3.1.1": { "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, - "yaml@2.5.1": { - "integrity": "sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==" + "yaml@2.6.0": { + "integrity": "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==" }, "yargs-parser@18.1.3": { "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", @@ -8439,12 +8103,6 @@ "stacktracey" ] }, - "zod-validation-error@2.1.0_zod@3.23.8": { - "integrity": "sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==", - "dependencies": [ - "zod" - ] - }, "zod@3.23.8": { "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==" }, @@ -8484,32 +8142,32 @@ "npm:@types/node@20.13.0", "npm:@types/react-syntax-highlighter@15.5.13", "npm:autoprefixer@10.4.19", - "npm:babel-plugin-react-compiler@0.0.0-experimental-487cb0e-20240529", + "npm:babel-plugin-react-compiler@19.0.0-beta-63b359f-20241101", "npm:class-variance-authority@0.7.0", "npm:clsx@2.1.1", "npm:date-fns@4.1.0", "npm:embla-carousel-autoplay@8.3.0", "npm:embla-carousel-react@8.3.0", - "npm:eslint-config-next@14.2.3", + "npm:eslint-config-next@15.0.3", "npm:eslint-config-prettier@9.1.0", - "npm:eslint@8.57.0", + "npm:eslint@9.14.0", "npm:github-slugger@2.0.0", "npm:glob@10.4.3", "npm:gray-matter@4.0.3", - "npm:jotai@2.8.4", + "npm:jotai@2.10.1", "npm:lodash.throttle@4.1.1", "npm:mdast-util-to-string@4.0.0", - "npm:next-intl@3.14.1", + "npm:next-intl@3.25.0", "npm:next-sitemap@4.2.3", "npm:next-themes@0.3.0", - "npm:next@15.0.0-canary.2", + "npm:next@15.0.3", "npm:postcss@8.4.38", "npm:prettier-plugin-tailwindcss@0.6.1", - "npm:prettier@3.2.5", - "npm:react-dom@19.0.0-rc-f994737d14-20240522", + "npm:prettier@3.3.3", + "npm:react-dom@19.0.0-rc-66855b96-20241106", "npm:react-markdown@9.0.1", - "npm:react-syntax-highlighter@15.5.0", - "npm:react@19.0.0-rc-f994737d14-20240522", + "npm:react-syntax-highlighter@15.6.1", + "npm:react@19.0.0-rc-66855b96-20241106", "npm:remark-gfm@4.0.0", "npm:remark-math@6.0.0", "npm:remark-slug@7.0.1", @@ -8518,12 +8176,12 @@ "npm:tailwind-scrollbar@3.1.0", "npm:tailwindcss-animate@1.0.7", "npm:tailwindcss@3.4.3", - "npm:types-react-dom@19.0.0-rc.0", - "npm:types-react@19.0.0-rc.0", - "npm:typescript@5.4.5", + "npm:types-react-dom@19.0.0-rc.1", + "npm:types-react@19.0.0-rc.1", + "npm:typescript@5.6.3", "npm:unified@11.0.5", "npm:unist-util-visit@5.0.0", - "npm:wrangler@3.58.0" + "npm:wrangler@3.86.0" ] } } diff --git a/package.json b/package.json index 3606d00..a6faffb 100644 --- a/package.json +++ b/package.json @@ -4,11 +4,11 @@ "author": "ELSOUL LABO B.V.", "license": "Apache-2.0", "scripts": { - "dev": "next dev -p 4242", - "build": "next build", - "postbuild": "next-sitemap", - "start": "next start", - "lint": "next lint", + "dev": "npx next dev -p 4242", + "build": "npx next build", + "postbuild": "npx next-sitemap", + "start": "npx next start", + "lint": "npx next lint", "preview": "npm run build && npx wrangler pages dev ./out", "deploy": "npm run build && npx wrangler pages deploy" }, @@ -43,16 +43,16 @@ "embla-carousel-autoplay": "8.3.0", "embla-carousel-react": "8.3.0", "github-slugger": "2.0.0", - "jotai": "2.8.4", + "jotai": "2.10.1", "lodash.throttle": "4.1.1", "mdast-util-to-string": "4.0.0", - "next": "15.0.0-canary.2", - "next-intl": "3.14.1", + "next": "15.0.3", + "next-intl": "3.25.0", "next-themes": "0.3.0", - "react": "19.0.0-rc-f994737d14-20240522", - "react-dom": "19.0.0-rc-f994737d14-20240522", + "react": "19.0.0-rc-66855b96-20241106", + "react-dom": "19.0.0-rc-66855b96-20241106", "react-markdown": "9.0.1", - "react-syntax-highlighter": "15.5.0", + "react-syntax-highlighter": "15.6.1", "remark": "15.0.1", "remark-gfm": "4.0.0", "remark-math": "6.0.0", @@ -63,26 +63,26 @@ "@tailwindcss/typography": "0.5.14", "@types/lodash.throttle": "4.1.9", "@types/node": "20.13.0", - "@types/react": "npm:types-react@19.0.0-rc.0", - "@types/react-dom": "npm:types-react-dom@19.0.0-rc.0", + "@types/react": "npm:types-react@19.0.0-rc.1", + "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1", "@types/react-syntax-highlighter": "15.5.13", "autoprefixer": "10.4.19", - "babel-plugin-react-compiler": "0.0.0-experimental-487cb0e-20240529", - "eslint": "8.57.0", - "eslint-config-next": "14.2.3", + "babel-plugin-react-compiler": "19.0.0-beta-63b359f-20241101", + "eslint": "9.14.0", + "eslint-config-next": "15.0.3", "eslint-config-prettier": "9.1.0", "glob": "10.4.3", "gray-matter": "4.0.3", "next-sitemap": "4.2.3", "postcss": "8.4.38", - "prettier": "3.2.5", + "prettier": "3.3.3", "prettier-plugin-tailwindcss": "0.6.1", "tailwind-merge": "2.3.0", "tailwind-scrollbar": "3.1.0", "tailwindcss": "3.4.3", "tailwindcss-animate": "1.0.7", - "typescript": "5.4.5", + "typescript": "5.6.3", "unified": "11.0.5", - "wrangler": "3.58.0" + "wrangler": "3.86.0" } } diff --git a/src/app/[locale]/(default)/(home)/HomeHeroRow.tsx b/src/app/[locale]/(default)/(home)/HomeHeroRow.tsx index 1fb102c..2c3dda6 100644 --- a/src/app/[locale]/(default)/(home)/HomeHeroRow.tsx +++ b/src/app/[locale]/(default)/(home)/HomeHeroRow.tsx @@ -24,7 +24,7 @@ import appInfo from '@appInfo' import { mainShardGradation } from '@/lib/decoration' import { cn } from '@/lib/utils' -import { Link } from '@/navigation' +import { Link } from '@/i18n/routing' import { useLocale, useTranslations } from 'next-intl' import Image from 'next/image' import { useTheme } from '@/hooks/utils/useTheme' diff --git a/src/app/[locale]/(default)/(home)/page.tsx b/src/app/[locale]/(default)/(home)/page.tsx index 6a42a79..79db55b 100644 --- a/src/app/[locale]/(default)/(home)/page.tsx +++ b/src/app/[locale]/(default)/(home)/page.tsx @@ -1,8 +1,7 @@ -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import { getDataForPageByFilename, PageProps } from '@/lib/pages' import { getArticleForIndex } from '@/lib/articles' import ArticleIndex from '@/components/articles/ArticleIndex' -import { useTranslations } from 'next-intl' import HomeHeroRow from './HomeHeroRow' import CTARow from '@/components/rows/CTARow' import ProductsSlideRow from '@/components/rows/ProductsSlideRow' @@ -10,14 +9,14 @@ import ProductsSlideRow from '@/components/rows/ProductsSlideRow' const { generateMetadata } = getDataForPageByFilename(__filename) export { generateMetadata } -export default function HomePage({ params: { locale } }: PageProps) { - unstable_setRequestLocale(locale) - const t = useTranslations() +export default async function HomePage({ params }: PageProps) { + const { locale } = await params + setRequestLocale(locale) const newsData = getArticleForIndex( 'news', ['title', 'thumbnail', 'date'], - locale, + locale ) return ( @@ -25,9 +24,6 @@ export default function HomePage({ params: { locale } }: PageProps) { -

- {t('news.latestNews')} -

) diff --git a/src/app/[locale]/(default)/DefaultFooter.tsx b/src/app/[locale]/(default)/DefaultFooter.tsx index a8bbdca..ab1d93e 100644 --- a/src/app/[locale]/(default)/DefaultFooter.tsx +++ b/src/app/[locale]/(default)/DefaultFooter.tsx @@ -5,13 +5,13 @@ import LogoHorizontalLink from '@/components/common/LogoHorizontalLink' import { DiscordIconLink, GithubIconLink, - TwitterIconLink, + TwitterIconLink } from '@/components/common/icons' import { LanguageToggle } from '@/components/config/LanguageToggle' import { ModeToggle } from '@/components/config/ModeToggle' import { defaultFooterNav } from './defaultNavs' -import { Link, usePathname } from '@/navigation' +import { Link, usePathname } from '@/i18n/routing' import { cn } from '@/lib/utils' import { useTranslations } from 'next-intl' import GreenHostingBadge from '@/components/common/GreenHostingBadge' @@ -42,7 +42,7 @@ export default function DefaultFooter() { isActivePath(navItem.path) ? 'text-blue-500 dark:text-blue-300' : 'text-zinc-500 dark:text-zinc-300', - 'flex items-center gap-4 py-2 text-sm hover:opacity-70', + 'flex items-center gap-4 py-2 text-sm hover:opacity-70' )} > {t(navItem.label)} @@ -54,7 +54,7 @@ export default function DefaultFooter() { href={'https://erpc.validators.solutions/'} className={cn( 'text-zinc-500 dark:text-zinc-300', - 'flex items-center gap-4 py-2 text-sm hover:opacity-70', + 'flex items-center gap-4 py-2 text-sm hover:opacity-70' )} target="_blank" rel="noopener noreferrer" diff --git a/src/app/[locale]/(default)/DefaultHeader.tsx b/src/app/[locale]/(default)/DefaultHeader.tsx index f457fcf..0cf9f83 100644 --- a/src/app/[locale]/(default)/DefaultHeader.tsx +++ b/src/app/[locale]/(default)/DefaultHeader.tsx @@ -3,14 +3,14 @@ import LogoHorizontalLink from '@/components/common/LogoHorizontalLink' import DefaultModalNav from './DefaultModalNav' import { defaultHeaderNav } from './defaultNavs' -import { Link, usePathname } from '@/navigation' +import { Link, usePathname } from '@/i18n/routing' import { cn } from '@/lib/utils' import { useTranslations } from 'next-intl' import { useShowHeader } from '@/hooks/utils/useShowHeader' import { DiscordIconLink, GithubIconLink, - TwitterIconLink, + TwitterIconLink } from '@/components/common/icons' export default function DefaultHeader() { @@ -24,7 +24,7 @@ export default function DefaultHeader() {
@@ -38,7 +38,7 @@ export default function DefaultHeader() { isActivePath(navItem.path) ? 'text-blue-500 dark:text-blue-300' : 'text-zinc-500 dark:text-zinc-300', - 'flex items-center gap-4 text-sm hover:opacity-70', + 'flex items-center gap-4 text-sm hover:opacity-70' )} > {t(navItem.label)} diff --git a/src/app/[locale]/(default)/DefaultModalNav.tsx b/src/app/[locale]/(default)/DefaultModalNav.tsx index 6f20254..a8844a1 100644 --- a/src/app/[locale]/(default)/DefaultModalNav.tsx +++ b/src/app/[locale]/(default)/DefaultModalNav.tsx @@ -2,7 +2,7 @@ import { HamburgerMenuIcon } from '@radix-ui/react-icons' import { Button } from '@/components/ui/button' -import { Link, usePathname } from '@/navigation' +import { Link, usePathname } from '@/i18n/routing' import appInfo from '@appInfo' import { Sheet, SheetContent, SheetTrigger } from '@/components/ui/sheet' @@ -14,7 +14,7 @@ import { useState } from 'react' import { DiscordIconLink, GithubIconLink, - TwitterIconLink, + TwitterIconLink } from '@/components/common/icons' import { defaultHeaderNav } from './defaultNavs' @@ -56,7 +56,7 @@ export default function DefaultModalNav() { isActivePath(navItem.path) ? 'text-blue-500 dark:text-blue-300' : 'text-zinc-500 dark:text-zinc-300', - 'mx-[-0.65rem] flex items-center gap-4 px-3 py-2 text-sm hover:opacity-70', + 'mx-[-0.65rem] flex items-center gap-4 px-3 py-2 text-sm hover:opacity-70' )} onClick={() => setOpen(false)} > diff --git a/src/app/[locale]/(default)/blinks/BlinksHeroRow.tsx b/src/app/[locale]/(default)/blinks/BlinksHeroRow.tsx index 3c259fc..7566840 100644 --- a/src/app/[locale]/(default)/blinks/BlinksHeroRow.tsx +++ b/src/app/[locale]/(default)/blinks/BlinksHeroRow.tsx @@ -11,7 +11,7 @@ import { cn } from '@/lib/utils' import { useLocale, useTranslations } from 'next-intl' import Image from 'next/image' import { useTheme } from '@/hooks/utils/useTheme' -import { Link } from '@/navigation' +import { Link } from '@/i18n/routing' const logos = [ { diff --git a/src/app/[locale]/(default)/blinks/DirectStakingRow.tsx b/src/app/[locale]/(default)/blinks/DirectStakingRow.tsx index 4262cec..68f1f5f 100644 --- a/src/app/[locale]/(default)/blinks/DirectStakingRow.tsx +++ b/src/app/[locale]/(default)/blinks/DirectStakingRow.tsx @@ -7,7 +7,7 @@ import { } from '@/assets/img' import { mainShardGradation } from '@/lib/decoration' import { cn } from '@/lib/utils' -import { Link } from '@/navigation' +import { Link } from '@/i18n/routing' import { useLocale, useTranslations } from 'next-intl' import Image from 'next/image' import { useTheme } from '@/hooks/utils/useTheme' diff --git a/src/app/[locale]/(default)/blinks/HavingLiquidityRow.tsx b/src/app/[locale]/(default)/blinks/HavingLiquidityRow.tsx index dfc1370..2dd8c9f 100644 --- a/src/app/[locale]/(default)/blinks/HavingLiquidityRow.tsx +++ b/src/app/[locale]/(default)/blinks/HavingLiquidityRow.tsx @@ -3,7 +3,7 @@ import { cn } from '@/lib/utils' import { useTranslations, useLocale } from 'next-intl' import { HavingLiquidityImg } from '@/assets/img' import { Button } from '@/components/ui/button' -import { Link } from '@/navigation' +import { Link } from '@/i18n/routing' import Image from 'next/image' export default function HavingLiquidityRow() { diff --git a/src/app/[locale]/(default)/blinks/StakingHeroRow.tsx b/src/app/[locale]/(default)/blinks/StakingHeroRow.tsx index b885cd3..27e18e0 100644 --- a/src/app/[locale]/(default)/blinks/StakingHeroRow.tsx +++ b/src/app/[locale]/(default)/blinks/StakingHeroRow.tsx @@ -8,7 +8,7 @@ import { import { Button } from '@/components/ui/button' import { mainShardGradation } from '@/lib/decoration' import { cn } from '@/lib/utils' -import { Link } from '@/navigation' +import { Link } from '@/i18n/routing' import { useLocale, useTranslations } from 'next-intl' import Image from 'next/image' import { DEFAULT_PATHS } from '../defaultNavs' diff --git a/src/app/[locale]/(default)/blinks/Why1SOLnot1elSOLRow.tsx b/src/app/[locale]/(default)/blinks/Why1SOLnot1elSOLRow.tsx index 6abecca..8d9f93b 100644 --- a/src/app/[locale]/(default)/blinks/Why1SOLnot1elSOLRow.tsx +++ b/src/app/[locale]/(default)/blinks/Why1SOLnot1elSOLRow.tsx @@ -2,7 +2,7 @@ import { Why1SOLnot1elSOLImg } from '@/assets/img' import { Button } from '@/components/ui/button' import { mainShardGradation } from '@/lib/decoration' import { cn } from '@/lib/utils' -import { Link } from '@/navigation' +import { Link } from '@/i18n/routing' import { useTranslations } from 'next-intl' import Image from 'next/image' diff --git a/src/app/[locale]/(default)/blinks/page.tsx b/src/app/[locale]/(default)/blinks/page.tsx index 00384c0..5f50d91 100644 --- a/src/app/[locale]/(default)/blinks/page.tsx +++ b/src/app/[locale]/(default)/blinks/page.tsx @@ -1,12 +1,9 @@ -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import { getDataForPageByFilename, PageProps } from '@/lib/pages' -import { useTranslations } from 'next-intl' import CTARow from '@/components/rows/CTARow' import ProductsSlideRow from '@/components/rows/ProductsSlideRow' import BlinksHeroRow from './BlinksHeroRow' -import { cn } from '@/lib/utils' -import { mainShardGradation } from '@/lib/decoration' import Why1SOLnot1elSOLRow from './Why1SOLnot1elSOLRow' import HavingLiquidityRow from './HavingLiquidityRow' import StakingHeroRow from './StakingHeroRow' @@ -18,24 +15,13 @@ import VLDAirdropRow from '@/components/rows/VLDAirdropRow' const { generateMetadata } = getDataForPageByFilename(__filename) export { generateMetadata } -export default function BlinksPage({ params: { locale } }: PageProps) { - unstable_setRequestLocale(locale) - const t = useTranslations() +export default async function BlinksPage({ params }: PageProps) { + const { locale } = await params + setRequestLocale(locale) return ( <> -
-

- Blinks Examples -

-
diff --git a/src/app/[locale]/(default)/doc/DocMenu.tsx b/src/app/[locale]/(default)/doc/DocMenu.tsx index 81646d6..efade7a 100644 --- a/src/app/[locale]/(default)/doc/DocMenu.tsx +++ b/src/app/[locale]/(default)/doc/DocMenu.tsx @@ -1,6 +1,6 @@ 'use client' import { useState } from 'react' -import { Link, usePathname } from '@/navigation' +import { Link, usePathname } from '@/i18n/routing' import { docMenuData } from './docNavs' import { Item, Section } from '@/lib/articles' import { ChevronRightIcon, ChevronDownIcon } from '@radix-ui/react-icons' @@ -33,7 +33,7 @@ const DocMenuSection = ({ section }: DocMenuSectionProps) => { {t(section.title)} @@ -86,7 +86,7 @@ const DocMenuItem = ({ item }: DocMenuItemProps) => { isActivePath(item.route as string) ? 'text-blue-500 dark:text-blue-300' : 'text-zinc-500 dark:text-zinc-300', - 'flex-1 text-sm', + 'flex-1 text-sm' )} > {t(item.title)} @@ -105,7 +105,7 @@ const DocMenuItem = ({ item }: DocMenuItemProps) => { isActivePath(subItem.route) ? 'text-blue-500 dark:text-blue-300' : 'text-zinc-400 dark:text-zinc-400', - 'w-full py-2 text-sm hover:opacity-70', + 'w-full py-2 text-sm hover:opacity-70' )} > {t(subItem.title)} diff --git a/src/app/[locale]/(default)/doc/DocMenuModalNav.tsx b/src/app/[locale]/(default)/doc/DocMenuModalNav.tsx index 6483410..9f2bfe5 100644 --- a/src/app/[locale]/(default)/doc/DocMenuModalNav.tsx +++ b/src/app/[locale]/(default)/doc/DocMenuModalNav.tsx @@ -2,7 +2,7 @@ import { ListBulletIcon } from '@radix-ui/react-icons' import { Button } from '@/components/ui/button' -import { usePathname } from '@/navigation' +import { usePathname } from '@/i18n/routing' import { Sheet, SheetContent, SheetTrigger } from '@/components/ui/sheet' import LogoHorizontalLink from '@/components/common/LogoHorizontalLink' @@ -12,7 +12,7 @@ import { useEffect, useState } from 'react' import { DiscordIconLink, GithubIconLink, - TwitterIconLink, + TwitterIconLink } from '@/components/common/icons' import DocMenu from './DocMenu' diff --git a/src/app/[locale]/(default)/doc/[...slug]/page.tsx b/src/app/[locale]/(default)/doc/[...slug]/page.tsx index fea2d7d..471f884 100644 --- a/src/app/[locale]/(default)/doc/[...slug]/page.tsx +++ b/src/app/[locale]/(default)/doc/[...slug]/page.tsx @@ -1,43 +1,42 @@ -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import { ArticlePageProps, getDataForArticlePageByFilename, getArticleBySlug, - getAllRoutes, + getAllRoutes } from '@/lib/articles' import ScrollSyncToc from '@/components/articles/ScrollSyncToc' import { cn } from '@/lib/utils' import ArticleContents from '@/components/articles/ArticleContents' import DocMobileHeader from '../DocMobileHeader' import { docMenuData } from '../docNavs' -import { usePagerData } from '@/hooks/articles/usePagerData' import ArticlePager from '@/components/articles/ArticlePager' +import { getPagerData } from '@/lib/getPagerData' const { groupDir, generateMetadata, generateStaticParams } = getDataForArticlePageByFilename(__filename) export { generateMetadata, generateStaticParams } -export default function DocArticlePage({ - params: { locale, slug }, -}: ArticlePageProps) { - unstable_setRequestLocale(locale) +export default async function DocArticlePage({ params }: ArticlePageProps) { + const { locale, slug } = await params + setRequestLocale(locale) const articleData = getArticleBySlug( slug, ['title', 'thumbnail', 'content'], groupDir, - locale, + locale ) const allRoutes = getAllRoutes(docMenuData) const articlePaths = allRoutes.map( - (route) => `/${route.split('/').slice(2).join('/')}`, + (route) => `/${route.split('/').slice(2).join('/')}` ) - const pagerData = usePagerData({ + const pagerData = getPagerData({ slug, groupDir, locale, - articlePaths, + articlePaths }) return ( @@ -57,7 +56,7 @@ export default function DocArticlePage({
diff --git a/src/app/[locale]/(default)/doc/layout.tsx b/src/app/[locale]/(default)/doc/layout.tsx index da1ac41..df15abc 100644 --- a/src/app/[locale]/(default)/doc/layout.tsx +++ b/src/app/[locale]/(default)/doc/layout.tsx @@ -1,19 +1,17 @@ import { cn } from '@/lib/utils' -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DocMenu from './DocMenu' type Props = { children: React.ReactNode - params: { + params: Promise<{ locale: string - } + }> } -export default async function DocLayout({ - children, - params: { locale }, -}: Props) { - unstable_setRequestLocale(locale) +export default async function DocLayout({ children, params }: Props) { + const { locale } = await params + setRequestLocale(locale) return ( <> @@ -23,7 +21,7 @@ export default async function DocLayout({
diff --git a/src/app/[locale]/(default)/layout.tsx b/src/app/[locale]/(default)/layout.tsx index e432619..3109605 100644 --- a/src/app/[locale]/(default)/layout.tsx +++ b/src/app/[locale]/(default)/layout.tsx @@ -1,19 +1,17 @@ -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import DefaultHeader from './DefaultHeader' import DefaultFooter from './DefaultFooter' type Props = { children: React.ReactNode - params: { + params: Promise<{ locale: string - } + }> } -export default async function DefaultLayout({ - children, - params: { locale }, -}: Props) { - unstable_setRequestLocale(locale) +export default async function DefaultLayout({ children, params }: Props) { + const { locale } = await params + setRequestLocale(locale) return ( <> diff --git a/src/app/[locale]/(default)/legal/[...slug]/page.tsx b/src/app/[locale]/(default)/legal/[...slug]/page.tsx index ae5cddf..d7bf0f8 100644 --- a/src/app/[locale]/(default)/legal/[...slug]/page.tsx +++ b/src/app/[locale]/(default)/legal/[...slug]/page.tsx @@ -1,8 +1,8 @@ -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import { ArticlePageProps, getDataForArticlePageByFilename, - getArticleBySlug, + getArticleBySlug } from '@/lib/articles' import ScrollSyncToc from '@/components/articles/ScrollSyncToc' import ArticleContents from '@/components/articles/ArticleContents' @@ -12,16 +12,15 @@ const { groupDir, generateMetadata, generateStaticParams } = getDataForArticlePageByFilename(__filename) export { generateMetadata, generateStaticParams } -export default function LegalArticlePage({ - params: { locale, slug }, -}: ArticlePageProps) { - unstable_setRequestLocale(locale) +export default async function LegalArticlePage({ params }: ArticlePageProps) { + const { locale, slug } = await params + setRequestLocale(locale) const articleData = getArticleBySlug( slug, ['title', 'content'], groupDir, - locale, + locale ) return ( @@ -38,7 +37,7 @@ export default function LegalArticlePage({
diff --git a/src/app/[locale]/(default)/news/[...slug]/page.tsx b/src/app/[locale]/(default)/news/[...slug]/page.tsx index 0fa43f9..8af0fb2 100644 --- a/src/app/[locale]/(default)/news/[...slug]/page.tsx +++ b/src/app/[locale]/(default)/news/[...slug]/page.tsx @@ -1,9 +1,9 @@ -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import { ArticlePageProps, getDataForArticlePageByFilename, getArticleBySlug, - getArticleForIndex, + getArticleForIndex } from '@/lib/articles' import NewsMobileHeader from '../NewsMobileHeader' import ScrollSyncToc from '@/components/articles/ScrollSyncToc' @@ -11,39 +11,36 @@ import { cn } from '@/lib/utils' import ArticleContents from '@/components/articles/ArticleContents' import Image from 'next/image' import { AspectRatio } from '@/components/ui/aspect-ratio' -import { useTranslations } from 'next-intl' import ArticleIndex from '@/components/articles/ArticleIndex' -import { usePagerData } from '@/hooks/articles/usePagerData' import ArticlePager from '@/components/articles/ArticlePager' +import { getPagerData } from '@/lib/getPagerData' const { groupDir, generateMetadata, generateStaticParams, getArticlePaths } = getDataForArticlePageByFilename(__filename) export { generateMetadata, generateStaticParams } -export default function NewsArticlePage({ - params: { locale, slug }, -}: ArticlePageProps) { - unstable_setRequestLocale(locale) - const t = useTranslations() +export default async function NewsArticlePage({ params }: ArticlePageProps) { + const { locale, slug } = await params + setRequestLocale(locale) const articleData = getArticleBySlug( slug, ['title', 'category', 'thumbnail', 'date', 'content'], groupDir, - locale, + locale ) const articlesData = getArticleForIndex( groupDir, ['title', 'thumbnail', 'date'], - locale, + locale ) - const pagerData = usePagerData({ + const pagerData = getPagerData({ slug, groupDir, locale, - articlePaths: getArticlePaths(), + articlePaths: getArticlePaths() }) return ( @@ -88,7 +85,7 @@ export default function NewsArticlePage({
@@ -97,9 +94,6 @@ export default function NewsArticlePage({
-

- {t('news.latestNews')} -

diff --git a/src/app/[locale]/(default)/news/page.tsx b/src/app/[locale]/(default)/news/page.tsx index 038a6d5..2dba21b 100644 --- a/src/app/[locale]/(default)/news/page.tsx +++ b/src/app/[locale]/(default)/news/page.tsx @@ -1,6 +1,5 @@ -import { unstable_setRequestLocale } from 'next-intl/server' +import { setRequestLocale } from 'next-intl/server' import { getDataForPageByFilename, PageProps } from '@/lib/pages' -import { useTranslations } from 'next-intl' import { getArticleForIndex } from '@/lib/articles' import ArticleIndex from '@/components/articles/ArticleIndex' @@ -8,21 +7,17 @@ import ArticleIndex from '@/components/articles/ArticleIndex' const { groupDir, generateMetadata } = getDataForPageByFilename(__filename) export { generateMetadata } -export default function NewsPage({ params: { locale } }: PageProps) { - unstable_setRequestLocale(locale) - const t = useTranslations() - +export default async function NewsPage({ params }: PageProps) { + const { locale } = await params + setRequestLocale(locale) const articlesData = getArticleForIndex( groupDir, ['title', 'thumbnail', 'date'], - locale, + locale ) return ( <> -

- {t('news.title')} -

) diff --git a/src/app/[locale]/layout.tsx b/src/app/[locale]/layout.tsx index 90d8873..d7c9e96 100644 --- a/src/app/[locale]/layout.tsx +++ b/src/app/[locale]/layout.tsx @@ -1,5 +1,5 @@ import { Inter, Noto_Sans_JP } from 'next/font/google' -import { unstable_setRequestLocale, getMessages } from 'next-intl/server' +import { setRequestLocale, getMessages } from 'next-intl/server' import { NextIntlClientProvider } from 'next-intl' import '../globals.css' import '@dialectlabs/blinks/index.css' @@ -23,20 +23,18 @@ const notoSansJP = Noto_Sans_JP({ type Props = { children: React.ReactNode - params: { + params: Promise<{ locale: string - } + }> } export function generateStaticParams() { return locales.map((locale) => ({ locale })) } -export default async function LocaleLayout({ - children, - params: { locale } -}: Props) { - unstable_setRequestLocale(locale) +export default async function LocaleLayout({ children, params }: Props) { + const { locale } = await params + setRequestLocale(locale) const messages = await getMessages({ locale }) return ( diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd5cece..bb4a286 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,51 +2,52 @@ import { getTranslations } from 'next-intl/server' import { locales } from './config' import appInfo from '@appInfo' -export async function generateMetadata({ params: { locale } }: Props) { +export async function generateMetadata({ params }: Props) { + const { locale } = await params const t = await getTranslations({ locale: locale ? locale : locales[0], - namespace: 'metadata', + namespace: 'metadata' }) return { metadataBase: new URL( process.env.NODE_ENV === 'production' ? `https://${appInfo.domain}` - : 'http://localhost:4242', + : 'http://localhost:4242' ), generator: appInfo.copyright, applicationName: t('appTitle'), keywords: t('keywords'), title: { template: `%s | ${t('appTitle')}`, - default: `${t('defaultTitle')} | ${t('appTitle')}`, + default: `${t('defaultTitle')} | ${t('appTitle')}` }, description: t('defaultDescription'), openGraph: { locale, - type: 'website', + type: 'website' }, twitter: { card: 'summary_large_image', creator: appInfo.twitterId, - site: appInfo.twitterId, + site: appInfo.twitterId }, robots: { index: true, - follow: true, - }, + follow: true + } } } type Props = { children: React.ReactNode - params: { + params: Promise<{ locale: string - } + }> } export default function RootLayout({ - children, + children }: Readonly<{ children: React.ReactNode }>) { diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 5555847..6643327 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,3 +1,5 @@ +import Link from 'next/link' + export default function NotFound() { return ( <> @@ -8,7 +10,7 @@ export default function NotFound() {