[
{
"instruction": "Describe the contents of the file components.json.",
"input": "",
"output": "{\n \"$schema\": \"https://ui.shadcn.com/schema.json\",\n \"style\": \"new-york\",\n \"rsc\": true,\n \"tsx\": true,\n \"tailwind\": {\n \"config\": \"tailwind.config.ts\",\n \"css\": \"app/globals.css\",\n \"baseColor\": \"slate\",\n \"cssVariables\": true,\n \"prefix\": \"\"\n },\n \"aliases\": {\n \"components\": \"@/components\",\n \"utils\": \"@/lib/utils\"\n }\n}"
},
{
"instruction": "Describe the contents of the file next.config.mjs.",
"input": "",
"output": "/** @type {import('next').NextConfig} */\nconst nextConfig = {\n images: {\n remotePatterns: [\n {\n protocol: 'https',\n hostname: 'coin-images.coingecko.com',\n port: '',\n pathname: '/**',\n },\n {\n protocol:'https',\n hostname:\"lh3.googleusercontent.com\",\n port: '',\n pathname: '/**',\n }\n ],\n },\n};\n\nexport default nextConfig;\n"
},
{
"instruction": "Describe the contents of the file next-env.d.ts.",
"input": "",
"output": "/// \n/// \n\n// NOTE: This file should not be edited\n// see https://nextjs.org/docs/basic-features/typescript for more information.\n"
},
{
"instruction": "Describe the contents of the file tailwind.config.ts.",
"input": "",
"output": "import type { Config } from \"tailwindcss\"\n\nconst config = {\n darkMode: [\"class\"],\n content: [\n './pages/**/*.{ts,tsx}',\n './components/**/*.{ts,tsx}',\n './app/**/*.{ts,tsx}',\n './src/**/*.{ts,tsx}',\n\t],\n prefix: \"\",\n theme: {\n container: {\n center: true,\n padding: \"2rem\",\n screens: {\n \"2xl\": \"1400px\",\n },\n },\n extend: {\n colors: {\n border: \"hsl(var(--border))\",\n input: \"hsl(var(--input))\",\n ring: \"hsl(var(--ring))\",\n background: \"hsl(var(--background))\",\n foreground: \"hsl(var(--foreground))\",\n primary: {\n DEFAULT: \"hsl(var(--primary))\",\n foreground: \"hsl(var(--primary-foreground))\",\n },\n secondary: {\n DEFAULT: \"hsl(var(--secondary))\",\n foreground: \"hsl(var(--secondary-foreground))\",\n },\n destructive: {\n DEFAULT: \"hsl(var(--destructive))\",\n foreground: \"hsl(var(--destructive-foreground))\",\n },\n muted: {\n DEFAULT: \"hsl(var(--muted))\",\n foreground: \"hsl(var(--muted-foreground))\",\n },\n accent: {\n DEFAULT: \"hsl(var(--accent))\",\n foreground: \"hsl(var(--accent-foreground))\",\n },\n popover: {\n DEFAULT: \"hsl(var(--popover))\",\n foreground: \"hsl(var(--popover-foreground))\",\n },\n card: {\n DEFAULT: \"hsl(var(--card))\",\n foreground: \"hsl(var(--card-foreground))\",\n },\n },\n borderRadius: {\n lg: \"var(--radius)\",\n md: \"calc(var(--radius) - 2px)\",\n sm: \"calc(var(--radius) - 4px)\",\n },\n keyframes: {\n \"accordion-down\": {\n from: { height: \"0\" },\n to: { height: \"var(--radix-accordion-content-height)\" },\n },\n \"accordion-up\": {\n from: { height: \"var(--radix-accordion-content-height)\" },\n to: { height: \"0\" },\n },\n },\n animation: {\n \"accordion-down\": \"accordion-down 0.2s ease-out\",\n \"accordion-up\": \"accordion-up 0.2s ease-out\",\n },\n },\n },\n plugins: [require(\"tailwindcss-animate\")],\n} satisfies Config\n\nexport default config"
},
{
"instruction": "Describe the contents of the file .eslintrc.json.",
"input": "",
"output": "{\n \"extends\": \"next/core-web-vitals\"\n}\n"
},
{
"instruction": "Describe the contents of the file package.json.",
"input": "",
"output": "{\n \"name\": \"binance-frontend\",\n \"version\": \"0.1.0\",\n \"private\": true,\n \"scripts\": {\n \"dev\": \"next dev\",\n \"build\": \"npx prisma generate && next build\",\n \"start\": \"next start \",\n \"lint\": \"next lint\"\n },\n \"dependencies\": {\n \"@hookform/resolvers\": \"^3.9.0\",\n \"@next-auth/mongodb-adapter\": \"^1.1.3\",\n \"@next-auth/prisma-adapter\": \"^1.0.7\",\n \"@prisma/client\": \"^5.19.1\",\n \"@radix-ui/react-avatar\": \"^1.1.0\",\n \"@radix-ui/react-dialog\": \"^1.1.1\",\n \"@radix-ui/react-dropdown-menu\": \"^2.1.1\",\n \"@radix-ui/react-icons\": \"^1.3.0\",\n \"@radix-ui/react-label\": \"^2.1.0\",\n \"@radix-ui/react-scroll-area\": \"^1.1.0\",\n \"@radix-ui/react-slot\": \"^1.1.0\",\n \"@radix-ui/react-switch\": \"^1.1.0\",\n \"@radix-ui/react-tabs\": \"^1.1.0\",\n \"@radix-ui/react-toast\": \"^1.2.1\",\n \"@reduxjs/toolkit\": \"^2.2.7\",\n \"@stripe/react-stripe-js\": \"^2.8.0\",\n \"@tanstack/react-query\": \"^5.51.11\",\n \"@types/bcrypt\": \"^5.0.2\",\n \"@types/bcryptjs\": \"^2.4.6\",\n \"autoprefixer\": \"^10.4.19\",\n \"axios\": \"^1.7.2\",\n \"bcrypt\": \"^5.1.1\",\n \"bcryptjs\": \"^2.4.3\",\n \"class-variance-authority\": \"^0.7.0\",\n \"clsx\": \"^2.1.1\",\n \"framer-motion\": \"^11.3.31\",\n \"lightweight-charts\": \"^4.2.0\",\n \"lucide-react\": \"^0.407.0\",\n \"mongodb\": \"^5.9.2\",\n \"next\": \"14.2.4\",\n \"next-auth\": \"^4.24.7\",\n \"next-themes\": \"^0.3.0\",\n \"nextjs-toploader\": \"^1.6.12\",\n \"razorpay\": \"^2.9.4\",\n \"react\": \"^18\",\n \"react-dom\": \"^18\",\n \"react-draggable\": \"^4.4.6\",\n \"react-hook-form\": \"^7.53.0\",\n \"react-icons\": \"^5.3.0\",\n \"react-query\": \"^3.39.3\",\n \"react-razorpay\": \"^3.0.1\",\n \"react-redux\": \"^9.1.2\",\n \"react-use-websocket\": \"^4.8.1\",\n \"recharts\": \"^2.12.7\",\n \"sharp\": \"^0.33.5\",\n \"short-uuid\": \"^5.2.0\",\n \"stripe\": \"^16.12.0\",\n \"tailwind-merge\": \"^2.4.0\",\n \"tailwindcss-animate\": \"^1.0.7\",\n \"yup\": \"^1.4.0\",\n \"zod\": \"^3.23.8\"\n },\n \"devDependencies\": {\n \"@types/node\": \"^20\",\n \"@types/react\": \"^18\",\n \"@types/react-dom\": \"^18\",\n \"eslint\": \"^8\",\n \"eslint-config-next\": \"14.2.4\",\n \"postcss\": \"^8.4.39\",\n \"prisma\": \"^5.20.0\",\n \"tailwindcss\": \"^3.4.4\",\n \"typescript\": \"^5\"\n }\n}\n"
},
{
"instruction": "Describe the contents of the file Dockerfile.",
"input": "",
"output": "FROM node:16-alpine\n\nWORKDIR /app \n\nCOPY package*.json ./\n\nRUN npm install\n\nCOPY . .\n\nWORKDIR /app/db \n\nRUN npx prisma generate\n\nWORKDIR /app\n\nRUN npm run build\n\nEXPOSE 3000\n\nCMD [ \"npm\" , \"start\" ]"
},
{
"instruction": "Describe the contents of the file tsconfig.json.",
"input": "",
"output": "{\n \"compilerOptions\": {\n \"lib\": [\"dom\", \"dom.iterable\", \"esnext\"],\n \"allowJs\": true,\n \"skipLibCheck\": true,\n \"strict\": true,\n \"noEmit\": true,\n \"esModuleInterop\": true,\n \"module\": \"esnext\",\n \"moduleResolution\": \"bundler\",\n \"resolveJsonModule\": true,\n \"isolatedModules\": true,\n \"jsx\": \"preserve\",\n \"incremental\": true,\n \"plugins\": [\n {\n \"name\": \"next\"\n }\n ],\n \"paths\": {\n \"@/*\": [\"./*\"]\n }\n },\n \"include\": [\"next-env.d.ts\", \"**/*.ts\", \"**/*.tsx\", \".next/types/**/*.ts\"],\n \"exclude\": [\"node_modules\"]\n}\n"
},
{
"instruction": "Describe the contents of the file .env.",
"input": "",
"output": "DATABASE_URL=postgres://avnadmin:AVNS_Z4AxBvGySZYS7c-SVVh@pg-2f95c8c3-saimanideepnaidu-669c.l.aivencloud.com:13599/defaultdb?sslmode=require \n\n#Razorpay\nRAZORPAY_KEY_ID =rzp_live_ysF8drCMbc7We6\nRAZORPAY_KEY_SECRET=kvVknh4VWlU7PBPI9iVQB3Ar\n\n#Google\nGOOGLE_CLIENT_SECRET=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\nGOOGLE_CLIENT_ID=379822767499-rq3ru81t168j3p9malijnqt0n96c69ea.apps.googleusercontent.com\n\n#Next_auth\nNEXTAUTH_SECRET=mysupersecret\nNEXTAUTH_URL=http://localhost:3000\n\n#Github \nGITHUB_ID=Iv23lixYej7JCFdyTF2c\nGITHUB_SECRET=7bd1a559e5451da40620c795efce2aa0a2933731"
},
{
"instruction": "Describe the contents of the file postcss.config.mjs.",
"input": "",
"output": "/** @type {import('postcss-load-config').Config} */\nconst config = {\n plugins: {\n tailwindcss: {},\n },\n};\n\nexport default config;\n"
},
{
"instruction": "Describe the contents of the file docker-compose.yml.",
"input": "",
"output": "version: '3.8'\n\nservices:\n app:\n image: node:14\n volumes:\n - .:/app\n working_dir: /app\n command: npm run dev\n ports:\n - 3000:3000\n depends_on:\n - db\n\n db:\n image: postgres:13\n volumes:\n - ./db:/var/lib/postgresql/data\n environment:\n - POSTGRES_USER=postgres\n - POSTGRES_PASSWORD=postgres\n - POSTGRES_DB=postgres\n ports:\n - 5432:5432\n\n\n\n"
},
{
"instruction": "Describe the contents of the file package-lock.json.",
"input": "",
"output": "{\n \"name\": \"binance-frontend\",\n \"version\": \"0.1.0\",\n \"lockfileVersion\": 3,\n \"requires\": true,\n \"packages\": {\n \"\": {\n \"name\": \"binance-frontend\",\n \"version\": \"0.1.0\",\n \"dependencies\": {\n \"@hookform/resolvers\": \"^3.9.0\",\n \"@next-auth/mongodb-adapter\": \"^1.1.3\",\n \"@next-auth/prisma-adapter\": \"^1.0.7\",\n \"@prisma/client\": \"^5.19.1\",\n \"@radix-ui/react-avatar\": \"^1.1.0\",\n \"@radix-ui/react-dialog\": \"^1.1.1\",\n \"@radix-ui/react-dropdown-menu\": \"^2.1.1\",\n \"@radix-ui/react-icons\": \"^1.3.0\",\n \"@radix-ui/react-label\": \"^2.1.0\",\n \"@radix-ui/react-scroll-area\": \"^1.1.0\",\n \"@radix-ui/react-slot\": \"^1.1.0\",\n \"@radix-ui/react-switch\": \"^1.1.0\",\n \"@radix-ui/react-tabs\": \"^1.1.0\",\n \"@radix-ui/react-toast\": \"^1.2.1\",\n \"@reduxjs/toolkit\": \"^2.2.7\",\n \"@stripe/react-stripe-js\": \"^2.8.0\",\n \"@tanstack/react-query\": \"^5.51.11\",\n \"@types/bcrypt\": \"^5.0.2\",\n \"@types/bcryptjs\": \"^2.4.6\",\n \"autoprefixer\": \"^10.4.19\",\n \"axios\": \"^1.7.2\",\n \"bcrypt\": \"^5.1.1\",\n \"bcryptjs\": \"^2.4.3\",\n \"class-variance-authority\": \"^0.7.0\",\n \"clsx\": \"^2.1.1\",\n \"framer-motion\": \"^11.3.31\",\n \"lightweight-charts\": \"^4.2.0\",\n \"lucide-react\": \"^0.407.0\",\n \"mongodb\": \"^5.9.2\",\n \"next\": \"14.2.4\",\n \"next-auth\": \"^4.24.7\",\n \"next-themes\": \"^0.3.0\",\n \"nextjs-toploader\": \"^1.6.12\",\n \"razorpay\": \"^2.9.4\",\n \"react\": \"^18\",\n \"react-dom\": \"^18\",\n \"react-draggable\": \"^4.4.6\",\n \"react-hook-form\": \"^7.53.0\",\n \"react-icons\": \"^5.3.0\",\n \"react-query\": \"^3.39.3\",\n \"react-razorpay\": \"^3.0.1\",\n \"react-redux\": \"^9.1.2\",\n \"react-use-websocket\": \"^4.8.1\",\n \"recharts\": \"^2.12.7\",\n \"sharp\": \"^0.33.5\",\n \"short-uuid\": \"^5.2.0\",\n \"stripe\": \"^16.12.0\",\n \"tailwind-merge\": \"^2.4.0\",\n \"tailwindcss-animate\": \"^1.0.7\",\n \"yup\": \"^1.4.0\",\n \"zod\": \"^3.23.8\"\n },\n \"devDependencies\": {\n \"@types/node\": \"^20\",\n \"@types/react\": \"^18\",\n \"@types/react-dom\": \"^18\",\n \"eslint\": \"^8\",\n \"eslint-config-next\": \"14.2.4\",\n \"postcss\": \"^8.4.39\",\n \"prisma\": \"^5.20.0\",\n \"tailwindcss\": \"^3.4.4\",\n \"typescript\": \"^5\"\n }\n },\n \"node_modules/@alloc/quick-lru\": {\n \"version\": \"5.2.0\",\n \"resolved\": \"https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz\",\n \"integrity\": \"sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==\",\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/@babel/runtime\": {\n \"version\": \"7.24.8\",\n \"resolved\": \"https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.8.tgz\",\n \"integrity\": \"sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==\",\n \"dependencies\": {\n \"regenerator-runtime\": \"^0.14.0\"\n },\n \"engines\": {\n \"node\": \">=6.9.0\"\n }\n },\n \"node_modules/@emnapi/runtime\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.2.0.tgz\",\n \"integrity\": \"sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==\",\n \"optional\": true,\n \"dependencies\": {\n \"tslib\": \"^2.4.0\"\n }\n },\n \"node_modules/@eslint-community/eslint-utils\": {\n \"version\": \"4.4.0\",\n \"resolved\": \"https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz\",\n \"integrity\": \"sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==\",\n \"dev\": true,\n \"dependencies\": {\n \"eslint-visitor-keys\": \"^3.3.0\"\n },\n \"engines\": {\n \"node\": \"^12.22.0 || ^14.17.0 || >=16.0.0\"\n },\n \"peerDependencies\": {\n \"eslint\": \"^6.0.0 || ^7.0.0 || >=8.0.0\"\n }\n },\n \"node_modules/@eslint-community/regexpp\": {\n \"version\": \"4.10.1\",\n \"resolved\": \"https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.1.tgz\",\n \"integrity\": \"sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \"^12.0.0 || ^14.0.0 || >=16.0.0\"\n }\n },\n \"node_modules/@eslint/eslintrc\": {\n \"version\": \"2.1.4\",\n \"resolved\": \"https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz\",\n \"integrity\": \"sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"ajv\": \"^6.12.4\",\n \"debug\": \"^4.3.2\",\n \"espree\": \"^9.6.0\",\n \"globals\": \"^13.19.0\",\n \"ignore\": \"^5.2.0\",\n \"import-fresh\": \"^3.2.1\",\n \"js-yaml\": \"^4.1.0\",\n \"minimatch\": \"^3.1.2\",\n \"strip-json-comments\": \"^3.1.1\"\n },\n \"engines\": {\n \"node\": \"^12.22.0 || ^14.17.0 || >=16.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/eslint\"\n }\n },\n \"node_modules/@eslint/js\": {\n \"version\": \"8.57.0\",\n \"resolved\": \"https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz\",\n \"integrity\": \"sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \"^12.22.0 || ^14.17.0 || >=16.0.0\"\n }\n },\n \"node_modules/@floating-ui/core\": {\n \"version\": \"1.6.5\",\n \"resolved\": \"https://registry.npmjs.org/@floating-ui/core/-/core-1.6.5.tgz\",\n \"integrity\": \"sha512-8GrTWmoFhm5BsMZOTHeGD2/0FLKLQQHvO/ZmQga4tKempYRLz8aqJGqXVuQgisnMObq2YZ2SgkwctN1LOOxcqA==\",\n \"dependencies\": {\n \"@floating-ui/utils\": \"^0.2.5\"\n }\n },\n \"node_modules/@floating-ui/dom\": {\n \"version\": \"1.6.8\",\n \"resolved\": \"https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.8.tgz\",\n \"integrity\": \"sha512-kx62rP19VZ767Q653wsP1XZCGIirkE09E0QUGNYTM/ttbbQHqcGPdSfWFxUyyNLc/W6aoJRBajOSXhP6GXjC0Q==\",\n \"dependencies\": {\n \"@floating-ui/core\": \"^1.6.0\",\n \"@floating-ui/utils\": \"^0.2.5\"\n }\n },\n \"node_modules/@floating-ui/react-dom\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.1.tgz\",\n \"integrity\": \"sha512-4h84MJt3CHrtG18mGsXuLCHMrug49d7DFkU0RMIyshRveBeyV2hmV/pDaF2Uxtu8kgq5r46llp5E5FQiR0K2Yg==\",\n \"dependencies\": {\n \"@floating-ui/dom\": \"^1.0.0\"\n },\n \"peerDependencies\": {\n \"react\": \">=16.8.0\",\n \"react-dom\": \">=16.8.0\"\n }\n },\n \"node_modules/@floating-ui/utils\": {\n \"version\": \"0.2.5\",\n \"resolved\": \"https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.5.tgz\",\n \"integrity\": \"sha512-sTcG+QZ6fdEUObICavU+aB3Mp8HY4n14wYHdxK4fXjPmv3PXZZeY5RaguJmGyeH/CJQhX3fqKUtS4qc1LoHwhQ==\"\n },\n \"node_modules/@hookform/resolvers\": {\n \"version\": \"3.9.0\",\n \"resolved\": \"https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.9.0.tgz\",\n \"integrity\": \"sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg==\",\n \"peerDependencies\": {\n \"react-hook-form\": \"^7.0.0\"\n }\n },\n \"node_modules/@humanwhocodes/config-array\": {\n \"version\": \"0.11.14\",\n \"resolved\": \"https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz\",\n \"integrity\": \"sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==\",\n \"deprecated\": \"Use @eslint/config-array instead\",\n \"dev\": true,\n \"dependencies\": {\n \"@humanwhocodes/object-schema\": \"^2.0.2\",\n \"debug\": \"^4.3.1\",\n \"minimatch\": \"^3.0.5\"\n },\n \"engines\": {\n \"node\": \">=10.10.0\"\n }\n },\n \"node_modules/@humanwhocodes/module-importer\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz\",\n \"integrity\": \"sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=12.22\"\n },\n \"funding\": {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/nzakas\"\n }\n },\n \"node_modules/@humanwhocodes/object-schema\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz\",\n \"integrity\": \"sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==\",\n \"deprecated\": \"Use @eslint/object-schema instead\",\n \"dev\": true\n },\n \"node_modules/@img/sharp-darwin-arm64\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz\",\n \"integrity\": \"sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"darwin\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n },\n \"optionalDependencies\": {\n \"@img/sharp-libvips-darwin-arm64\": \"1.0.4\"\n }\n },\n \"node_modules/@img/sharp-darwin-x64\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz\",\n \"integrity\": \"sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"darwin\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n },\n \"optionalDependencies\": {\n \"@img/sharp-libvips-darwin-x64\": \"1.0.4\"\n }\n },\n \"node_modules/@img/sharp-libvips-darwin-arm64\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz\",\n \"integrity\": \"sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"darwin\"\n ],\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-libvips-darwin-x64\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz\",\n \"integrity\": \"sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"darwin\"\n ],\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-libvips-linux-arm\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz\",\n \"integrity\": \"sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==\",\n \"cpu\": [\n \"arm\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-libvips-linux-arm64\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz\",\n \"integrity\": \"sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-libvips-linux-s390x\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz\",\n \"integrity\": \"sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==\",\n \"cpu\": [\n \"s390x\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-libvips-linux-x64\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz\",\n \"integrity\": \"sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-libvips-linuxmusl-arm64\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz\",\n \"integrity\": \"sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-libvips-linuxmusl-x64\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz\",\n \"integrity\": \"sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-linux-arm\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz\",\n \"integrity\": \"sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==\",\n \"cpu\": [\n \"arm\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n },\n \"optionalDependencies\": {\n \"@img/sharp-libvips-linux-arm\": \"1.0.5\"\n }\n },\n \"node_modules/@img/sharp-linux-arm64\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz\",\n \"integrity\": \"sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n },\n \"optionalDependencies\": {\n \"@img/sharp-libvips-linux-arm64\": \"1.0.4\"\n }\n },\n \"node_modules/@img/sharp-linux-s390x\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz\",\n \"integrity\": \"sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==\",\n \"cpu\": [\n \"s390x\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n },\n \"optionalDependencies\": {\n \"@img/sharp-libvips-linux-s390x\": \"1.0.4\"\n }\n },\n \"node_modules/@img/sharp-linux-x64\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz\",\n \"integrity\": \"sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n },\n \"optionalDependencies\": {\n \"@img/sharp-libvips-linux-x64\": \"1.0.4\"\n }\n },\n \"node_modules/@img/sharp-linuxmusl-arm64\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz\",\n \"integrity\": \"sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n },\n \"optionalDependencies\": {\n \"@img/sharp-libvips-linuxmusl-arm64\": \"1.0.4\"\n }\n },\n \"node_modules/@img/sharp-linuxmusl-x64\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz\",\n \"integrity\": \"sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n },\n \"optionalDependencies\": {\n \"@img/sharp-libvips-linuxmusl-x64\": \"1.0.4\"\n }\n },\n \"node_modules/@img/sharp-wasm32\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz\",\n \"integrity\": \"sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==\",\n \"cpu\": [\n \"wasm32\"\n ],\n \"optional\": true,\n \"dependencies\": {\n \"@emnapi/runtime\": \"^1.2.0\"\n },\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-win32-ia32\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz\",\n \"integrity\": \"sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==\",\n \"cpu\": [\n \"ia32\"\n ],\n \"optional\": true,\n \"os\": [\n \"win32\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@img/sharp-win32-x64\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz\",\n \"integrity\": \"sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"win32\"\n ],\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n }\n },\n \"node_modules/@isaacs/cliui\": {\n \"version\": \"8.0.2\",\n \"resolved\": \"https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz\",\n \"integrity\": \"sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==\",\n \"dependencies\": {\n \"string-width\": \"^5.1.2\",\n \"string-width-cjs\": \"npm:string-width@^4.2.0\",\n \"strip-ansi\": \"^7.0.1\",\n \"strip-ansi-cjs\": \"npm:strip-ansi@^6.0.1\",\n \"wrap-ansi\": \"^8.1.0\",\n \"wrap-ansi-cjs\": \"npm:wrap-ansi@^7.0.0\"\n },\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/@isaacs/cliui/node_modules/ansi-regex\": {\n \"version\": \"6.0.1\",\n \"resolved\": \"https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz\",\n \"integrity\": \"sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==\",\n \"engines\": {\n \"node\": \">=12\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/ansi-regex?sponsor=1\"\n }\n },\n \"node_modules/@isaacs/cliui/node_modules/strip-ansi\": {\n \"version\": \"7.1.0\",\n \"resolved\": \"https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz\",\n \"integrity\": \"sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==\",\n \"dependencies\": {\n \"ansi-regex\": \"^6.0.1\"\n },\n \"engines\": {\n \"node\": \">=12\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/strip-ansi?sponsor=1\"\n }\n },\n \"node_modules/@jridgewell/gen-mapping\": {\n \"version\": \"0.3.5\",\n \"resolved\": \"https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz\",\n \"integrity\": \"sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==\",\n \"dependencies\": {\n \"@jridgewell/set-array\": \"^1.2.1\",\n \"@jridgewell/sourcemap-codec\": \"^1.4.10\",\n \"@jridgewell/trace-mapping\": \"^0.3.24\"\n },\n \"engines\": {\n \"node\": \">=6.0.0\"\n }\n },\n \"node_modules/@jridgewell/resolve-uri\": {\n \"version\": \"3.1.2\",\n \"resolved\": \"https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz\",\n \"integrity\": \"sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==\",\n \"engines\": {\n \"node\": \">=6.0.0\"\n }\n },\n \"node_modules/@jridgewell/set-array\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz\",\n \"integrity\": \"sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==\",\n \"engines\": {\n \"node\": \">=6.0.0\"\n }\n },\n \"node_modules/@jridgewell/sourcemap-codec\": {\n \"version\": \"1.4.15\",\n \"resolved\": \"https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz\",\n \"integrity\": \"sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==\"\n },\n \"node_modules/@jridgewell/trace-mapping\": {\n \"version\": \"0.3.25\",\n \"resolved\": \"https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz\",\n \"integrity\": \"sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==\",\n \"dependencies\": {\n \"@jridgewell/resolve-uri\": \"^3.1.0\",\n \"@jridgewell/sourcemap-codec\": \"^1.4.14\"\n }\n },\n \"node_modules/@mapbox/node-pre-gyp\": {\n \"version\": \"1.0.11\",\n \"resolved\": \"https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz\",\n \"integrity\": \"sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==\",\n \"dependencies\": {\n \"detect-libc\": \"^2.0.0\",\n \"https-proxy-agent\": \"^5.0.0\",\n \"make-dir\": \"^3.1.0\",\n \"node-fetch\": \"^2.6.7\",\n \"nopt\": \"^5.0.0\",\n \"npmlog\": \"^5.0.1\",\n \"rimraf\": \"^3.0.2\",\n \"semver\": \"^7.3.5\",\n \"tar\": \"^6.1.11\"\n },\n \"bin\": {\n \"node-pre-gyp\": \"bin/node-pre-gyp\"\n }\n },\n \"node_modules/@mongodb-js/saslprep\": {\n \"version\": \"1.1.9\",\n \"resolved\": \"https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.9.tgz\",\n \"integrity\": \"sha512-tVkljjeEaAhCqTzajSdgbQ6gE6f3oneVwa3iXR6csiEwXXOFsiC6Uh9iAjAhXPtqa/XMDHWjjeNH/77m/Yq2dw==\",\n \"optional\": true,\n \"dependencies\": {\n \"sparse-bitfield\": \"^3.0.3\"\n }\n },\n \"node_modules/@next-auth/mongodb-adapter\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https://registry.npmjs.org/@next-auth/mongodb-adapter/-/mongodb-adapter-1.1.3.tgz\",\n \"integrity\": \"sha512-nH/may8hntYBlcuxepSsR2b95w6SRnP+c/FFt3KKjdTScNjhrN0zZdlT90nisjG/3gK+MvzMbz/F4Rwpgr9RMA==\",\n \"peerDependencies\": {\n \"mongodb\": \"^5 || ^4\",\n \"next-auth\": \"^4\"\n }\n },\n \"node_modules/@next-auth/prisma-adapter\": {\n \"version\": \"1.0.7\",\n \"resolved\": \"https://registry.npmjs.org/@next-auth/prisma-adapter/-/prisma-adapter-1.0.7.tgz\",\n \"integrity\": \"sha512-Cdko4KfcmKjsyHFrWwZ//lfLUbcLqlyFqjd/nYE2m3aZ7tjMNUjpks47iw7NTCnXf+5UWz5Ypyt1dSs1EP5QJw==\",\n \"peerDependencies\": {\n \"@prisma/client\": \">=2.26.0 || >=3\",\n \"next-auth\": \"^4\"\n }\n },\n \"node_modules/@next/env\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/env/-/env-14.2.4.tgz\",\n \"integrity\": \"sha512-3EtkY5VDkuV2+lNmKlbkibIJxcO4oIHEhBWne6PaAp+76J9KoSsGvNikp6ivzAT8dhhBMYrm6op2pS1ApG0Hzg==\"\n },\n \"node_modules/@next/eslint-plugin-next\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.2.4.tgz\",\n \"integrity\": \"sha512-svSFxW9f3xDaZA3idQmlFw7SusOuWTpDTAeBlO3AEPDltrraV+lqs7mAc6A27YdnpQVVIA3sODqUAAHdWhVWsA==\",\n \"dev\": true,\n \"dependencies\": {\n \"glob\": \"10.3.10\"\n }\n },\n \"node_modules/@next/swc-darwin-arm64\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.4.tgz\",\n \"integrity\": \"sha512-AH3mO4JlFUqsYcwFUHb1wAKlebHU/Hv2u2kb1pAuRanDZ7pD/A/KPD98RHZmwsJpdHQwfEc/06mgpSzwrJYnNg==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"darwin\"\n ],\n \"engines\": {\n \"node\": \">= 10\"\n }\n },\n \"node_modules/@next/swc-darwin-x64\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.4.tgz\",\n \"integrity\": \"sha512-QVadW73sWIO6E2VroyUjuAxhWLZWEpiFqHdZdoQ/AMpN9YWGuHV8t2rChr0ahy+irKX5mlDU7OY68k3n4tAZTg==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"darwin\"\n ],\n \"engines\": {\n \"node\": \">= 10\"\n }\n },\n \"node_modules/@next/swc-linux-arm64-gnu\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.4.tgz\",\n \"integrity\": \"sha512-KT6GUrb3oyCfcfJ+WliXuJnD6pCpZiosx2X3k66HLR+DMoilRb76LpWPGb4tZprawTtcnyrv75ElD6VncVamUQ==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \">= 10\"\n }\n },\n \"node_modules/@next/swc-linux-arm64-musl\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.4.tgz\",\n \"integrity\": \"sha512-Alv8/XGSs/ytwQcbCHwze1HmiIkIVhDHYLjczSVrf0Wi2MvKn/blt7+S6FJitj3yTlMwMxII1gIJ9WepI4aZ/A==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \">= 10\"\n }\n },\n \"node_modules/@next/swc-linux-x64-gnu\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.4.tgz\",\n \"integrity\": \"sha512-ze0ShQDBPCqxLImzw4sCdfnB3lRmN3qGMB2GWDRlq5Wqy4G36pxtNOo2usu/Nm9+V2Rh/QQnrRc2l94kYFXO6Q==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \">= 10\"\n }\n },\n \"node_modules/@next/swc-linux-x64-musl\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.4.tgz\",\n \"integrity\": \"sha512-8dwC0UJoc6fC7PX70csdaznVMNr16hQrTDAMPvLPloazlcaWfdPogq+UpZX6Drqb1OBlwowz8iG7WR0Tzk/diQ==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"linux\"\n ],\n \"engines\": {\n \"node\": \">= 10\"\n }\n },\n \"node_modules/@next/swc-win32-arm64-msvc\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.4.tgz\",\n \"integrity\": \"sha512-jxyg67NbEWkDyvM+O8UDbPAyYRZqGLQDTPwvrBBeOSyVWW/jFQkQKQ70JDqDSYg1ZDdl+E3nkbFbq8xM8E9x8A==\",\n \"cpu\": [\n \"arm64\"\n ],\n \"optional\": true,\n \"os\": [\n \"win32\"\n ],\n \"engines\": {\n \"node\": \">= 10\"\n }\n },\n \"node_modules/@next/swc-win32-ia32-msvc\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.4.tgz\",\n \"integrity\": \"sha512-twrmN753hjXRdcrZmZttb/m5xaCBFa48Dt3FbeEItpJArxriYDunWxJn+QFXdJ3hPkm4u7CKxncVvnmgQMY1ag==\",\n \"cpu\": [\n \"ia32\"\n ],\n \"optional\": true,\n \"os\": [\n \"win32\"\n ],\n \"engines\": {\n \"node\": \">= 10\"\n }\n },\n \"node_modules/@next/swc-win32-x64-msvc\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.4.tgz\",\n \"integrity\": \"sha512-tkLrjBzqFTP8DVrAAQmZelEahfR9OxWpFR++vAI9FBhCiIxtwHwBHC23SBHCTURBtwB4kc/x44imVOnkKGNVGg==\",\n \"cpu\": [\n \"x64\"\n ],\n \"optional\": true,\n \"os\": [\n \"win32\"\n ],\n \"engines\": {\n \"node\": \">= 10\"\n }\n },\n \"node_modules/@nodelib/fs.scandir\": {\n \"version\": \"2.1.5\",\n \"resolved\": \"https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz\",\n \"integrity\": \"sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==\",\n \"dependencies\": {\n \"@nodelib/fs.stat\": \"2.0.5\",\n \"run-parallel\": \"^1.1.9\"\n },\n \"engines\": {\n \"node\": \">= 8\"\n }\n },\n \"node_modules/@nodelib/fs.stat\": {\n \"version\": \"2.0.5\",\n \"resolved\": \"https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz\",\n \"integrity\": \"sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==\",\n \"engines\": {\n \"node\": \">= 8\"\n }\n },\n \"node_modules/@nodelib/fs.walk\": {\n \"version\": \"1.2.8\",\n \"resolved\": \"https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz\",\n \"integrity\": \"sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==\",\n \"dependencies\": {\n \"@nodelib/fs.scandir\": \"2.1.5\",\n \"fastq\": \"^1.6.0\"\n },\n \"engines\": {\n \"node\": \">= 8\"\n }\n },\n \"node_modules/@panva/hkdf\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https://registry.npmjs.org/@panva/hkdf/-/hkdf-1.2.1.tgz\",\n \"integrity\": \"sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==\",\n \"funding\": {\n \"url\": \"https://github.com/sponsors/panva\"\n }\n },\n \"node_modules/@pkgjs/parseargs\": {\n \"version\": \"0.11.0\",\n \"resolved\": \"https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz\",\n \"integrity\": \"sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==\",\n \"optional\": true,\n \"engines\": {\n \"node\": \">=14\"\n }\n },\n \"node_modules/@prisma/client\": {\n \"version\": \"5.19.1\",\n \"resolved\": \"https://registry.npmjs.org/@prisma/client/-/client-5.19.1.tgz\",\n \"integrity\": \"sha512-x30GFguInsgt+4z5I4WbkZP2CGpotJMUXy+Gl/aaUjHn2o1DnLYNTA+q9XdYmAQZM8fIIkvUiA2NpgosM3fneg==\",\n \"hasInstallScript\": true,\n \"engines\": {\n \"node\": \">=16.13\"\n },\n \"peerDependencies\": {\n \"prisma\": \"*\"\n },\n \"peerDependenciesMeta\": {\n \"prisma\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@prisma/debug\": {\n \"version\": \"5.20.0\",\n \"resolved\": \"https://registry.npmjs.org/@prisma/debug/-/debug-5.20.0.tgz\",\n \"integrity\": \"sha512-oCx79MJ4HSujokA8S1g0xgZUGybD4SyIOydoHMngFYiwEwYDQ5tBQkK5XoEHuwOYDKUOKRn/J0MEymckc4IgsQ==\",\n \"devOptional\": true\n },\n \"node_modules/@prisma/engines\": {\n \"version\": \"5.20.0\",\n \"resolved\": \"https://registry.npmjs.org/@prisma/engines/-/engines-5.20.0.tgz\",\n \"integrity\": \"sha512-DtqkP+hcZvPEbj8t8dK5df2b7d3B8GNauKqaddRRqQBBlgkbdhJkxhoJTrOowlS3vaRt2iMCkU0+CSNn0KhqAQ==\",\n \"devOptional\": true,\n \"hasInstallScript\": true,\n \"dependencies\": {\n \"@prisma/debug\": \"5.20.0\",\n \"@prisma/engines-version\": \"5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284\",\n \"@prisma/fetch-engine\": \"5.20.0\",\n \"@prisma/get-platform\": \"5.20.0\"\n }\n },\n \"node_modules/@prisma/engines-version\": {\n \"version\": \"5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284\",\n \"resolved\": \"https://registry.npmjs.org/@prisma/engines-version/-/engines-version-5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284.tgz\",\n \"integrity\": \"sha512-Lg8AS5lpi0auZe2Mn4gjuCg081UZf88k3cn0RCwHgR+6cyHHpttPZBElJTHf83ZGsRNAmVCZCfUGA57WB4u4JA==\",\n \"devOptional\": true\n },\n \"node_modules/@prisma/fetch-engine\": {\n \"version\": \"5.20.0\",\n \"resolved\": \"https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-5.20.0.tgz\",\n \"integrity\": \"sha512-JVcaPXC940wOGpCOwuqQRTz6I9SaBK0c1BAyC1pcz9xBi+dzFgUu3G/p9GV1FhFs9OKpfSpIhQfUJE9y00zhqw==\",\n \"devOptional\": true,\n \"dependencies\": {\n \"@prisma/debug\": \"5.20.0\",\n \"@prisma/engines-version\": \"5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208c284\",\n \"@prisma/get-platform\": \"5.20.0\"\n }\n },\n \"node_modules/@prisma/get-platform\": {\n \"version\": \"5.20.0\",\n \"resolved\": \"https://registry.npmjs.org/@prisma/get-platform/-/get-platform-5.20.0.tgz\",\n \"integrity\": \"sha512-8/+CehTZZNzJlvuryRgc77hZCWrUDYd/PmlZ7p2yNXtmf2Una4BWnTbak3us6WVdqoz5wmptk6IhsXdG2v5fmA==\",\n \"devOptional\": true,\n \"dependencies\": {\n \"@prisma/debug\": \"5.20.0\"\n }\n },\n \"node_modules/@radix-ui/number\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/number/-/number-1.1.0.tgz\",\n \"integrity\": \"sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==\"\n },\n \"node_modules/@radix-ui/primitive\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.0.tgz\",\n \"integrity\": \"sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==\"\n },\n \"node_modules/@radix-ui/react-arrow\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.0.tgz\",\n \"integrity\": \"sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==\",\n \"dependencies\": {\n \"@radix-ui/react-primitive\": \"2.0.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-avatar\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.1.0.tgz\",\n \"integrity\": \"sha512-Q/PbuSMk/vyAd/UoIShVGZ7StHHeRFYU7wXmi5GV+8cLXflZAEpHL/F697H1klrzxKXNtZ97vWiC0q3RKUH8UA==\",\n \"dependencies\": {\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\",\n \"@radix-ui/react-use-layout-effect\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-collection\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.0.tgz\",\n \"integrity\": \"sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==\",\n \"dependencies\": {\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-slot\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-compose-refs\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz\",\n \"integrity\": \"sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==\",\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-context\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz\",\n \"integrity\": \"sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==\",\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-dialog\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.1.tgz\",\n \"integrity\": \"sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==\",\n \"dependencies\": {\n \"@radix-ui/primitive\": \"1.1.0\",\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-dismissable-layer\": \"1.1.0\",\n \"@radix-ui/react-focus-guards\": \"1.1.0\",\n \"@radix-ui/react-focus-scope\": \"1.1.0\",\n \"@radix-ui/react-id\": \"1.1.0\",\n \"@radix-ui/react-portal\": \"1.1.1\",\n \"@radix-ui/react-presence\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-slot\": \"1.1.0\",\n \"@radix-ui/react-use-controllable-state\": \"1.1.0\",\n \"aria-hidden\": \"^1.1.1\",\n \"react-remove-scroll\": \"2.5.7\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-direction\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.0.tgz\",\n \"integrity\": \"sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==\",\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-dismissable-layer\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.0.tgz\",\n \"integrity\": \"sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==\",\n \"dependencies\": {\n \"@radix-ui/primitive\": \"1.1.0\",\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\",\n \"@radix-ui/react-use-escape-keydown\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-dropdown-menu\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.1.tgz\",\n \"integrity\": \"sha512-y8E+x9fBq9qvteD2Zwa4397pUVhYsh9iq44b5RD5qu1GMJWBCBuVg1hMyItbc6+zH00TxGRqd9Iot4wzf3OoBQ==\",\n \"dependencies\": {\n \"@radix-ui/primitive\": \"1.1.0\",\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-id\": \"1.1.0\",\n \"@radix-ui/react-menu\": \"2.1.1\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-controllable-state\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-focus-guards\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.0.tgz\",\n \"integrity\": \"sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==\",\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-focus-scope\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.0.tgz\",\n \"integrity\": \"sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==\",\n \"dependencies\": {\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-icons\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-icons/-/react-icons-1.3.0.tgz\",\n \"integrity\": \"sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==\",\n \"peerDependencies\": {\n \"react\": \"^16.x || ^17.x || ^18.x\"\n }\n },\n \"node_modules/@radix-ui/react-id\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.0.tgz\",\n \"integrity\": \"sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==\",\n \"dependencies\": {\n \"@radix-ui/react-use-layout-effect\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-label\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.0.tgz\",\n \"integrity\": \"sha512-peLblDlFw/ngk3UWq0VnYaOLy6agTZZ+MUO/WhVfm14vJGML+xH4FAl2XQGLqdefjNb7ApRg6Yn7U42ZhmYXdw==\",\n \"dependencies\": {\n \"@radix-ui/react-primitive\": \"2.0.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-menu\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-menu/-/react-menu-2.1.1.tgz\",\n \"integrity\": \"sha512-oa3mXRRVjHi6DZu/ghuzdylyjaMXLymx83irM7hTxutQbD+7IhPKdMdRHD26Rm+kHRrWcrUkkRPv5pd47a2xFQ==\",\n \"dependencies\": {\n \"@radix-ui/primitive\": \"1.1.0\",\n \"@radix-ui/react-collection\": \"1.1.0\",\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-direction\": \"1.1.0\",\n \"@radix-ui/react-dismissable-layer\": \"1.1.0\",\n \"@radix-ui/react-focus-guards\": \"1.1.0\",\n \"@radix-ui/react-focus-scope\": \"1.1.0\",\n \"@radix-ui/react-id\": \"1.1.0\",\n \"@radix-ui/react-popper\": \"1.2.0\",\n \"@radix-ui/react-portal\": \"1.1.1\",\n \"@radix-ui/react-presence\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-roving-focus\": \"1.1.0\",\n \"@radix-ui/react-slot\": \"1.1.0\",\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\",\n \"aria-hidden\": \"^1.1.1\",\n \"react-remove-scroll\": \"2.5.7\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-popper\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.0.tgz\",\n \"integrity\": \"sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==\",\n \"dependencies\": {\n \"@floating-ui/react-dom\": \"^2.0.0\",\n \"@radix-ui/react-arrow\": \"1.1.0\",\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\",\n \"@radix-ui/react-use-layout-effect\": \"1.1.0\",\n \"@radix-ui/react-use-rect\": \"1.1.0\",\n \"@radix-ui/react-use-size\": \"1.1.0\",\n \"@radix-ui/rect\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-portal\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.1.tgz\",\n \"integrity\": \"sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==\",\n \"dependencies\": {\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-layout-effect\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-presence\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.0.tgz\",\n \"integrity\": \"sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==\",\n \"dependencies\": {\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-use-layout-effect\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-primitive\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz\",\n \"integrity\": \"sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==\",\n \"dependencies\": {\n \"@radix-ui/react-slot\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-roving-focus\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.0.tgz\",\n \"integrity\": \"sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==\",\n \"dependencies\": {\n \"@radix-ui/primitive\": \"1.1.0\",\n \"@radix-ui/react-collection\": \"1.1.0\",\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-direction\": \"1.1.0\",\n \"@radix-ui/react-id\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\",\n \"@radix-ui/react-use-controllable-state\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-scroll-area\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.1.0.tgz\",\n \"integrity\": \"sha512-9ArIZ9HWhsrfqS765h+GZuLoxaRHD/j0ZWOWilsCvYTpYJp8XwCqNG7Dt9Nu/TItKOdgLGkOPCodQvDc+UMwYg==\",\n \"dependencies\": {\n \"@radix-ui/number\": \"1.1.0\",\n \"@radix-ui/primitive\": \"1.1.0\",\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-direction\": \"1.1.0\",\n \"@radix-ui/react-presence\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\",\n \"@radix-ui/react-use-layout-effect\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-slot\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz\",\n \"integrity\": \"sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==\",\n \"dependencies\": {\n \"@radix-ui/react-compose-refs\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-switch\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.1.0.tgz\",\n \"integrity\": \"sha512-OBzy5WAj641k0AOSpKQtreDMe+isX0MQJ1IVyF03ucdF3DunOnROVrjWs8zsXUxC3zfZ6JL9HFVCUlMghz9dJw==\",\n \"dependencies\": {\n \"@radix-ui/primitive\": \"1.1.0\",\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-controllable-state\": \"1.1.0\",\n \"@radix-ui/react-use-previous\": \"1.1.0\",\n \"@radix-ui/react-use-size\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-tabs\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.1.0.tgz\",\n \"integrity\": \"sha512-bZgOKB/LtZIij75FSuPzyEti/XBhJH52ExgtdVqjCIh+Nx/FW+LhnbXtbCzIi34ccyMsyOja8T0thCzoHFXNKA==\",\n \"dependencies\": {\n \"@radix-ui/primitive\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-direction\": \"1.1.0\",\n \"@radix-ui/react-id\": \"1.1.0\",\n \"@radix-ui/react-presence\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-roving-focus\": \"1.1.0\",\n \"@radix-ui/react-use-controllable-state\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-toast\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-toast/-/react-toast-1.2.1.tgz\",\n \"integrity\": \"sha512-5trl7piMXcZiCq7MW6r8YYmu0bK5qDpTWz+FdEPdKyft2UixkspheYbjbrLXVN5NGKHFbOP7lm8eD0biiSqZqg==\",\n \"dependencies\": {\n \"@radix-ui/primitive\": \"1.1.0\",\n \"@radix-ui/react-collection\": \"1.1.0\",\n \"@radix-ui/react-compose-refs\": \"1.1.0\",\n \"@radix-ui/react-context\": \"1.1.0\",\n \"@radix-ui/react-dismissable-layer\": \"1.1.0\",\n \"@radix-ui/react-portal\": \"1.1.1\",\n \"@radix-ui/react-presence\": \"1.1.0\",\n \"@radix-ui/react-primitive\": \"2.0.0\",\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\",\n \"@radix-ui/react-use-controllable-state\": \"1.1.0\",\n \"@radix-ui/react-use-layout-effect\": \"1.1.0\",\n \"@radix-ui/react-visually-hidden\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-use-callback-ref\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz\",\n \"integrity\": \"sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==\",\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-use-controllable-state\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz\",\n \"integrity\": \"sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==\",\n \"dependencies\": {\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-use-escape-keydown\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.0.tgz\",\n \"integrity\": \"sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==\",\n \"dependencies\": {\n \"@radix-ui/react-use-callback-ref\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-use-layout-effect\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.0.tgz\",\n \"integrity\": \"sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==\",\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-use-previous\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.0.tgz\",\n \"integrity\": \"sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==\",\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-use-rect\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.0.tgz\",\n \"integrity\": \"sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==\",\n \"dependencies\": {\n \"@radix-ui/rect\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-use-size\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.0.tgz\",\n \"integrity\": \"sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==\",\n \"dependencies\": {\n \"@radix-ui/react-use-layout-effect\": \"1.1.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/react-visually-hidden\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.1.0.tgz\",\n \"integrity\": \"sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==\",\n \"dependencies\": {\n \"@radix-ui/react-primitive\": \"2.0.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"*\",\n \"@types/react-dom\": \"*\",\n \"react\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\",\n \"react-dom\": \"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"@types/react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@radix-ui/rect\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.0.tgz\",\n \"integrity\": \"sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==\"\n },\n \"node_modules/@reduxjs/toolkit\": {\n \"version\": \"2.2.7\",\n \"resolved\": \"https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.2.7.tgz\",\n \"integrity\": \"sha512-faI3cZbSdFb8yv9dhDTmGwclW0vk0z5o1cia+kf7gCbaCwHI5e+7tP57mJUv22pNcNbeA62GSrPpfrUfdXcQ6g==\",\n \"dependencies\": {\n \"immer\": \"^10.0.3\",\n \"redux\": \"^5.0.1\",\n \"redux-thunk\": \"^3.1.0\",\n \"reselect\": \"^5.1.0\"\n },\n \"peerDependencies\": {\n \"react\": \"^16.9.0 || ^17.0.0 || ^18\",\n \"react-redux\": \"^7.2.1 || ^8.1.3 || ^9.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"react\": {\n \"optional\": true\n },\n \"react-redux\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@rushstack/eslint-patch\": {\n \"version\": \"1.10.3\",\n \"resolved\": \"https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.3.tgz\",\n \"integrity\": \"sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==\",\n \"dev\": true\n },\n \"node_modules/@stripe/react-stripe-js\": {\n \"version\": \"2.8.0\",\n \"resolved\": \"https://registry.npmjs.org/@stripe/react-stripe-js/-/react-stripe-js-2.8.0.tgz\",\n \"integrity\": \"sha512-Vf1gNEuBxA9EtxiLghm2ZWmgbADNMJw4HW6eolUu0DON/6mZvWZgk0KHolN0sozNJwYp0i/8hBsDBcBUWcvnbw==\",\n \"dependencies\": {\n \"prop-types\": \"^15.7.2\"\n },\n \"peerDependencies\": {\n \"@stripe/stripe-js\": \"^1.44.1 || ^2.0.0 || ^3.0.0 || ^4.0.0\",\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\",\n \"react-dom\": \"^16.8.0 || ^17.0.0 || ^18.0.0\"\n }\n },\n \"node_modules/@stripe/stripe-js\": {\n \"version\": \"4.5.0\",\n \"resolved\": \"https://registry.npmjs.org/@stripe/stripe-js/-/stripe-js-4.5.0.tgz\",\n \"integrity\": \"sha512-dMOzc58AOlsF20nYM/avzV8RFhO/vgYTY7ajLMH6mjlnZysnOHZxsECQvjEmL8Q/ukPwHkOnxSPW/QGCCnp7XA==\",\n \"peer\": true,\n \"engines\": {\n \"node\": \">=12.16\"\n }\n },\n \"node_modules/@swc/counter\": {\n \"version\": \"0.1.3\",\n \"resolved\": \"https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz\",\n \"integrity\": \"sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==\"\n },\n \"node_modules/@swc/helpers\": {\n \"version\": \"0.5.5\",\n \"resolved\": \"https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz\",\n \"integrity\": \"sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==\",\n \"dependencies\": {\n \"@swc/counter\": \"^0.1.3\",\n \"tslib\": \"^2.4.0\"\n }\n },\n \"node_modules/@tanstack/query-core\": {\n \"version\": \"5.51.9\",\n \"resolved\": \"https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.51.9.tgz\",\n \"integrity\": \"sha512-HsAwaY5J19MD18ykZDS3aVVh+bAt0i7m6uQlFC2b77DLV9djo+xEN7MWQAQQTR8IM+7r/zbozTQ7P0xr0bHuew==\",\n \"funding\": {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/tannerlinsley\"\n }\n },\n \"node_modules/@tanstack/react-query\": {\n \"version\": \"5.51.11\",\n \"resolved\": \"https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.51.11.tgz\",\n \"integrity\": \"sha512-4Kq2x0XpDlpvSnaLG+8pHNH60zEc3mBvb3B2tOMDjcPCi/o+Du3p/9qpPLwJOTliVxxPJAP27fuIhLrsRdCr7A==\",\n \"dependencies\": {\n \"@tanstack/query-core\": \"5.51.9\"\n },\n \"funding\": {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/tannerlinsley\"\n },\n \"peerDependencies\": {\n \"react\": \"^18.0.0\"\n }\n },\n \"node_modules/@types/bcrypt\": {\n \"version\": \"5.0.2\",\n \"resolved\": \"https://registry.npmjs.org/@types/bcrypt/-/bcrypt-5.0.2.tgz\",\n \"integrity\": \"sha512-6atioO8Y75fNcbmj0G7UjI9lXN2pQ/IGJ2FWT4a/btd0Lk9lQalHLKhkgKVZ3r+spnmWUKfbMi1GEe9wyHQfNQ==\",\n \"dependencies\": {\n \"@types/node\": \"*\"\n }\n },\n \"node_modules/@types/bcryptjs\": {\n \"version\": \"2.4.6\",\n \"resolved\": \"https://registry.npmjs.org/@types/bcryptjs/-/bcryptjs-2.4.6.tgz\",\n \"integrity\": \"sha512-9xlo6R2qDs5uixm0bcIqCeMCE6HiQsIyel9KQySStiyqNl2tnj2mP3DX1Nf56MD6KMenNNlBBsy3LJ7gUEQPXQ==\"\n },\n \"node_modules/@types/d3-array\": {\n \"version\": \"3.2.1\",\n \"resolved\": \"https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz\",\n \"integrity\": \"sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==\"\n },\n \"node_modules/@types/d3-color\": {\n \"version\": \"3.1.3\",\n \"resolved\": \"https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz\",\n \"integrity\": \"sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==\"\n },\n \"node_modules/@types/d3-ease\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz\",\n \"integrity\": \"sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==\"\n },\n \"node_modules/@types/d3-interpolate\": {\n \"version\": \"3.0.4\",\n \"resolved\": \"https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz\",\n \"integrity\": \"sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==\",\n \"dependencies\": {\n \"@types/d3-color\": \"*\"\n }\n },\n \"node_modules/@types/d3-path\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz\",\n \"integrity\": \"sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==\"\n },\n \"node_modules/@types/d3-scale\": {\n \"version\": \"4.0.8\",\n \"resolved\": \"https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz\",\n \"integrity\": \"sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==\",\n \"dependencies\": {\n \"@types/d3-time\": \"*\"\n }\n },\n \"node_modules/@types/d3-shape\": {\n \"version\": \"3.1.6\",\n \"resolved\": \"https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz\",\n \"integrity\": \"sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==\",\n \"dependencies\": {\n \"@types/d3-path\": \"*\"\n }\n },\n \"node_modules/@types/d3-time\": {\n \"version\": \"3.0.3\",\n \"resolved\": \"https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz\",\n \"integrity\": \"sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==\"\n },\n \"node_modules/@types/d3-timer\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz\",\n \"integrity\": \"sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==\"\n },\n \"node_modules/@types/json5\": {\n \"version\": \"0.0.29\",\n \"resolved\": \"https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz\",\n \"integrity\": \"sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==\",\n \"dev\": true\n },\n \"node_modules/@types/node\": {\n \"version\": \"20.14.8\",\n \"resolved\": \"https://registry.npmjs.org/@types/node/-/node-20.14.8.tgz\",\n \"integrity\": \"sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==\",\n \"dependencies\": {\n \"undici-types\": \"~5.26.4\"\n }\n },\n \"node_modules/@types/prop-types\": {\n \"version\": \"15.7.12\",\n \"resolved\": \"https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz\",\n \"integrity\": \"sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==\",\n \"devOptional\": true\n },\n \"node_modules/@types/react\": {\n \"version\": \"18.3.3\",\n \"resolved\": \"https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz\",\n \"integrity\": \"sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==\",\n \"devOptional\": true,\n \"dependencies\": {\n \"@types/prop-types\": \"*\",\n \"csstype\": \"^3.0.2\"\n }\n },\n \"node_modules/@types/react-dom\": {\n \"version\": \"18.3.0\",\n \"resolved\": \"https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz\",\n \"integrity\": \"sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==\",\n \"devOptional\": true,\n \"dependencies\": {\n \"@types/react\": \"*\"\n }\n },\n \"node_modules/@types/use-sync-external-store\": {\n \"version\": \"0.0.3\",\n \"resolved\": \"https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz\",\n \"integrity\": \"sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==\"\n },\n \"node_modules/@types/webidl-conversions\": {\n \"version\": \"7.0.3\",\n \"resolved\": \"https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz\",\n \"integrity\": \"sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==\"\n },\n \"node_modules/@types/whatwg-url\": {\n \"version\": \"8.2.2\",\n \"resolved\": \"https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz\",\n \"integrity\": \"sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==\",\n \"dependencies\": {\n \"@types/node\": \"*\",\n \"@types/webidl-conversions\": \"*\"\n }\n },\n \"node_modules/@typescript-eslint/parser\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.2.0.tgz\",\n \"integrity\": \"sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==\",\n \"dev\": true,\n \"dependencies\": {\n \"@typescript-eslint/scope-manager\": \"7.2.0\",\n \"@typescript-eslint/types\": \"7.2.0\",\n \"@typescript-eslint/typescript-estree\": \"7.2.0\",\n \"@typescript-eslint/visitor-keys\": \"7.2.0\",\n \"debug\": \"^4.3.4\"\n },\n \"engines\": {\n \"node\": \"^16.0.0 || >=18.0.0\"\n },\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/typescript-eslint\"\n },\n \"peerDependencies\": {\n \"eslint\": \"^8.56.0\"\n },\n \"peerDependenciesMeta\": {\n \"typescript\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@typescript-eslint/scope-manager\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.2.0.tgz\",\n \"integrity\": \"sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==\",\n \"dev\": true,\n \"dependencies\": {\n \"@typescript-eslint/types\": \"7.2.0\",\n \"@typescript-eslint/visitor-keys\": \"7.2.0\"\n },\n \"engines\": {\n \"node\": \"^16.0.0 || >=18.0.0\"\n },\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/typescript-eslint\"\n }\n },\n \"node_modules/@typescript-eslint/types\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https://registry.npmjs.org/@typescript-eslint/types/-/types-7.2.0.tgz\",\n \"integrity\": \"sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \"^16.0.0 || >=18.0.0\"\n },\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/typescript-eslint\"\n }\n },\n \"node_modules/@typescript-eslint/typescript-estree\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz\",\n \"integrity\": \"sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==\",\n \"dev\": true,\n \"dependencies\": {\n \"@typescript-eslint/types\": \"7.2.0\",\n \"@typescript-eslint/visitor-keys\": \"7.2.0\",\n \"debug\": \"^4.3.4\",\n \"globby\": \"^11.1.0\",\n \"is-glob\": \"^4.0.3\",\n \"minimatch\": \"9.0.3\",\n \"semver\": \"^7.5.4\",\n \"ts-api-utils\": \"^1.0.1\"\n },\n \"engines\": {\n \"node\": \"^16.0.0 || >=18.0.0\"\n },\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/typescript-eslint\"\n },\n \"peerDependenciesMeta\": {\n \"typescript\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz\",\n \"integrity\": \"sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==\",\n \"dev\": true,\n \"dependencies\": {\n \"balanced-match\": \"^1.0.0\"\n }\n },\n \"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch\": {\n \"version\": \"9.0.3\",\n \"resolved\": \"https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz\",\n \"integrity\": \"sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==\",\n \"dev\": true,\n \"dependencies\": {\n \"brace-expansion\": \"^2.0.1\"\n },\n \"engines\": {\n \"node\": \">=16 || 14 >=14.17\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/isaacs\"\n }\n },\n \"node_modules/@typescript-eslint/visitor-keys\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz\",\n \"integrity\": \"sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==\",\n \"dev\": true,\n \"dependencies\": {\n \"@typescript-eslint/types\": \"7.2.0\",\n \"eslint-visitor-keys\": \"^3.4.1\"\n },\n \"engines\": {\n \"node\": \"^16.0.0 || >=18.0.0\"\n },\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/typescript-eslint\"\n }\n },\n \"node_modules/@ungap/structured-clone\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz\",\n \"integrity\": \"sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==\",\n \"dev\": true\n },\n \"node_modules/abbrev\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz\",\n \"integrity\": \"sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==\"\n },\n \"node_modules/acorn\": {\n \"version\": \"8.12.0\",\n \"resolved\": \"https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz\",\n \"integrity\": \"sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==\",\n \"dev\": true,\n \"bin\": {\n \"acorn\": \"bin/acorn\"\n },\n \"engines\": {\n \"node\": \">=0.4.0\"\n }\n },\n \"node_modules/acorn-jsx\": {\n \"version\": \"5.3.2\",\n \"resolved\": \"https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz\",\n \"integrity\": \"sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==\",\n \"dev\": true,\n \"peerDependencies\": {\n \"acorn\": \"^6.0.0 || ^7.0.0 || ^8.0.0\"\n }\n },\n \"node_modules/agent-base\": {\n \"version\": \"6.0.2\",\n \"resolved\": \"https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz\",\n \"integrity\": \"sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==\",\n \"dependencies\": {\n \"debug\": \"4\"\n },\n \"engines\": {\n \"node\": \">= 6.0.0\"\n }\n },\n \"node_modules/ajv\": {\n \"version\": \"6.12.6\",\n \"resolved\": \"https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz\",\n \"integrity\": \"sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==\",\n \"dev\": true,\n \"dependencies\": {\n \"fast-deep-equal\": \"^3.1.1\",\n \"fast-json-stable-stringify\": \"^2.0.0\",\n \"json-schema-traverse\": \"^0.4.1\",\n \"uri-js\": \"^4.2.2\"\n },\n \"funding\": {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/epoberezkin\"\n }\n },\n \"node_modules/ansi-regex\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz\",\n \"integrity\": \"sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==\",\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dependencies\": {\n \"color-convert\": \"^2.0.1\"\n },\n \"engines\": {\n \"node\": \">=8\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/ansi-styles?sponsor=1\"\n }\n },\n \"node_modules/any-base\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz\",\n \"integrity\": \"sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==\"\n },\n \"node_modules/any-promise\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz\",\n \"integrity\": \"sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==\"\n },\n \"node_modules/anymatch\": {\n \"version\": \"3.1.3\",\n \"resolved\": \"https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz\",\n \"integrity\": \"sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==\",\n \"dependencies\": {\n \"normalize-path\": \"^3.0.0\",\n \"picomatch\": \"^2.0.4\"\n },\n \"engines\": {\n \"node\": \">= 8\"\n }\n },\n \"node_modules/aproba\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz\",\n \"integrity\": \"sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==\"\n },\n \"node_modules/are-we-there-yet\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz\",\n \"integrity\": \"sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==\",\n \"deprecated\": \"This package is no longer supported.\",\n \"dependencies\": {\n \"delegates\": \"^1.0.0\",\n \"readable-stream\": \"^3.6.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n }\n },\n \"node_modules/arg\": {\n \"version\": \"5.0.2\",\n \"resolved\": \"https://registry.npmjs.org/arg/-/arg-5.0.2.tgz\",\n \"integrity\": \"sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==\"\n },\n \"node_modules/argparse\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz\",\n \"integrity\": \"sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==\",\n \"dev\": true\n },\n \"node_modules/aria-hidden\": {\n \"version\": \"1.2.4\",\n \"resolved\": \"https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz\",\n \"integrity\": \"sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==\",\n \"dependencies\": {\n \"tslib\": \"^2.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n }\n },\n \"node_modules/aria-query\": {\n \"version\": \"5.1.3\",\n \"resolved\": \"https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz\",\n \"integrity\": \"sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"deep-equal\": \"^2.0.5\"\n }\n },\n \"node_modules/array-buffer-byte-length\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz\",\n \"integrity\": \"sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.5\",\n \"is-array-buffer\": \"^3.0.4\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/array-includes\": {\n \"version\": \"3.1.8\",\n \"resolved\": \"https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz\",\n \"integrity\": \"sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.2\",\n \"es-object-atoms\": \"^1.0.0\",\n \"get-intrinsic\": \"^1.2.4\",\n \"is-string\": \"^1.0.7\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/array-union\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz\",\n \"integrity\": \"sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/array.prototype.findlast\": {\n \"version\": \"1.2.5\",\n \"resolved\": \"https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz\",\n \"integrity\": \"sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.2\",\n \"es-errors\": \"^1.3.0\",\n \"es-object-atoms\": \"^1.0.0\",\n \"es-shim-unscopables\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/array.prototype.findlastindex\": {\n \"version\": \"1.2.5\",\n \"resolved\": \"https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz\",\n \"integrity\": \"sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.2\",\n \"es-errors\": \"^1.3.0\",\n \"es-object-atoms\": \"^1.0.0\",\n \"es-shim-unscopables\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/array.prototype.flat\": {\n \"version\": \"1.3.2\",\n \"resolved\": \"https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz\",\n \"integrity\": \"sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"define-properties\": \"^1.2.0\",\n \"es-abstract\": \"^1.22.1\",\n \"es-shim-unscopables\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/array.prototype.flatmap\": {\n \"version\": \"1.3.2\",\n \"resolved\": \"https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz\",\n \"integrity\": \"sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"define-properties\": \"^1.2.0\",\n \"es-abstract\": \"^1.22.1\",\n \"es-shim-unscopables\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/array.prototype.toreversed\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz\",\n \"integrity\": \"sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"define-properties\": \"^1.2.0\",\n \"es-abstract\": \"^1.22.1\",\n \"es-shim-unscopables\": \"^1.0.0\"\n }\n },\n \"node_modules/array.prototype.tosorted\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz\",\n \"integrity\": \"sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.3\",\n \"es-errors\": \"^1.3.0\",\n \"es-shim-unscopables\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/arraybuffer.prototype.slice\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz\",\n \"integrity\": \"sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==\",\n \"dev\": true,\n \"dependencies\": {\n \"array-buffer-byte-length\": \"^1.0.1\",\n \"call-bind\": \"^1.0.5\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.22.3\",\n \"es-errors\": \"^1.2.1\",\n \"get-intrinsic\": \"^1.2.3\",\n \"is-array-buffer\": \"^3.0.4\",\n \"is-shared-array-buffer\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/ast-types-flow\": {\n \"version\": \"0.0.8\",\n \"resolved\": \"https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz\",\n \"integrity\": \"sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==\",\n \"dev\": true\n },\n \"node_modules/asynckit\": {\n \"version\": \"0.4.0\",\n \"resolved\": \"https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz\",\n \"integrity\": \"sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==\"\n },\n \"node_modules/autoprefixer\": {\n \"version\": \"10.4.19\",\n \"resolved\": \"https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz\",\n \"integrity\": \"sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==\",\n \"funding\": [\n {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/postcss/\"\n },\n {\n \"type\": \"tidelift\",\n \"url\": \"https://tidelift.com/funding/github/npm/autoprefixer\"\n },\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/ai\"\n }\n ],\n \"dependencies\": {\n \"browserslist\": \"^4.23.0\",\n \"caniuse-lite\": \"^1.0.30001599\",\n \"fraction.js\": \"^4.3.7\",\n \"normalize-range\": \"^0.1.2\",\n \"picocolors\": \"^1.0.0\",\n \"postcss-value-parser\": \"^4.2.0\"\n },\n \"bin\": {\n \"autoprefixer\": \"bin/autoprefixer\"\n },\n \"engines\": {\n \"node\": \"^10 || ^12 || >=14\"\n },\n \"peerDependencies\": {\n \"postcss\": \"^8.1.0\"\n }\n },\n \"node_modules/available-typed-arrays\": {\n \"version\": \"1.0.7\",\n \"resolved\": \"https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz\",\n \"integrity\": \"sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"possible-typed-array-names\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/axe-core\": {\n \"version\": \"4.9.1\",\n \"resolved\": \"https://registry.npmjs.org/axe-core/-/axe-core-4.9.1.tgz\",\n \"integrity\": \"sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=4\"\n }\n },\n \"node_modules/axios\": {\n \"version\": \"1.7.2\",\n \"resolved\": \"https://registry.npmjs.org/axios/-/axios-1.7.2.tgz\",\n \"integrity\": \"sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==\",\n \"dependencies\": {\n \"follow-redirects\": \"^1.15.6\",\n \"form-data\": \"^4.0.0\",\n \"proxy-from-env\": \"^1.1.0\"\n }\n },\n \"node_modules/axobject-query\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz\",\n \"integrity\": \"sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==\",\n \"dev\": true,\n \"dependencies\": {\n \"deep-equal\": \"^2.0.5\"\n }\n },\n \"node_modules/balanced-match\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz\",\n \"integrity\": \"sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==\"\n },\n \"node_modules/bcrypt\": {\n \"version\": \"5.1.1\",\n \"resolved\": \"https://registry.npmjs.org/bcrypt/-/bcrypt-5.1.1.tgz\",\n \"integrity\": \"sha512-AGBHOG5hPYZ5Xl9KXzU5iKq9516yEmvCKDg3ecP5kX2aB6UqTeXZxk2ELnDgDm6BQSMlLt9rDB4LoSMx0rYwww==\",\n \"hasInstallScript\": true,\n \"dependencies\": {\n \"@mapbox/node-pre-gyp\": \"^1.0.11\",\n \"node-addon-api\": \"^5.0.0\"\n },\n \"engines\": {\n \"node\": \">= 10.0.0\"\n }\n },\n \"node_modules/bcryptjs\": {\n \"version\": \"2.4.3\",\n \"resolved\": \"https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz\",\n \"integrity\": \"sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==\"\n },\n \"node_modules/big-integer\": {\n \"version\": \"1.6.52\",\n \"resolved\": \"https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz\",\n \"integrity\": \"sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==\",\n \"engines\": {\n \"node\": \">=0.6\"\n }\n },\n \"node_modules/binary-extensions\": {\n \"version\": \"2.3.0\",\n \"resolved\": \"https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz\",\n \"integrity\": \"sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==\",\n \"engines\": {\n \"node\": \">=8\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/brace-expansion\": {\n \"version\": \"1.1.11\",\n \"resolved\": \"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz\",\n \"integrity\": \"sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==\",\n \"dependencies\": {\n \"balanced-match\": \"^1.0.0\",\n \"concat-map\": \"0.0.1\"\n }\n },\n \"node_modules/braces\": {\n \"version\": \"3.0.3\",\n \"resolved\": \"https://registry.npmjs.org/braces/-/braces-3.0.3.tgz\",\n \"integrity\": \"sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==\",\n \"dependencies\": {\n \"fill-range\": \"^7.1.1\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/broadcast-channel\": {\n \"version\": \"3.7.0\",\n \"resolved\": \"https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-3.7.0.tgz\",\n \"integrity\": \"sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==\",\n \"dependencies\": {\n \"@babel/runtime\": \"^7.7.2\",\n \"detect-node\": \"^2.1.0\",\n \"js-sha3\": \"0.8.0\",\n \"microseconds\": \"0.2.0\",\n \"nano-time\": \"1.0.0\",\n \"oblivious-set\": \"1.0.0\",\n \"rimraf\": \"3.0.2\",\n \"unload\": \"2.2.0\"\n }\n },\n \"node_modules/browserslist\": {\n \"version\": \"4.23.2\",\n \"resolved\": \"https://registry.npmjs.org/browserslist/-/browserslist-4.23.2.tgz\",\n \"integrity\": \"sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==\",\n \"funding\": [\n {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/browserslist\"\n },\n {\n \"type\": \"tidelift\",\n \"url\": \"https://tidelift.com/funding/github/npm/browserslist\"\n },\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/ai\"\n }\n ],\n \"dependencies\": {\n \"caniuse-lite\": \"^1.0.30001640\",\n \"electron-to-chromium\": \"^1.4.820\",\n \"node-releases\": \"^2.0.14\",\n \"update-browserslist-db\": \"^1.1.0\"\n },\n \"bin\": {\n \"browserslist\": \"cli.js\"\n },\n \"engines\": {\n \"node\": \"^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7\"\n }\n },\n \"node_modules/bson\": {\n \"version\": \"5.5.1\",\n \"resolved\": \"https://registry.npmjs.org/bson/-/bson-5.5.1.tgz\",\n \"integrity\": \"sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g==\",\n \"engines\": {\n \"node\": \">=14.20.1\"\n }\n },\n \"node_modules/busboy\": {\n \"version\": \"1.6.0\",\n \"resolved\": \"https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz\",\n \"integrity\": \"sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==\",\n \"dependencies\": {\n \"streamsearch\": \"^1.1.0\"\n },\n \"engines\": {\n \"node\": \">=10.16.0\"\n }\n },\n \"node_modules/call-bind\": {\n \"version\": \"1.0.7\",\n \"resolved\": \"https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz\",\n \"integrity\": \"sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==\",\n \"dependencies\": {\n \"es-define-property\": \"^1.0.0\",\n \"es-errors\": \"^1.3.0\",\n \"function-bind\": \"^1.1.2\",\n \"get-intrinsic\": \"^1.2.4\",\n \"set-function-length\": \"^1.2.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/callsites\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz\",\n \"integrity\": \"sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/camelcase-css\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz\",\n \"integrity\": \"sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==\",\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/caniuse-lite\": {\n \"version\": \"1.0.30001641\",\n \"resolved\": \"https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001641.tgz\",\n \"integrity\": \"sha512-Phv5thgl67bHYo1TtMY/MurjkHhV4EDaCosezRXgZ8jzA/Ub+wjxAvbGvjoFENStinwi5kCyOYV3mi5tOGykwA==\",\n \"funding\": [\n {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/browserslist\"\n },\n {\n \"type\": \"tidelift\",\n \"url\": \"https://tidelift.com/funding/github/npm/caniuse-lite\"\n },\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/ai\"\n }\n ]\n },\n \"node_modules/chalk\": {\n \"version\": \"4.1.2\",\n \"resolved\": \"https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz\",\n \"integrity\": \"sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==\",\n \"dev\": true,\n \"dependencies\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/chalk?sponsor=1\"\n }\n },\n \"node_modules/chokidar\": {\n \"version\": \"3.6.0\",\n \"resolved\": \"https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz\",\n \"integrity\": \"sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==\",\n \"dependencies\": {\n \"anymatch\": \"~3.1.2\",\n \"braces\": \"~3.0.2\",\n \"glob-parent\": \"~5.1.2\",\n \"is-binary-path\": \"~2.1.0\",\n \"is-glob\": \"~4.0.1\",\n \"normalize-path\": \"~3.0.0\",\n \"readdirp\": \"~3.6.0\"\n },\n \"engines\": {\n \"node\": \">= 8.10.0\"\n },\n \"funding\": {\n \"url\": \"https://paulmillr.com/funding/\"\n },\n \"optionalDependencies\": {\n \"fsevents\": \"~2.3.2\"\n }\n },\n \"node_modules/chokidar/node_modules/glob-parent\": {\n \"version\": \"5.1.2\",\n \"resolved\": \"https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz\",\n \"integrity\": \"sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==\",\n \"dependencies\": {\n \"is-glob\": \"^4.0.1\"\n },\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/chownr\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz\",\n \"integrity\": \"sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==\",\n \"engines\": {\n \"node\": \">=10\"\n }\n },\n \"node_modules/class-variance-authority\": {\n \"version\": \"0.7.0\",\n \"resolved\": \"https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.0.tgz\",\n \"integrity\": \"sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==\",\n \"dependencies\": {\n \"clsx\": \"2.0.0\"\n },\n \"funding\": {\n \"url\": \"https://joebell.co.uk\"\n }\n },\n \"node_modules/class-variance-authority/node_modules/clsx\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz\",\n \"integrity\": \"sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==\",\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/client-only\": {\n \"version\": \"0.0.1\",\n \"resolved\": \"https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz\",\n \"integrity\": \"sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==\"\n },\n \"node_modules/clsx\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz\",\n \"integrity\": \"sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==\",\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/color\": {\n \"version\": \"4.2.3\",\n \"resolved\": \"https://registry.npmjs.org/color/-/color-4.2.3.tgz\",\n \"integrity\": \"sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==\",\n \"dependencies\": {\n \"color-convert\": \"^2.0.1\",\n \"color-string\": \"^1.9.0\"\n },\n \"engines\": {\n \"node\": \">=12.5.0\"\n }\n },\n \"node_modules/color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==\",\n \"dependencies\": {\n \"color-name\": \"~1.1.4\"\n },\n \"engines\": {\n \"node\": \">=7.0.0\"\n }\n },\n \"node_modules/color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\"\n },\n \"node_modules/color-string\": {\n \"version\": \"1.9.1\",\n \"resolved\": \"https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz\",\n \"integrity\": \"sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==\",\n \"dependencies\": {\n \"color-name\": \"^1.0.0\",\n \"simple-swizzle\": \"^0.2.2\"\n }\n },\n \"node_modules/color-support\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz\",\n \"integrity\": \"sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==\",\n \"bin\": {\n \"color-support\": \"bin.js\"\n }\n },\n \"node_modules/combined-stream\": {\n \"version\": \"1.0.8\",\n \"resolved\": \"https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz\",\n \"integrity\": \"sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==\",\n \"dependencies\": {\n \"delayed-stream\": \"~1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.8\"\n }\n },\n \"node_modules/commander\": {\n \"version\": \"4.1.1\",\n \"resolved\": \"https://registry.npmjs.org/commander/-/commander-4.1.1.tgz\",\n \"integrity\": \"sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==\",\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/concat-map\": {\n \"version\": \"0.0.1\",\n \"resolved\": \"https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz\",\n \"integrity\": \"sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==\"\n },\n \"node_modules/console-control-strings\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz\",\n \"integrity\": \"sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==\"\n },\n \"node_modules/cookie\": {\n \"version\": \"0.5.0\",\n \"resolved\": \"https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz\",\n \"integrity\": \"sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==\",\n \"engines\": {\n \"node\": \">= 0.6\"\n }\n },\n \"node_modules/cross-spawn\": {\n \"version\": \"7.0.3\",\n \"resolved\": \"https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz\",\n \"integrity\": \"sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==\",\n \"dependencies\": {\n \"path-key\": \"^3.1.0\",\n \"shebang-command\": \"^2.0.0\",\n \"which\": \"^2.0.1\"\n },\n \"engines\": {\n \"node\": \">= 8\"\n }\n },\n \"node_modules/cssesc\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz\",\n \"integrity\": \"sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==\",\n \"bin\": {\n \"cssesc\": \"bin/cssesc\"\n },\n \"engines\": {\n \"node\": \">=4\"\n }\n },\n \"node_modules/csstype\": {\n \"version\": \"3.1.3\",\n \"resolved\": \"https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz\",\n \"integrity\": \"sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==\"\n },\n \"node_modules/d3-array\": {\n \"version\": \"3.2.4\",\n \"resolved\": \"https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz\",\n \"integrity\": \"sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==\",\n \"dependencies\": {\n \"internmap\": \"1 - 2\"\n },\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-color\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz\",\n \"integrity\": \"sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==\",\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-ease\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz\",\n \"integrity\": \"sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==\",\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-format\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz\",\n \"integrity\": \"sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==\",\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-interpolate\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz\",\n \"integrity\": \"sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==\",\n \"dependencies\": {\n \"d3-color\": \"1 - 3\"\n },\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-path\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz\",\n \"integrity\": \"sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==\",\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-scale\": {\n \"version\": \"4.0.2\",\n \"resolved\": \"https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz\",\n \"integrity\": \"sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==\",\n \"dependencies\": {\n \"d3-array\": \"2.10.0 - 3\",\n \"d3-format\": \"1 - 3\",\n \"d3-interpolate\": \"1.2.0 - 3\",\n \"d3-time\": \"2.1.1 - 3\",\n \"d3-time-format\": \"2 - 4\"\n },\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-shape\": {\n \"version\": \"3.2.0\",\n \"resolved\": \"https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz\",\n \"integrity\": \"sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==\",\n \"dependencies\": {\n \"d3-path\": \"^3.1.0\"\n },\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-time\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz\",\n \"integrity\": \"sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==\",\n \"dependencies\": {\n \"d3-array\": \"2 - 3\"\n },\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-time-format\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz\",\n \"integrity\": \"sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==\",\n \"dependencies\": {\n \"d3-time\": \"1 - 3\"\n },\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/d3-timer\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz\",\n \"integrity\": \"sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==\",\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/damerau-levenshtein\": {\n \"version\": \"1.0.8\",\n \"resolved\": \"https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz\",\n \"integrity\": \"sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==\",\n \"dev\": true\n },\n \"node_modules/data-view-buffer\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz\",\n \"integrity\": \"sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.6\",\n \"es-errors\": \"^1.3.0\",\n \"is-data-view\": \"^1.0.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/data-view-byte-length\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz\",\n \"integrity\": \"sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"es-errors\": \"^1.3.0\",\n \"is-data-view\": \"^1.0.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/data-view-byte-offset\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz\",\n \"integrity\": \"sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.6\",\n \"es-errors\": \"^1.3.0\",\n \"is-data-view\": \"^1.0.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/debug\": {\n \"version\": \"4.3.5\",\n \"resolved\": \"https://registry.npmjs.org/debug/-/debug-4.3.5.tgz\",\n \"integrity\": \"sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==\",\n \"dependencies\": {\n \"ms\": \"2.1.2\"\n },\n \"engines\": {\n \"node\": \">=6.0\"\n },\n \"peerDependenciesMeta\": {\n \"supports-color\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/decimal.js-light\": {\n \"version\": \"2.5.1\",\n \"resolved\": \"https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz\",\n \"integrity\": \"sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==\"\n },\n \"node_modules/deep-equal\": {\n \"version\": \"2.2.3\",\n \"resolved\": \"https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz\",\n \"integrity\": \"sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==\",\n \"dev\": true,\n \"dependencies\": {\n \"array-buffer-byte-length\": \"^1.0.0\",\n \"call-bind\": \"^1.0.5\",\n \"es-get-iterator\": \"^1.1.3\",\n \"get-intrinsic\": \"^1.2.2\",\n \"is-arguments\": \"^1.1.1\",\n \"is-array-buffer\": \"^3.0.2\",\n \"is-date-object\": \"^1.0.5\",\n \"is-regex\": \"^1.1.4\",\n \"is-shared-array-buffer\": \"^1.0.2\",\n \"isarray\": \"^2.0.5\",\n \"object-is\": \"^1.1.5\",\n \"object-keys\": \"^1.1.1\",\n \"object.assign\": \"^4.1.4\",\n \"regexp.prototype.flags\": \"^1.5.1\",\n \"side-channel\": \"^1.0.4\",\n \"which-boxed-primitive\": \"^1.0.2\",\n \"which-collection\": \"^1.0.1\",\n \"which-typed-array\": \"^1.1.13\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/deep-is\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz\",\n \"integrity\": \"sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==\",\n \"dev\": true\n },\n \"node_modules/define-data-property\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz\",\n \"integrity\": \"sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==\",\n \"dependencies\": {\n \"es-define-property\": \"^1.0.0\",\n \"es-errors\": \"^1.3.0\",\n \"gopd\": \"^1.0.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/define-properties\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz\",\n \"integrity\": \"sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==\",\n \"dev\": true,\n \"dependencies\": {\n \"define-data-property\": \"^1.0.1\",\n \"has-property-descriptors\": \"^1.0.0\",\n \"object-keys\": \"^1.1.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/delayed-stream\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz\",\n \"integrity\": \"sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==\",\n \"engines\": {\n \"node\": \">=0.4.0\"\n }\n },\n \"node_modules/delegates\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz\",\n \"integrity\": \"sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==\"\n },\n \"node_modules/detect-libc\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz\",\n \"integrity\": \"sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==\",\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/detect-node\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz\",\n \"integrity\": \"sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==\"\n },\n \"node_modules/detect-node-es\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz\",\n \"integrity\": \"sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==\"\n },\n \"node_modules/didyoumean\": {\n \"version\": \"1.2.2\",\n \"resolved\": \"https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz\",\n \"integrity\": \"sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==\"\n },\n \"node_modules/dir-glob\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz\",\n \"integrity\": \"sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==\",\n \"dev\": true,\n \"dependencies\": {\n \"path-type\": \"^4.0.0\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/dlv\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz\",\n \"integrity\": \"sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==\"\n },\n \"node_modules/doctrine\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz\",\n \"integrity\": \"sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==\",\n \"dev\": true,\n \"dependencies\": {\n \"esutils\": \"^2.0.2\"\n },\n \"engines\": {\n \"node\": \">=6.0.0\"\n }\n },\n \"node_modules/dom-helpers\": {\n \"version\": \"5.2.1\",\n \"resolved\": \"https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz\",\n \"integrity\": \"sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==\",\n \"dependencies\": {\n \"@babel/runtime\": \"^7.8.7\",\n \"csstype\": \"^3.0.2\"\n }\n },\n \"node_modules/eastasianwidth\": {\n \"version\": \"0.2.0\",\n \"resolved\": \"https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz\",\n \"integrity\": \"sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==\"\n },\n \"node_modules/electron-to-chromium\": {\n \"version\": \"1.4.825\",\n \"resolved\": \"https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.825.tgz\",\n \"integrity\": \"sha512-OCcF+LwdgFGcsYPYC5keEEFC2XT0gBhrYbeGzHCx7i9qRFbzO/AqTmc/C/1xNhJj+JA7rzlN7mpBuStshh96Cg==\"\n },\n \"node_modules/emoji-regex\": {\n \"version\": \"9.2.2\",\n \"resolved\": \"https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz\",\n \"integrity\": \"sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==\"\n },\n \"node_modules/enhanced-resolve\": {\n \"version\": \"5.17.0\",\n \"resolved\": \"https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz\",\n \"integrity\": \"sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==\",\n \"dev\": true,\n \"dependencies\": {\n \"graceful-fs\": \"^4.2.4\",\n \"tapable\": \"^2.2.0\"\n },\n \"engines\": {\n \"node\": \">=10.13.0\"\n }\n },\n \"node_modules/es-abstract\": {\n \"version\": \"1.23.3\",\n \"resolved\": \"https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz\",\n \"integrity\": \"sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==\",\n \"dev\": true,\n \"dependencies\": {\n \"array-buffer-byte-length\": \"^1.0.1\",\n \"arraybuffer.prototype.slice\": \"^1.0.3\",\n \"available-typed-arrays\": \"^1.0.7\",\n \"call-bind\": \"^1.0.7\",\n \"data-view-buffer\": \"^1.0.1\",\n \"data-view-byte-length\": \"^1.0.1\",\n \"data-view-byte-offset\": \"^1.0.0\",\n \"es-define-property\": \"^1.0.0\",\n \"es-errors\": \"^1.3.0\",\n \"es-object-atoms\": \"^1.0.0\",\n \"es-set-tostringtag\": \"^2.0.3\",\n \"es-to-primitive\": \"^1.2.1\",\n \"function.prototype.name\": \"^1.1.6\",\n \"get-intrinsic\": \"^1.2.4\",\n \"get-symbol-description\": \"^1.0.2\",\n \"globalthis\": \"^1.0.3\",\n \"gopd\": \"^1.0.1\",\n \"has-property-descriptors\": \"^1.0.2\",\n \"has-proto\": \"^1.0.3\",\n \"has-symbols\": \"^1.0.3\",\n \"hasown\": \"^2.0.2\",\n \"internal-slot\": \"^1.0.7\",\n \"is-array-buffer\": \"^3.0.4\",\n \"is-callable\": \"^1.2.7\",\n \"is-data-view\": \"^1.0.1\",\n \"is-negative-zero\": \"^2.0.3\",\n \"is-regex\": \"^1.1.4\",\n \"is-shared-array-buffer\": \"^1.0.3\",\n \"is-string\": \"^1.0.7\",\n \"is-typed-array\": \"^1.1.13\",\n \"is-weakref\": \"^1.0.2\",\n \"object-inspect\": \"^1.13.1\",\n \"object-keys\": \"^1.1.1\",\n \"object.assign\": \"^4.1.5\",\n \"regexp.prototype.flags\": \"^1.5.2\",\n \"safe-array-concat\": \"^1.1.2\",\n \"safe-regex-test\": \"^1.0.3\",\n \"string.prototype.trim\": \"^1.2.9\",\n \"string.prototype.trimend\": \"^1.0.8\",\n \"string.prototype.trimstart\": \"^1.0.8\",\n \"typed-array-buffer\": \"^1.0.2\",\n \"typed-array-byte-length\": \"^1.0.1\",\n \"typed-array-byte-offset\": \"^1.0.2\",\n \"typed-array-length\": \"^1.0.6\",\n \"unbox-primitive\": \"^1.0.2\",\n \"which-typed-array\": \"^1.1.15\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/es-define-property\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz\",\n \"integrity\": \"sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==\",\n \"dependencies\": {\n \"get-intrinsic\": \"^1.2.4\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/es-errors\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz\",\n \"integrity\": \"sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==\",\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/es-get-iterator\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz\",\n \"integrity\": \"sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"get-intrinsic\": \"^1.1.3\",\n \"has-symbols\": \"^1.0.3\",\n \"is-arguments\": \"^1.1.1\",\n \"is-map\": \"^2.0.2\",\n \"is-set\": \"^2.0.2\",\n \"is-string\": \"^1.0.7\",\n \"isarray\": \"^2.0.5\",\n \"stop-iteration-iterator\": \"^1.0.0\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/es-iterator-helpers\": {\n \"version\": \"1.0.19\",\n \"resolved\": \"https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz\",\n \"integrity\": \"sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.3\",\n \"es-errors\": \"^1.3.0\",\n \"es-set-tostringtag\": \"^2.0.3\",\n \"function-bind\": \"^1.1.2\",\n \"get-intrinsic\": \"^1.2.4\",\n \"globalthis\": \"^1.0.3\",\n \"has-property-descriptors\": \"^1.0.2\",\n \"has-proto\": \"^1.0.3\",\n \"has-symbols\": \"^1.0.3\",\n \"internal-slot\": \"^1.0.7\",\n \"iterator.prototype\": \"^1.1.2\",\n \"safe-array-concat\": \"^1.1.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/es-object-atoms\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz\",\n \"integrity\": \"sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==\",\n \"dev\": true,\n \"dependencies\": {\n \"es-errors\": \"^1.3.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/es-set-tostringtag\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz\",\n \"integrity\": \"sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"get-intrinsic\": \"^1.2.4\",\n \"has-tostringtag\": \"^1.0.2\",\n \"hasown\": \"^2.0.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/es-shim-unscopables\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz\",\n \"integrity\": \"sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==\",\n \"dev\": true,\n \"dependencies\": {\n \"hasown\": \"^2.0.0\"\n }\n },\n \"node_modules/es-to-primitive\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz\",\n \"integrity\": \"sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==\",\n \"dev\": true,\n \"dependencies\": {\n \"is-callable\": \"^1.1.4\",\n \"is-date-object\": \"^1.0.1\",\n \"is-symbol\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/escalade\": {\n \"version\": \"3.1.2\",\n \"resolved\": \"https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz\",\n \"integrity\": \"sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==\",\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/escape-string-regexp\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz\",\n \"integrity\": \"sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/eslint\": {\n \"version\": \"8.57.0\",\n \"resolved\": \"https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz\",\n \"integrity\": \"sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"@eslint-community/eslint-utils\": \"^4.2.0\",\n \"@eslint-community/regexpp\": \"^4.6.1\",\n \"@eslint/eslintrc\": \"^2.1.4\",\n \"@eslint/js\": \"8.57.0\",\n \"@humanwhocodes/config-array\": \"^0.11.14\",\n \"@humanwhocodes/module-importer\": \"^1.0.1\",\n \"@nodelib/fs.walk\": \"^1.2.8\",\n \"@ungap/structured-clone\": \"^1.2.0\",\n \"ajv\": \"^6.12.4\",\n \"chalk\": \"^4.0.0\",\n \"cross-spawn\": \"^7.0.2\",\n \"debug\": \"^4.3.2\",\n \"doctrine\": \"^3.0.0\",\n \"escape-string-regexp\": \"^4.0.0\",\n \"eslint-scope\": \"^7.2.2\",\n \"eslint-visitor-keys\": \"^3.4.3\",\n \"espree\": \"^9.6.1\",\n \"esquery\": \"^1.4.2\",\n \"esutils\": \"^2.0.2\",\n \"fast-deep-equal\": \"^3.1.3\",\n \"file-entry-cache\": \"^6.0.1\",\n \"find-up\": \"^5.0.0\",\n \"glob-parent\": \"^6.0.2\",\n \"globals\": \"^13.19.0\",\n \"graphemer\": \"^1.4.0\",\n \"ignore\": \"^5.2.0\",\n \"imurmurhash\": \"^0.1.4\",\n \"is-glob\": \"^4.0.0\",\n \"is-path-inside\": \"^3.0.3\",\n \"js-yaml\": \"^4.1.0\",\n \"json-stable-stringify-without-jsonify\": \"^1.0.1\",\n \"levn\": \"^0.4.1\",\n \"lodash.merge\": \"^4.6.2\",\n \"minimatch\": \"^3.1.2\",\n \"natural-compare\": \"^1.4.0\",\n \"optionator\": \"^0.9.3\",\n \"strip-ansi\": \"^6.0.1\",\n \"text-table\": \"^0.2.0\"\n },\n \"bin\": {\n \"eslint\": \"bin/eslint.js\"\n },\n \"engines\": {\n \"node\": \"^12.22.0 || ^14.17.0 || >=16.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/eslint\"\n }\n },\n \"node_modules/eslint-config-next\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.2.4.tgz\",\n \"integrity\": \"sha512-Qr0wMgG9m6m4uYy2jrYJmyuNlYZzPRQq5Kvb9IDlYwn+7yq6W6sfMNFgb+9guM1KYwuIo6TIaiFhZJ6SnQ/Efw==\",\n \"dev\": true,\n \"dependencies\": {\n \"@next/eslint-plugin-next\": \"14.2.4\",\n \"@rushstack/eslint-patch\": \"^1.3.3\",\n \"@typescript-eslint/parser\": \"^5.4.2 || ^6.0.0 || 7.0.0 - 7.2.0\",\n \"eslint-import-resolver-node\": \"^0.3.6\",\n \"eslint-import-resolver-typescript\": \"^3.5.2\",\n \"eslint-plugin-import\": \"^2.28.1\",\n \"eslint-plugin-jsx-a11y\": \"^6.7.1\",\n \"eslint-plugin-react\": \"^7.33.2\",\n \"eslint-plugin-react-hooks\": \"^4.5.0 || 5.0.0-canary-7118f5dd7-20230705\"\n },\n \"peerDependencies\": {\n \"eslint\": \"^7.23.0 || ^8.0.0\",\n \"typescript\": \">=3.3.1\"\n },\n \"peerDependenciesMeta\": {\n \"typescript\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/eslint-import-resolver-node\": {\n \"version\": \"0.3.9\",\n \"resolved\": \"https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz\",\n \"integrity\": \"sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==\",\n \"dev\": true,\n \"dependencies\": {\n \"debug\": \"^3.2.7\",\n \"is-core-module\": \"^2.13.0\",\n \"resolve\": \"^1.22.4\"\n }\n },\n \"node_modules/eslint-import-resolver-node/node_modules/debug\": {\n \"version\": \"3.2.7\",\n \"resolved\": \"https://registry.npmjs.org/debug/-/debug-3.2.7.tgz\",\n \"integrity\": \"sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"ms\": \"^2.1.1\"\n }\n },\n \"node_modules/eslint-import-resolver-typescript\": {\n \"version\": \"3.6.1\",\n \"resolved\": \"https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz\",\n \"integrity\": \"sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==\",\n \"dev\": true,\n \"dependencies\": {\n \"debug\": \"^4.3.4\",\n \"enhanced-resolve\": \"^5.12.0\",\n \"eslint-module-utils\": \"^2.7.4\",\n \"fast-glob\": \"^3.3.1\",\n \"get-tsconfig\": \"^4.5.0\",\n \"is-core-module\": \"^2.11.0\",\n \"is-glob\": \"^4.0.3\"\n },\n \"engines\": {\n \"node\": \"^14.18.0 || >=16.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/unts/projects/eslint-import-resolver-ts\"\n },\n \"peerDependencies\": {\n \"eslint\": \"*\",\n \"eslint-plugin-import\": \"*\"\n }\n },\n \"node_modules/eslint-module-utils\": {\n \"version\": \"2.8.1\",\n \"resolved\": \"https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz\",\n \"integrity\": \"sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==\",\n \"dev\": true,\n \"dependencies\": {\n \"debug\": \"^3.2.7\"\n },\n \"engines\": {\n \"node\": \">=4\"\n },\n \"peerDependenciesMeta\": {\n \"eslint\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/eslint-module-utils/node_modules/debug\": {\n \"version\": \"3.2.7\",\n \"resolved\": \"https://registry.npmjs.org/debug/-/debug-3.2.7.tgz\",\n \"integrity\": \"sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"ms\": \"^2.1.1\"\n }\n },\n \"node_modules/eslint-plugin-import\": {\n \"version\": \"2.29.1\",\n \"resolved\": \"https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz\",\n \"integrity\": \"sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==\",\n \"dev\": true,\n \"dependencies\": {\n \"array-includes\": \"^3.1.7\",\n \"array.prototype.findlastindex\": \"^1.2.3\",\n \"array.prototype.flat\": \"^1.3.2\",\n \"array.prototype.flatmap\": \"^1.3.2\",\n \"debug\": \"^3.2.7\",\n \"doctrine\": \"^2.1.0\",\n \"eslint-import-resolver-node\": \"^0.3.9\",\n \"eslint-module-utils\": \"^2.8.0\",\n \"hasown\": \"^2.0.0\",\n \"is-core-module\": \"^2.13.1\",\n \"is-glob\": \"^4.0.3\",\n \"minimatch\": \"^3.1.2\",\n \"object.fromentries\": \"^2.0.7\",\n \"object.groupby\": \"^1.0.1\",\n \"object.values\": \"^1.1.7\",\n \"semver\": \"^6.3.1\",\n \"tsconfig-paths\": \"^3.15.0\"\n },\n \"engines\": {\n \"node\": \">=4\"\n },\n \"peerDependencies\": {\n \"eslint\": \"^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8\"\n }\n },\n \"node_modules/eslint-plugin-import/node_modules/debug\": {\n \"version\": \"3.2.7\",\n \"resolved\": \"https://registry.npmjs.org/debug/-/debug-3.2.7.tgz\",\n \"integrity\": \"sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"ms\": \"^2.1.1\"\n }\n },\n \"node_modules/eslint-plugin-import/node_modules/doctrine\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz\",\n \"integrity\": \"sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==\",\n \"dev\": true,\n \"dependencies\": {\n \"esutils\": \"^2.0.2\"\n },\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/eslint-plugin-import/node_modules/semver\": {\n \"version\": \"6.3.1\",\n \"resolved\": \"https://registry.npmjs.org/semver/-/semver-6.3.1.tgz\",\n \"integrity\": \"sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==\",\n \"dev\": true,\n \"bin\": {\n \"semver\": \"bin/semver.js\"\n }\n },\n \"node_modules/eslint-plugin-jsx-a11y\": {\n \"version\": \"6.9.0\",\n \"resolved\": \"https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.9.0.tgz\",\n \"integrity\": \"sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==\",\n \"dev\": true,\n \"dependencies\": {\n \"aria-query\": \"~5.1.3\",\n \"array-includes\": \"^3.1.8\",\n \"array.prototype.flatmap\": \"^1.3.2\",\n \"ast-types-flow\": \"^0.0.8\",\n \"axe-core\": \"^4.9.1\",\n \"axobject-query\": \"~3.1.1\",\n \"damerau-levenshtein\": \"^1.0.8\",\n \"emoji-regex\": \"^9.2.2\",\n \"es-iterator-helpers\": \"^1.0.19\",\n \"hasown\": \"^2.0.2\",\n \"jsx-ast-utils\": \"^3.3.5\",\n \"language-tags\": \"^1.0.9\",\n \"minimatch\": \"^3.1.2\",\n \"object.fromentries\": \"^2.0.8\",\n \"safe-regex-test\": \"^1.0.3\",\n \"string.prototype.includes\": \"^2.0.0\"\n },\n \"engines\": {\n \"node\": \">=4.0\"\n },\n \"peerDependencies\": {\n \"eslint\": \"^3 || ^4 || ^5 || ^6 || ^7 || ^8\"\n }\n },\n \"node_modules/eslint-plugin-react\": {\n \"version\": \"7.34.3\",\n \"resolved\": \"https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.3.tgz\",\n \"integrity\": \"sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==\",\n \"dev\": true,\n \"dependencies\": {\n \"array-includes\": \"^3.1.8\",\n \"array.prototype.findlast\": \"^1.2.5\",\n \"array.prototype.flatmap\": \"^1.3.2\",\n \"array.prototype.toreversed\": \"^1.1.2\",\n \"array.prototype.tosorted\": \"^1.1.4\",\n \"doctrine\": \"^2.1.0\",\n \"es-iterator-helpers\": \"^1.0.19\",\n \"estraverse\": \"^5.3.0\",\n \"jsx-ast-utils\": \"^2.4.1 || ^3.0.0\",\n \"minimatch\": \"^3.1.2\",\n \"object.entries\": \"^1.1.8\",\n \"object.fromentries\": \"^2.0.8\",\n \"object.hasown\": \"^1.1.4\",\n \"object.values\": \"^1.2.0\",\n \"prop-types\": \"^15.8.1\",\n \"resolve\": \"^2.0.0-next.5\",\n \"semver\": \"^6.3.1\",\n \"string.prototype.matchall\": \"^4.0.11\"\n },\n \"engines\": {\n \"node\": \">=4\"\n },\n \"peerDependencies\": {\n \"eslint\": \"^3 || ^4 || ^5 || ^6 || ^7 || ^8\"\n }\n },\n \"node_modules/eslint-plugin-react-hooks\": {\n \"version\": \"4.6.2\",\n \"resolved\": \"https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz\",\n \"integrity\": \"sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=10\"\n },\n \"peerDependencies\": {\n \"eslint\": \"^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0\"\n }\n },\n \"node_modules/eslint-plugin-react/node_modules/doctrine\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz\",\n \"integrity\": \"sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==\",\n \"dev\": true,\n \"dependencies\": {\n \"esutils\": \"^2.0.2\"\n },\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/eslint-plugin-react/node_modules/resolve\": {\n \"version\": \"2.0.0-next.5\",\n \"resolved\": \"https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz\",\n \"integrity\": \"sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==\",\n \"dev\": true,\n \"dependencies\": {\n \"is-core-module\": \"^2.13.0\",\n \"path-parse\": \"^1.0.7\",\n \"supports-preserve-symlinks-flag\": \"^1.0.0\"\n },\n \"bin\": {\n \"resolve\": \"bin/resolve\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/eslint-plugin-react/node_modules/semver\": {\n \"version\": \"6.3.1\",\n \"resolved\": \"https://registry.npmjs.org/semver/-/semver-6.3.1.tgz\",\n \"integrity\": \"sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==\",\n \"dev\": true,\n \"bin\": {\n \"semver\": \"bin/semver.js\"\n }\n },\n \"node_modules/eslint-scope\": {\n \"version\": \"7.2.2\",\n \"resolved\": \"https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz\",\n \"integrity\": \"sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==\",\n \"dev\": true,\n \"dependencies\": {\n \"esrecurse\": \"^4.3.0\",\n \"estraverse\": \"^5.2.0\"\n },\n \"engines\": {\n \"node\": \"^12.22.0 || ^14.17.0 || >=16.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/eslint\"\n }\n },\n \"node_modules/eslint-visitor-keys\": {\n \"version\": \"3.4.3\",\n \"resolved\": \"https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz\",\n \"integrity\": \"sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \"^12.22.0 || ^14.17.0 || >=16.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/eslint\"\n }\n },\n \"node_modules/espree\": {\n \"version\": \"9.6.1\",\n \"resolved\": \"https://registry.npmjs.org/espree/-/espree-9.6.1.tgz\",\n \"integrity\": \"sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"acorn\": \"^8.9.0\",\n \"acorn-jsx\": \"^5.3.2\",\n \"eslint-visitor-keys\": \"^3.4.1\"\n },\n \"engines\": {\n \"node\": \"^12.22.0 || ^14.17.0 || >=16.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/eslint\"\n }\n },\n \"node_modules/esquery\": {\n \"version\": \"1.5.0\",\n \"resolved\": \"https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz\",\n \"integrity\": \"sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==\",\n \"dev\": true,\n \"dependencies\": {\n \"estraverse\": \"^5.1.0\"\n },\n \"engines\": {\n \"node\": \">=0.10\"\n }\n },\n \"node_modules/esrecurse\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz\",\n \"integrity\": \"sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==\",\n \"dev\": true,\n \"dependencies\": {\n \"estraverse\": \"^5.2.0\"\n },\n \"engines\": {\n \"node\": \">=4.0\"\n }\n },\n \"node_modules/estraverse\": {\n \"version\": \"5.3.0\",\n \"resolved\": \"https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz\",\n \"integrity\": \"sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=4.0\"\n }\n },\n \"node_modules/esutils\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz\",\n \"integrity\": \"sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/eventemitter3\": {\n \"version\": \"4.0.7\",\n \"resolved\": \"https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz\",\n \"integrity\": \"sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==\"\n },\n \"node_modules/fancy-canvas\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/fancy-canvas/-/fancy-canvas-2.1.0.tgz\",\n \"integrity\": \"sha512-nifxXJ95JNLFR2NgRV4/MxVP45G9909wJTEKz5fg/TZS20JJZA6hfgRVh/bC9bwl2zBtBNcYPjiBE4njQHVBwQ==\"\n },\n \"node_modules/fast-deep-equal\": {\n \"version\": \"3.1.3\",\n \"resolved\": \"https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz\",\n \"integrity\": \"sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==\",\n \"dev\": true\n },\n \"node_modules/fast-equals\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz\",\n \"integrity\": \"sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==\",\n \"engines\": {\n \"node\": \">=6.0.0\"\n }\n },\n \"node_modules/fast-glob\": {\n \"version\": \"3.3.2\",\n \"resolved\": \"https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz\",\n \"integrity\": \"sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==\",\n \"dependencies\": {\n \"@nodelib/fs.stat\": \"^2.0.2\",\n \"@nodelib/fs.walk\": \"^1.2.3\",\n \"glob-parent\": \"^5.1.2\",\n \"merge2\": \"^1.3.0\",\n \"micromatch\": \"^4.0.4\"\n },\n \"engines\": {\n \"node\": \">=8.6.0\"\n }\n },\n \"node_modules/fast-glob/node_modules/glob-parent\": {\n \"version\": \"5.1.2\",\n \"resolved\": \"https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz\",\n \"integrity\": \"sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==\",\n \"dependencies\": {\n \"is-glob\": \"^4.0.1\"\n },\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/fast-json-stable-stringify\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz\",\n \"integrity\": \"sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==\",\n \"dev\": true\n },\n \"node_modules/fast-levenshtein\": {\n \"version\": \"2.0.6\",\n \"resolved\": \"https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz\",\n \"integrity\": \"sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==\",\n \"dev\": true\n },\n \"node_modules/fastq\": {\n \"version\": \"1.17.1\",\n \"resolved\": \"https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz\",\n \"integrity\": \"sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==\",\n \"dependencies\": {\n \"reusify\": \"^1.0.4\"\n }\n },\n \"node_modules/file-entry-cache\": {\n \"version\": \"6.0.1\",\n \"resolved\": \"https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz\",\n \"integrity\": \"sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==\",\n \"dev\": true,\n \"dependencies\": {\n \"flat-cache\": \"^3.0.4\"\n },\n \"engines\": {\n \"node\": \"^10.12.0 || >=12.0.0\"\n }\n },\n \"node_modules/fill-range\": {\n \"version\": \"7.1.1\",\n \"resolved\": \"https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz\",\n \"integrity\": \"sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==\",\n \"dependencies\": {\n \"to-regex-range\": \"^5.0.1\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/find-up\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz\",\n \"integrity\": \"sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==\",\n \"dev\": true,\n \"dependencies\": {\n \"locate-path\": \"^6.0.0\",\n \"path-exists\": \"^4.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/flat-cache\": {\n \"version\": \"3.2.0\",\n \"resolved\": \"https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz\",\n \"integrity\": \"sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==\",\n \"dev\": true,\n \"dependencies\": {\n \"flatted\": \"^3.2.9\",\n \"keyv\": \"^4.5.3\",\n \"rimraf\": \"^3.0.2\"\n },\n \"engines\": {\n \"node\": \"^10.12.0 || >=12.0.0\"\n }\n },\n \"node_modules/flatted\": {\n \"version\": \"3.3.1\",\n \"resolved\": \"https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz\",\n \"integrity\": \"sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==\",\n \"dev\": true\n },\n \"node_modules/follow-redirects\": {\n \"version\": \"1.15.6\",\n \"resolved\": \"https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz\",\n \"integrity\": \"sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==\",\n \"funding\": [\n {\n \"type\": \"individual\",\n \"url\": \"https://github.com/sponsors/RubenVerborgh\"\n }\n ],\n \"engines\": {\n \"node\": \">=4.0\"\n },\n \"peerDependenciesMeta\": {\n \"debug\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/for-each\": {\n \"version\": \"0.3.3\",\n \"resolved\": \"https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz\",\n \"integrity\": \"sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==\",\n \"dev\": true,\n \"dependencies\": {\n \"is-callable\": \"^1.1.3\"\n }\n },\n \"node_modules/foreground-child\": {\n \"version\": \"3.2.1\",\n \"resolved\": \"https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz\",\n \"integrity\": \"sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==\",\n \"dependencies\": {\n \"cross-spawn\": \"^7.0.0\",\n \"signal-exit\": \"^4.0.1\"\n },\n \"engines\": {\n \"node\": \">=14\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/isaacs\"\n }\n },\n \"node_modules/form-data\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz\",\n \"integrity\": \"sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==\",\n \"dependencies\": {\n \"asynckit\": \"^0.4.0\",\n \"combined-stream\": \"^1.0.8\",\n \"mime-types\": \"^2.1.12\"\n },\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/fraction.js\": {\n \"version\": \"4.3.7\",\n \"resolved\": \"https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz\",\n \"integrity\": \"sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==\",\n \"engines\": {\n \"node\": \"*\"\n },\n \"funding\": {\n \"type\": \"patreon\",\n \"url\": \"https://github.com/sponsors/rawify\"\n }\n },\n \"node_modules/framer-motion\": {\n \"version\": \"11.3.31\",\n \"resolved\": \"https://registry.npmjs.org/framer-motion/-/framer-motion-11.3.31.tgz\",\n \"integrity\": \"sha512-Xmxs08WBXnc2tNzNZbFSpquI33lvleJg4Y+hmZ+vFkn+laN9ZnR3gbZnNGKDtuz7c/x3u8dLg05OU3EhLobCsg==\",\n \"dependencies\": {\n \"tslib\": \"^2.4.0\"\n },\n \"peerDependencies\": {\n \"@emotion/is-prop-valid\": \"*\",\n \"react\": \"^18.0.0\",\n \"react-dom\": \"^18.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"@emotion/is-prop-valid\": {\n \"optional\": true\n },\n \"react\": {\n \"optional\": true\n },\n \"react-dom\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/fs-minipass\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz\",\n \"integrity\": \"sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==\",\n \"dependencies\": {\n \"minipass\": \"^3.0.0\"\n },\n \"engines\": {\n \"node\": \">= 8\"\n }\n },\n \"node_modules/fs-minipass/node_modules/minipass\": {\n \"version\": \"3.3.6\",\n \"resolved\": \"https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz\",\n \"integrity\": \"sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==\",\n \"dependencies\": {\n \"yallist\": \"^4.0.0\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/fs.realpath\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz\",\n \"integrity\": \"sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==\"\n },\n \"node_modules/fsevents\": {\n \"version\": \"2.3.3\",\n \"resolved\": \"https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz\",\n \"integrity\": \"sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==\",\n \"hasInstallScript\": true,\n \"optional\": true,\n \"os\": [\n \"darwin\"\n ],\n \"engines\": {\n \"node\": \"^8.16.0 || ^10.6.0 || >=11.0.0\"\n }\n },\n \"node_modules/function-bind\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz\",\n \"integrity\": \"sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==\",\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/function.prototype.name\": {\n \"version\": \"1.1.6\",\n \"resolved\": \"https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz\",\n \"integrity\": \"sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"define-properties\": \"^1.2.0\",\n \"es-abstract\": \"^1.22.1\",\n \"functions-have-names\": \"^1.2.3\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/functions-have-names\": {\n \"version\": \"1.2.3\",\n \"resolved\": \"https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz\",\n \"integrity\": \"sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==\",\n \"dev\": true,\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/gauge\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz\",\n \"integrity\": \"sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==\",\n \"deprecated\": \"This package is no longer supported.\",\n \"dependencies\": {\n \"aproba\": \"^1.0.3 || ^2.0.0\",\n \"color-support\": \"^1.1.2\",\n \"console-control-strings\": \"^1.0.0\",\n \"has-unicode\": \"^2.0.1\",\n \"object-assign\": \"^4.1.1\",\n \"signal-exit\": \"^3.0.0\",\n \"string-width\": \"^4.2.3\",\n \"strip-ansi\": \"^6.0.1\",\n \"wide-align\": \"^1.1.2\"\n },\n \"engines\": {\n \"node\": \">=10\"\n }\n },\n \"node_modules/gauge/node_modules/emoji-regex\": {\n \"version\": \"8.0.0\",\n \"resolved\": \"https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz\",\n \"integrity\": \"sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==\"\n },\n \"node_modules/gauge/node_modules/signal-exit\": {\n \"version\": \"3.0.7\",\n \"resolved\": \"https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz\",\n \"integrity\": \"sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==\"\n },\n \"node_modules/gauge/node_modules/string-width\": {\n \"version\": \"4.2.3\",\n \"resolved\": \"https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz\",\n \"integrity\": \"sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==\",\n \"dependencies\": {\n \"emoji-regex\": \"^8.0.0\",\n \"is-fullwidth-code-point\": \"^3.0.0\",\n \"strip-ansi\": \"^6.0.1\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/get-intrinsic\": {\n \"version\": \"1.2.4\",\n \"resolved\": \"https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz\",\n \"integrity\": \"sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==\",\n \"dependencies\": {\n \"es-errors\": \"^1.3.0\",\n \"function-bind\": \"^1.1.2\",\n \"has-proto\": \"^1.0.1\",\n \"has-symbols\": \"^1.0.3\",\n \"hasown\": \"^2.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/get-nonce\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz\",\n \"integrity\": \"sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==\",\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/get-symbol-description\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz\",\n \"integrity\": \"sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.5\",\n \"es-errors\": \"^1.3.0\",\n \"get-intrinsic\": \"^1.2.4\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/get-tsconfig\": {\n \"version\": \"4.7.5\",\n \"resolved\": \"https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.5.tgz\",\n \"integrity\": \"sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==\",\n \"dev\": true,\n \"dependencies\": {\n \"resolve-pkg-maps\": \"^1.0.0\"\n },\n \"funding\": {\n \"url\": \"https://github.com/privatenumber/get-tsconfig?sponsor=1\"\n }\n },\n \"node_modules/glob\": {\n \"version\": \"10.3.10\",\n \"resolved\": \"https://registry.npmjs.org/glob/-/glob-10.3.10.tgz\",\n \"integrity\": \"sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==\",\n \"dependencies\": {\n \"foreground-child\": \"^3.1.0\",\n \"jackspeak\": \"^2.3.5\",\n \"minimatch\": \"^9.0.1\",\n \"minipass\": \"^5.0.0 || ^6.0.2 || ^7.0.0\",\n \"path-scurry\": \"^1.10.1\"\n },\n \"bin\": {\n \"glob\": \"dist/esm/bin.mjs\"\n },\n \"engines\": {\n \"node\": \">=16 || 14 >=14.17\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/isaacs\"\n }\n },\n \"node_modules/glob-parent\": {\n \"version\": \"6.0.2\",\n \"resolved\": \"https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz\",\n \"integrity\": \"sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==\",\n \"dependencies\": {\n \"is-glob\": \"^4.0.3\"\n },\n \"engines\": {\n \"node\": \">=10.13.0\"\n }\n },\n \"node_modules/glob/node_modules/brace-expansion\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz\",\n \"integrity\": \"sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==\",\n \"dependencies\": {\n \"balanced-match\": \"^1.0.0\"\n }\n },\n \"node_modules/glob/node_modules/minimatch\": {\n \"version\": \"9.0.4\",\n \"resolved\": \"https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz\",\n \"integrity\": \"sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==\",\n \"dependencies\": {\n \"brace-expansion\": \"^2.0.1\"\n },\n \"engines\": {\n \"node\": \">=16 || 14 >=14.17\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/isaacs\"\n }\n },\n \"node_modules/globals\": {\n \"version\": \"13.24.0\",\n \"resolved\": \"https://registry.npmjs.org/globals/-/globals-13.24.0.tgz\",\n \"integrity\": \"sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"type-fest\": \"^0.20.2\"\n },\n \"engines\": {\n \"node\": \">=8\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/globalthis\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz\",\n \"integrity\": \"sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"define-properties\": \"^1.2.1\",\n \"gopd\": \"^1.0.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/globby\": {\n \"version\": \"11.1.0\",\n \"resolved\": \"https://registry.npmjs.org/globby/-/globby-11.1.0.tgz\",\n \"integrity\": \"sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==\",\n \"dev\": true,\n \"dependencies\": {\n \"array-union\": \"^2.1.0\",\n \"dir-glob\": \"^3.0.1\",\n \"fast-glob\": \"^3.2.9\",\n \"ignore\": \"^5.2.0\",\n \"merge2\": \"^1.4.1\",\n \"slash\": \"^3.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/gopd\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz\",\n \"integrity\": \"sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==\",\n \"dependencies\": {\n \"get-intrinsic\": \"^1.1.3\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/graceful-fs\": {\n \"version\": \"4.2.11\",\n \"resolved\": \"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz\",\n \"integrity\": \"sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==\"\n },\n \"node_modules/graphemer\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz\",\n \"integrity\": \"sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==\",\n \"dev\": true\n },\n \"node_modules/has-bigints\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz\",\n \"integrity\": \"sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==\",\n \"dev\": true,\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/has-property-descriptors\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz\",\n \"integrity\": \"sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==\",\n \"dependencies\": {\n \"es-define-property\": \"^1.0.0\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/has-proto\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz\",\n \"integrity\": \"sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==\",\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/has-symbols\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz\",\n \"integrity\": \"sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==\",\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/has-tostringtag\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz\",\n \"integrity\": \"sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==\",\n \"dev\": true,\n \"dependencies\": {\n \"has-symbols\": \"^1.0.3\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/has-unicode\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz\",\n \"integrity\": \"sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==\"\n },\n \"node_modules/hasown\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz\",\n \"integrity\": \"sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==\",\n \"dependencies\": {\n \"function-bind\": \"^1.1.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/https-proxy-agent\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz\",\n \"integrity\": \"sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==\",\n \"dependencies\": {\n \"agent-base\": \"6\",\n \"debug\": \"4\"\n },\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/ignore\": {\n \"version\": \"5.3.1\",\n \"resolved\": \"https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz\",\n \"integrity\": \"sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">= 4\"\n }\n },\n \"node_modules/immer\": {\n \"version\": \"10.1.1\",\n \"resolved\": \"https://registry.npmjs.org/immer/-/immer-10.1.1.tgz\",\n \"integrity\": \"sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw==\",\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/immer\"\n }\n },\n \"node_modules/import-fresh\": {\n \"version\": \"3.3.0\",\n \"resolved\": \"https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz\",\n \"integrity\": \"sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==\",\n \"dev\": true,\n \"dependencies\": {\n \"parent-module\": \"^1.0.0\",\n \"resolve-from\": \"^4.0.0\"\n },\n \"engines\": {\n \"node\": \">=6\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/imurmurhash\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz\",\n \"integrity\": \"sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=0.8.19\"\n }\n },\n \"node_modules/inflight\": {\n \"version\": \"1.0.6\",\n \"resolved\": \"https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz\",\n \"integrity\": \"sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==\",\n \"deprecated\": \"This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\",\n \"dependencies\": {\n \"once\": \"^1.3.0\",\n \"wrappy\": \"1\"\n }\n },\n \"node_modules/inherits\": {\n \"version\": \"2.0.4\",\n \"resolved\": \"https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz\",\n \"integrity\": \"sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==\"\n },\n \"node_modules/internal-slot\": {\n \"version\": \"1.0.7\",\n \"resolved\": \"https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz\",\n \"integrity\": \"sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==\",\n \"dev\": true,\n \"dependencies\": {\n \"es-errors\": \"^1.3.0\",\n \"hasown\": \"^2.0.0\",\n \"side-channel\": \"^1.0.4\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/internmap\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz\",\n \"integrity\": \"sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==\",\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/invariant\": {\n \"version\": \"2.2.4\",\n \"resolved\": \"https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz\",\n \"integrity\": \"sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==\",\n \"dependencies\": {\n \"loose-envify\": \"^1.0.0\"\n }\n },\n \"node_modules/ip-address\": {\n \"version\": \"9.0.5\",\n \"resolved\": \"https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz\",\n \"integrity\": \"sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==\",\n \"dependencies\": {\n \"jsbn\": \"1.1.0\",\n \"sprintf-js\": \"^1.1.3\"\n },\n \"engines\": {\n \"node\": \">= 12\"\n }\n },\n \"node_modules/is-arguments\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz\",\n \"integrity\": \"sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"has-tostringtag\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-array-buffer\": {\n \"version\": \"3.0.4\",\n \"resolved\": \"https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz\",\n \"integrity\": \"sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"get-intrinsic\": \"^1.2.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-arrayish\": {\n \"version\": \"0.3.2\",\n \"resolved\": \"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz\",\n \"integrity\": \"sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==\"\n },\n \"node_modules/is-async-function\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz\",\n \"integrity\": \"sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==\",\n \"dev\": true,\n \"dependencies\": {\n \"has-tostringtag\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-bigint\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz\",\n \"integrity\": \"sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==\",\n \"dev\": true,\n \"dependencies\": {\n \"has-bigints\": \"^1.0.1\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-binary-path\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz\",\n \"integrity\": \"sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==\",\n \"dependencies\": {\n \"binary-extensions\": \"^2.0.0\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/is-boolean-object\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz\",\n \"integrity\": \"sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"has-tostringtag\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-callable\": {\n \"version\": \"1.2.7\",\n \"resolved\": \"https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz\",\n \"integrity\": \"sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-core-module\": {\n \"version\": \"2.14.0\",\n \"resolved\": \"https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz\",\n \"integrity\": \"sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==\",\n \"dependencies\": {\n \"hasown\": \"^2.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-data-view\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz\",\n \"integrity\": \"sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==\",\n \"dev\": true,\n \"dependencies\": {\n \"is-typed-array\": \"^1.1.13\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-date-object\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz\",\n \"integrity\": \"sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"has-tostringtag\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-extglob\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz\",\n \"integrity\": \"sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==\",\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/is-finalizationregistry\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz\",\n \"integrity\": \"sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-fullwidth-code-point\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz\",\n \"integrity\": \"sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==\",\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/is-generator-function\": {\n \"version\": \"1.0.10\",\n \"resolved\": \"https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz\",\n \"integrity\": \"sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==\",\n \"dev\": true,\n \"dependencies\": {\n \"has-tostringtag\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-glob\": {\n \"version\": \"4.0.3\",\n \"resolved\": \"https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz\",\n \"integrity\": \"sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==\",\n \"dependencies\": {\n \"is-extglob\": \"^2.1.1\"\n },\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/is-map\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz\",\n \"integrity\": \"sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-negative-zero\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz\",\n \"integrity\": \"sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-number\": {\n \"version\": \"7.0.0\",\n \"resolved\": \"https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz\",\n \"integrity\": \"sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==\",\n \"engines\": {\n \"node\": \">=0.12.0\"\n }\n },\n \"node_modules/is-number-object\": {\n \"version\": \"1.0.7\",\n \"resolved\": \"https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz\",\n \"integrity\": \"sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"has-tostringtag\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-path-inside\": {\n \"version\": \"3.0.3\",\n \"resolved\": \"https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz\",\n \"integrity\": \"sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/is-regex\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz\",\n \"integrity\": \"sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"has-tostringtag\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-set\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz\",\n \"integrity\": \"sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-shared-array-buffer\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz\",\n \"integrity\": \"sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-string\": {\n \"version\": \"1.0.7\",\n \"resolved\": \"https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz\",\n \"integrity\": \"sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==\",\n \"dev\": true,\n \"dependencies\": {\n \"has-tostringtag\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-symbol\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz\",\n \"integrity\": \"sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==\",\n \"dev\": true,\n \"dependencies\": {\n \"has-symbols\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-typed-array\": {\n \"version\": \"1.1.13\",\n \"resolved\": \"https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz\",\n \"integrity\": \"sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==\",\n \"dev\": true,\n \"dependencies\": {\n \"which-typed-array\": \"^1.1.14\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-weakmap\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz\",\n \"integrity\": \"sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-weakref\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz\",\n \"integrity\": \"sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/is-weakset\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz\",\n \"integrity\": \"sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"get-intrinsic\": \"^1.2.4\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/isarray\": {\n \"version\": \"2.0.5\",\n \"resolved\": \"https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz\",\n \"integrity\": \"sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==\",\n \"dev\": true\n },\n \"node_modules/isexe\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz\",\n \"integrity\": \"sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==\"\n },\n \"node_modules/iterator.prototype\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz\",\n \"integrity\": \"sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==\",\n \"dev\": true,\n \"dependencies\": {\n \"define-properties\": \"^1.2.1\",\n \"get-intrinsic\": \"^1.2.1\",\n \"has-symbols\": \"^1.0.3\",\n \"reflect.getprototypeof\": \"^1.0.4\",\n \"set-function-name\": \"^2.0.1\"\n }\n },\n \"node_modules/jackspeak\": {\n \"version\": \"2.3.6\",\n \"resolved\": \"https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz\",\n \"integrity\": \"sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==\",\n \"dependencies\": {\n \"@isaacs/cliui\": \"^8.0.2\"\n },\n \"engines\": {\n \"node\": \">=14\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/isaacs\"\n },\n \"optionalDependencies\": {\n \"@pkgjs/parseargs\": \"^0.11.0\"\n }\n },\n \"node_modules/jiti\": {\n \"version\": \"1.21.6\",\n \"resolved\": \"https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz\",\n \"integrity\": \"sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==\",\n \"bin\": {\n \"jiti\": \"bin/jiti.js\"\n }\n },\n \"node_modules/jose\": {\n \"version\": \"4.15.9\",\n \"resolved\": \"https://registry.npmjs.org/jose/-/jose-4.15.9.tgz\",\n \"integrity\": \"sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==\",\n \"funding\": {\n \"url\": \"https://github.com/sponsors/panva\"\n }\n },\n \"node_modules/js-sha3\": {\n \"version\": \"0.8.0\",\n \"resolved\": \"https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz\",\n \"integrity\": \"sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==\"\n },\n \"node_modules/js-tokens\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz\",\n \"integrity\": \"sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==\"\n },\n \"node_modules/js-yaml\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz\",\n \"integrity\": \"sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==\",\n \"dev\": true,\n \"dependencies\": {\n \"argparse\": \"^2.0.1\"\n },\n \"bin\": {\n \"js-yaml\": \"bin/js-yaml.js\"\n }\n },\n \"node_modules/jsbn\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz\",\n \"integrity\": \"sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==\"\n },\n \"node_modules/json-buffer\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz\",\n \"integrity\": \"sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==\",\n \"dev\": true\n },\n \"node_modules/json-schema-traverse\": {\n \"version\": \"0.4.1\",\n \"resolved\": \"https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz\",\n \"integrity\": \"sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==\",\n \"dev\": true\n },\n \"node_modules/json-stable-stringify-without-jsonify\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz\",\n \"integrity\": \"sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==\",\n \"dev\": true\n },\n \"node_modules/json5\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/json5/-/json5-1.0.2.tgz\",\n \"integrity\": \"sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==\",\n \"dev\": true,\n \"dependencies\": {\n \"minimist\": \"^1.2.0\"\n },\n \"bin\": {\n \"json5\": \"lib/cli.js\"\n }\n },\n \"node_modules/jsx-ast-utils\": {\n \"version\": \"3.3.5\",\n \"resolved\": \"https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz\",\n \"integrity\": \"sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"array-includes\": \"^3.1.6\",\n \"array.prototype.flat\": \"^1.3.1\",\n \"object.assign\": \"^4.1.4\",\n \"object.values\": \"^1.1.6\"\n },\n \"engines\": {\n \"node\": \">=4.0\"\n }\n },\n \"node_modules/keyv\": {\n \"version\": \"4.5.4\",\n \"resolved\": \"https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz\",\n \"integrity\": \"sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==\",\n \"dev\": true,\n \"dependencies\": {\n \"json-buffer\": \"3.0.1\"\n }\n },\n \"node_modules/language-subtag-registry\": {\n \"version\": \"0.3.23\",\n \"resolved\": \"https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz\",\n \"integrity\": \"sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==\",\n \"dev\": true\n },\n \"node_modules/language-tags\": {\n \"version\": \"1.0.9\",\n \"resolved\": \"https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz\",\n \"integrity\": \"sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==\",\n \"dev\": true,\n \"dependencies\": {\n \"language-subtag-registry\": \"^0.3.20\"\n },\n \"engines\": {\n \"node\": \">=0.10\"\n }\n },\n \"node_modules/levn\": {\n \"version\": \"0.4.1\",\n \"resolved\": \"https://registry.npmjs.org/levn/-/levn-0.4.1.tgz\",\n \"integrity\": \"sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"prelude-ls\": \"^1.2.1\",\n \"type-check\": \"~0.4.0\"\n },\n \"engines\": {\n \"node\": \">= 0.8.0\"\n }\n },\n \"node_modules/lightweight-charts\": {\n \"version\": \"4.2.0\",\n \"resolved\": \"https://registry.npmjs.org/lightweight-charts/-/lightweight-charts-4.2.0.tgz\",\n \"integrity\": \"sha512-TRC61cI6bEKBEHcpqawL0KP8Rwos9b2OcdyeQ4Ri7Zybf8NvrRYmNcJV+2a2rMo7VZp1NhVWURuNEskjc+wm4A==\",\n \"dependencies\": {\n \"fancy-canvas\": \"2.1.0\"\n }\n },\n \"node_modules/lilconfig\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz\",\n \"integrity\": \"sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==\",\n \"engines\": {\n \"node\": \">=10\"\n }\n },\n \"node_modules/lines-and-columns\": {\n \"version\": \"1.2.4\",\n \"resolved\": \"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz\",\n \"integrity\": \"sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==\"\n },\n \"node_modules/locate-path\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz\",\n \"integrity\": \"sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==\",\n \"dev\": true,\n \"dependencies\": {\n \"p-locate\": \"^5.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/lodash\": {\n \"version\": \"4.17.21\",\n \"resolved\": \"https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz\",\n \"integrity\": \"sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==\"\n },\n \"node_modules/lodash.merge\": {\n \"version\": \"4.6.2\",\n \"resolved\": \"https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz\",\n \"integrity\": \"sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==\",\n \"dev\": true\n },\n \"node_modules/loose-envify\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz\",\n \"integrity\": \"sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==\",\n \"dependencies\": {\n \"js-tokens\": \"^3.0.0 || ^4.0.0\"\n },\n \"bin\": {\n \"loose-envify\": \"cli.js\"\n }\n },\n \"node_modules/lru-cache\": {\n \"version\": \"10.2.2\",\n \"resolved\": \"https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz\",\n \"integrity\": \"sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==\",\n \"engines\": {\n \"node\": \"14 || >=16.14\"\n }\n },\n \"node_modules/lucide-react\": {\n \"version\": \"0.407.0\",\n \"resolved\": \"https://registry.npmjs.org/lucide-react/-/lucide-react-0.407.0.tgz\",\n \"integrity\": \"sha512-+dRIu9Sry+E8wPF9+sY5eKld2omrU4X5IKXxrgqBt+o11IIHVU0QOfNoVWFuj0ZRDrxr4Wci26o2mKZqLGE0lA==\",\n \"peerDependencies\": {\n \"react\": \"^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0\"\n }\n },\n \"node_modules/make-dir\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz\",\n \"integrity\": \"sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==\",\n \"dependencies\": {\n \"semver\": \"^6.0.0\"\n },\n \"engines\": {\n \"node\": \">=8\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/make-dir/node_modules/semver\": {\n \"version\": \"6.3.1\",\n \"resolved\": \"https://registry.npmjs.org/semver/-/semver-6.3.1.tgz\",\n \"integrity\": \"sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==\",\n \"bin\": {\n \"semver\": \"bin/semver.js\"\n }\n },\n \"node_modules/match-sorter\": {\n \"version\": \"6.3.4\",\n \"resolved\": \"https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.4.tgz\",\n \"integrity\": \"sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==\",\n \"dependencies\": {\n \"@babel/runtime\": \"^7.23.8\",\n \"remove-accents\": \"0.5.0\"\n }\n },\n \"node_modules/memory-pager\": {\n \"version\": \"1.5.0\",\n \"resolved\": \"https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz\",\n \"integrity\": \"sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==\",\n \"optional\": true\n },\n \"node_modules/merge2\": {\n \"version\": \"1.4.1\",\n \"resolved\": \"https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz\",\n \"integrity\": \"sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==\",\n \"engines\": {\n \"node\": \">= 8\"\n }\n },\n \"node_modules/micromatch\": {\n \"version\": \"4.0.7\",\n \"resolved\": \"https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz\",\n \"integrity\": \"sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==\",\n \"dependencies\": {\n \"braces\": \"^3.0.3\",\n \"picomatch\": \"^2.3.1\"\n },\n \"engines\": {\n \"node\": \">=8.6\"\n }\n },\n \"node_modules/microseconds\": {\n \"version\": \"0.2.0\",\n \"resolved\": \"https://registry.npmjs.org/microseconds/-/microseconds-0.2.0.tgz\",\n \"integrity\": \"sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==\"\n },\n \"node_modules/mime-db\": {\n \"version\": \"1.52.0\",\n \"resolved\": \"https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz\",\n \"integrity\": \"sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==\",\n \"engines\": {\n \"node\": \">= 0.6\"\n }\n },\n \"node_modules/mime-types\": {\n \"version\": \"2.1.35\",\n \"resolved\": \"https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz\",\n \"integrity\": \"sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==\",\n \"dependencies\": {\n \"mime-db\": \"1.52.0\"\n },\n \"engines\": {\n \"node\": \">= 0.6\"\n }\n },\n \"node_modules/minimatch\": {\n \"version\": \"3.1.2\",\n \"resolved\": \"https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz\",\n \"integrity\": \"sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==\",\n \"dependencies\": {\n \"brace-expansion\": \"^1.1.7\"\n },\n \"engines\": {\n \"node\": \"*\"\n }\n },\n \"node_modules/minimist\": {\n \"version\": \"1.2.8\",\n \"resolved\": \"https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz\",\n \"integrity\": \"sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==\",\n \"dev\": true,\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/minipass\": {\n \"version\": \"7.1.2\",\n \"resolved\": \"https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz\",\n \"integrity\": \"sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==\",\n \"engines\": {\n \"node\": \">=16 || 14 >=14.17\"\n }\n },\n \"node_modules/minizlib\": {\n \"version\": \"2.1.2\",\n \"resolved\": \"https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz\",\n \"integrity\": \"sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==\",\n \"dependencies\": {\n \"minipass\": \"^3.0.0\",\n \"yallist\": \"^4.0.0\"\n },\n \"engines\": {\n \"node\": \">= 8\"\n }\n },\n \"node_modules/minizlib/node_modules/minipass\": {\n \"version\": \"3.3.6\",\n \"resolved\": \"https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz\",\n \"integrity\": \"sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==\",\n \"dependencies\": {\n \"yallist\": \"^4.0.0\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/mkdirp\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz\",\n \"integrity\": \"sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==\",\n \"bin\": {\n \"mkdirp\": \"bin/cmd.js\"\n },\n \"engines\": {\n \"node\": \">=10\"\n }\n },\n \"node_modules/mongodb\": {\n \"version\": \"5.9.2\",\n \"resolved\": \"https://registry.npmjs.org/mongodb/-/mongodb-5.9.2.tgz\",\n \"integrity\": \"sha512-H60HecKO4Bc+7dhOv4sJlgvenK4fQNqqUIlXxZYQNbfEWSALGAwGoyJd/0Qwk4TttFXUOHJ2ZJQe/52ScaUwtQ==\",\n \"dependencies\": {\n \"bson\": \"^5.5.0\",\n \"mongodb-connection-string-url\": \"^2.6.0\",\n \"socks\": \"^2.7.1\"\n },\n \"engines\": {\n \"node\": \">=14.20.1\"\n },\n \"optionalDependencies\": {\n \"@mongodb-js/saslprep\": \"^1.1.0\"\n },\n \"peerDependencies\": {\n \"@aws-sdk/credential-providers\": \"^3.188.0\",\n \"@mongodb-js/zstd\": \"^1.0.0\",\n \"kerberos\": \"^1.0.0 || ^2.0.0\",\n \"mongodb-client-encryption\": \">=2.3.0 <3\",\n \"snappy\": \"^7.2.2\"\n },\n \"peerDependenciesMeta\": {\n \"@aws-sdk/credential-providers\": {\n \"optional\": true\n },\n \"@mongodb-js/zstd\": {\n \"optional\": true\n },\n \"kerberos\": {\n \"optional\": true\n },\n \"mongodb-client-encryption\": {\n \"optional\": true\n },\n \"snappy\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/mongodb-connection-string-url\": {\n \"version\": \"2.6.0\",\n \"resolved\": \"https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz\",\n \"integrity\": \"sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==\",\n \"dependencies\": {\n \"@types/whatwg-url\": \"^8.2.1\",\n \"whatwg-url\": \"^11.0.0\"\n }\n },\n \"node_modules/mongodb-connection-string-url/node_modules/tr46\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz\",\n \"integrity\": \"sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==\",\n \"dependencies\": {\n \"punycode\": \"^2.1.1\"\n },\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/mongodb-connection-string-url/node_modules/webidl-conversions\": {\n \"version\": \"7.0.0\",\n \"resolved\": \"https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz\",\n \"integrity\": \"sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==\",\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/mongodb-connection-string-url/node_modules/whatwg-url\": {\n \"version\": \"11.0.0\",\n \"resolved\": \"https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz\",\n \"integrity\": \"sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==\",\n \"dependencies\": {\n \"tr46\": \"^3.0.0\",\n \"webidl-conversions\": \"^7.0.0\"\n },\n \"engines\": {\n \"node\": \">=12\"\n }\n },\n \"node_modules/ms\": {\n \"version\": \"2.1.2\",\n \"resolved\": \"https://registry.npmjs.org/ms/-/ms-2.1.2.tgz\",\n \"integrity\": \"sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==\"\n },\n \"node_modules/mz\": {\n \"version\": \"2.7.0\",\n \"resolved\": \"https://registry.npmjs.org/mz/-/mz-2.7.0.tgz\",\n \"integrity\": \"sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==\",\n \"dependencies\": {\n \"any-promise\": \"^1.0.0\",\n \"object-assign\": \"^4.0.1\",\n \"thenify-all\": \"^1.0.0\"\n }\n },\n \"node_modules/nano-time\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/nano-time/-/nano-time-1.0.0.tgz\",\n \"integrity\": \"sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==\",\n \"dependencies\": {\n \"big-integer\": \"^1.6.16\"\n }\n },\n \"node_modules/nanoid\": {\n \"version\": \"3.3.7\",\n \"resolved\": \"https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz\",\n \"integrity\": \"sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==\",\n \"funding\": [\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/ai\"\n }\n ],\n \"bin\": {\n \"nanoid\": \"bin/nanoid.cjs\"\n },\n \"engines\": {\n \"node\": \"^10 || ^12 || ^13.7 || ^14 || >=15.0.1\"\n }\n },\n \"node_modules/natural-compare\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz\",\n \"integrity\": \"sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==\",\n \"dev\": true\n },\n \"node_modules/next\": {\n \"version\": \"14.2.4\",\n \"resolved\": \"https://registry.npmjs.org/next/-/next-14.2.4.tgz\",\n \"integrity\": \"sha512-R8/V7vugY+822rsQGQCjoLhMuC9oFj9SOi4Cl4b2wjDrseD0LRZ10W7R6Czo4w9ZznVSshKjuIomsRjvm9EKJQ==\",\n \"dependencies\": {\n \"@next/env\": \"14.2.4\",\n \"@swc/helpers\": \"0.5.5\",\n \"busboy\": \"1.6.0\",\n \"caniuse-lite\": \"^1.0.30001579\",\n \"graceful-fs\": \"^4.2.11\",\n \"postcss\": \"8.4.31\",\n \"styled-jsx\": \"5.1.1\"\n },\n \"bin\": {\n \"next\": \"dist/bin/next\"\n },\n \"engines\": {\n \"node\": \">=18.17.0\"\n },\n \"optionalDependencies\": {\n \"@next/swc-darwin-arm64\": \"14.2.4\",\n \"@next/swc-darwin-x64\": \"14.2.4\",\n \"@next/swc-linux-arm64-gnu\": \"14.2.4\",\n \"@next/swc-linux-arm64-musl\": \"14.2.4\",\n \"@next/swc-linux-x64-gnu\": \"14.2.4\",\n \"@next/swc-linux-x64-musl\": \"14.2.4\",\n \"@next/swc-win32-arm64-msvc\": \"14.2.4\",\n \"@next/swc-win32-ia32-msvc\": \"14.2.4\",\n \"@next/swc-win32-x64-msvc\": \"14.2.4\"\n },\n \"peerDependencies\": {\n \"@opentelemetry/api\": \"^1.1.0\",\n \"@playwright/test\": \"^1.41.2\",\n \"react\": \"^18.2.0\",\n \"react-dom\": \"^18.2.0\",\n \"sass\": \"^1.3.0\"\n },\n \"peerDependenciesMeta\": {\n \"@opentelemetry/api\": {\n \"optional\": true\n },\n \"@playwright/test\": {\n \"optional\": true\n },\n \"sass\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/next-auth\": {\n \"version\": \"4.24.7\",\n \"resolved\": \"https://registry.npmjs.org/next-auth/-/next-auth-4.24.7.tgz\",\n \"integrity\": \"sha512-iChjE8ov/1K/z98gdKbn2Jw+2vLgJtVV39X+rCP5SGnVQuco7QOr19FRNGMIrD8d3LYhHWV9j9sKLzq1aDWWQQ==\",\n \"dependencies\": {\n \"@babel/runtime\": \"^7.20.13\",\n \"@panva/hkdf\": \"^1.0.2\",\n \"cookie\": \"^0.5.0\",\n \"jose\": \"^4.15.5\",\n \"oauth\": \"^0.9.15\",\n \"openid-client\": \"^5.4.0\",\n \"preact\": \"^10.6.3\",\n \"preact-render-to-string\": \"^5.1.19\",\n \"uuid\": \"^8.3.2\"\n },\n \"peerDependencies\": {\n \"next\": \"^12.2.5 || ^13 || ^14\",\n \"nodemailer\": \"^6.6.5\",\n \"react\": \"^17.0.2 || ^18\",\n \"react-dom\": \"^17.0.2 || ^18\"\n },\n \"peerDependenciesMeta\": {\n \"nodemailer\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/next-auth/node_modules/uuid\": {\n \"version\": \"8.3.2\",\n \"resolved\": \"https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz\",\n \"integrity\": \"sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==\",\n \"bin\": {\n \"uuid\": \"dist/bin/uuid\"\n }\n },\n \"node_modules/next-themes\": {\n \"version\": \"0.3.0\",\n \"resolved\": \"https://registry.npmjs.org/next-themes/-/next-themes-0.3.0.tgz\",\n \"integrity\": \"sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==\",\n \"peerDependencies\": {\n \"react\": \"^16.8 || ^17 || ^18\",\n \"react-dom\": \"^16.8 || ^17 || ^18\"\n }\n },\n \"node_modules/next/node_modules/postcss\": {\n \"version\": \"8.4.31\",\n \"resolved\": \"https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz\",\n \"integrity\": \"sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==\",\n \"funding\": [\n {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/postcss/\"\n },\n {\n \"type\": \"tidelift\",\n \"url\": \"https://tidelift.com/funding/github/npm/postcss\"\n },\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/ai\"\n }\n ],\n \"dependencies\": {\n \"nanoid\": \"^3.3.6\",\n \"picocolors\": \"^1.0.0\",\n \"source-map-js\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \"^10 || ^12 || >=14\"\n }\n },\n \"node_modules/nextjs-toploader\": {\n \"version\": \"1.6.12\",\n \"resolved\": \"https://registry.npmjs.org/nextjs-toploader/-/nextjs-toploader-1.6.12.tgz\",\n \"integrity\": \"sha512-nbun5lvVjlKnxLQlahzZ55nELVEduqoEXT03KCHnsEYJnFpI/3BaIzpMyq/v8C7UGU2NfxQmjq6ldZ310rsDqA==\",\n \"dependencies\": {\n \"nprogress\": \"^0.2.0\",\n \"prop-types\": \"^15.8.1\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/TheSGJ\"\n },\n \"peerDependencies\": {\n \"next\": \">= 6.0.0\",\n \"react\": \">= 16.0.0\",\n \"react-dom\": \">= 16.0.0\"\n }\n },\n \"node_modules/node-addon-api\": {\n \"version\": \"5.1.0\",\n \"resolved\": \"https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz\",\n \"integrity\": \"sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==\"\n },\n \"node_modules/node-fetch\": {\n \"version\": \"2.7.0\",\n \"resolved\": \"https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz\",\n \"integrity\": \"sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==\",\n \"dependencies\": {\n \"whatwg-url\": \"^5.0.0\"\n },\n \"engines\": {\n \"node\": \"4.x || >=6.0.0\"\n },\n \"peerDependencies\": {\n \"encoding\": \"^0.1.0\"\n },\n \"peerDependenciesMeta\": {\n \"encoding\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/node-releases\": {\n \"version\": \"2.0.14\",\n \"resolved\": \"https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz\",\n \"integrity\": \"sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==\"\n },\n \"node_modules/nopt\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz\",\n \"integrity\": \"sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==\",\n \"dependencies\": {\n \"abbrev\": \"1\"\n },\n \"bin\": {\n \"nopt\": \"bin/nopt.js\"\n },\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/normalize-path\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz\",\n \"integrity\": \"sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==\",\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/normalize-range\": {\n \"version\": \"0.1.2\",\n \"resolved\": \"https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz\",\n \"integrity\": \"sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==\",\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/npmlog\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz\",\n \"integrity\": \"sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==\",\n \"deprecated\": \"This package is no longer supported.\",\n \"dependencies\": {\n \"are-we-there-yet\": \"^2.0.0\",\n \"console-control-strings\": \"^1.1.0\",\n \"gauge\": \"^3.0.0\",\n \"set-blocking\": \"^2.0.0\"\n }\n },\n \"node_modules/nprogress\": {\n \"version\": \"0.2.0\",\n \"resolved\": \"https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz\",\n \"integrity\": \"sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==\"\n },\n \"node_modules/oauth\": {\n \"version\": \"0.9.15\",\n \"resolved\": \"https://registry.npmjs.org/oauth/-/oauth-0.9.15.tgz\",\n \"integrity\": \"sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==\"\n },\n \"node_modules/object-assign\": {\n \"version\": \"4.1.1\",\n \"resolved\": \"https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz\",\n \"integrity\": \"sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==\",\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/object-hash\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz\",\n \"integrity\": \"sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==\",\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/object-inspect\": {\n \"version\": \"1.13.2\",\n \"resolved\": \"https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz\",\n \"integrity\": \"sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==\",\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/object-is\": {\n \"version\": \"1.1.6\",\n \"resolved\": \"https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz\",\n \"integrity\": \"sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/object-keys\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz\",\n \"integrity\": \"sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/object.assign\": {\n \"version\": \"4.1.5\",\n \"resolved\": \"https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz\",\n \"integrity\": \"sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.5\",\n \"define-properties\": \"^1.2.1\",\n \"has-symbols\": \"^1.0.3\",\n \"object-keys\": \"^1.1.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/object.entries\": {\n \"version\": \"1.1.8\",\n \"resolved\": \"https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz\",\n \"integrity\": \"sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-object-atoms\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/object.fromentries\": {\n \"version\": \"2.0.8\",\n \"resolved\": \"https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz\",\n \"integrity\": \"sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.2\",\n \"es-object-atoms\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/object.groupby\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz\",\n \"integrity\": \"sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/object.hasown\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.4.tgz\",\n \"integrity\": \"sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==\",\n \"dev\": true,\n \"dependencies\": {\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.2\",\n \"es-object-atoms\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/object.values\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz\",\n \"integrity\": \"sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-object-atoms\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/oblivious-set\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/oblivious-set/-/oblivious-set-1.0.0.tgz\",\n \"integrity\": \"sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==\"\n },\n \"node_modules/oidc-token-hash\": {\n \"version\": \"5.0.3\",\n \"resolved\": \"https://registry.npmjs.org/oidc-token-hash/-/oidc-token-hash-5.0.3.tgz\",\n \"integrity\": \"sha512-IF4PcGgzAr6XXSff26Sk/+P4KZFJVuHAJZj3wgO3vX2bMdNVp/QXTP3P7CEm9V1IdG8lDLY3HhiqpsE/nOwpPw==\",\n \"engines\": {\n \"node\": \"^10.13.0 || >=12.0.0\"\n }\n },\n \"node_modules/once\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https://registry.npmjs.org/once/-/once-1.4.0.tgz\",\n \"integrity\": \"sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==\",\n \"dependencies\": {\n \"wrappy\": \"1\"\n }\n },\n \"node_modules/openid-client\": {\n \"version\": \"5.6.5\",\n \"resolved\": \"https://registry.npmjs.org/openid-client/-/openid-client-5.6.5.tgz\",\n \"integrity\": \"sha512-5P4qO9nGJzB5PI0LFlhj4Dzg3m4odt0qsJTfyEtZyOlkgpILwEioOhVVJOrS1iVH494S4Ee5OCjjg6Bf5WOj3w==\",\n \"dependencies\": {\n \"jose\": \"^4.15.5\",\n \"lru-cache\": \"^6.0.0\",\n \"object-hash\": \"^2.2.0\",\n \"oidc-token-hash\": \"^5.0.3\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/panva\"\n }\n },\n \"node_modules/openid-client/node_modules/lru-cache\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz\",\n \"integrity\": \"sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==\",\n \"dependencies\": {\n \"yallist\": \"^4.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n }\n },\n \"node_modules/openid-client/node_modules/object-hash\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz\",\n \"integrity\": \"sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==\",\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/optionator\": {\n \"version\": \"0.9.4\",\n \"resolved\": \"https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz\",\n \"integrity\": \"sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==\",\n \"dev\": true,\n \"dependencies\": {\n \"deep-is\": \"^0.1.3\",\n \"fast-levenshtein\": \"^2.0.6\",\n \"levn\": \"^0.4.1\",\n \"prelude-ls\": \"^1.2.1\",\n \"type-check\": \"^0.4.0\",\n \"word-wrap\": \"^1.2.5\"\n },\n \"engines\": {\n \"node\": \">= 0.8.0\"\n }\n },\n \"node_modules/p-limit\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz\",\n \"integrity\": \"sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"yocto-queue\": \"^0.1.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/p-locate\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz\",\n \"integrity\": \"sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==\",\n \"dev\": true,\n \"dependencies\": {\n \"p-limit\": \"^3.0.2\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/parent-module\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz\",\n \"integrity\": \"sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==\",\n \"dev\": true,\n \"dependencies\": {\n \"callsites\": \"^3.0.0\"\n },\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/path-exists\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz\",\n \"integrity\": \"sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/path-is-absolute\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz\",\n \"integrity\": \"sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==\",\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/path-key\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz\",\n \"integrity\": \"sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==\",\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/path-parse\": {\n \"version\": \"1.0.7\",\n \"resolved\": \"https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz\",\n \"integrity\": \"sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==\"\n },\n \"node_modules/path-scurry\": {\n \"version\": \"1.11.1\",\n \"resolved\": \"https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz\",\n \"integrity\": \"sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==\",\n \"dependencies\": {\n \"lru-cache\": \"^10.2.0\",\n \"minipass\": \"^5.0.0 || ^6.0.2 || ^7.0.0\"\n },\n \"engines\": {\n \"node\": \">=16 || 14 >=14.18\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/isaacs\"\n }\n },\n \"node_modules/path-type\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz\",\n \"integrity\": \"sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/picocolors\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz\",\n \"integrity\": \"sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==\"\n },\n \"node_modules/picomatch\": {\n \"version\": \"2.3.1\",\n \"resolved\": \"https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz\",\n \"integrity\": \"sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==\",\n \"engines\": {\n \"node\": \">=8.6\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/jonschlinkert\"\n }\n },\n \"node_modules/pify\": {\n \"version\": \"2.3.0\",\n \"resolved\": \"https://registry.npmjs.org/pify/-/pify-2.3.0.tgz\",\n \"integrity\": \"sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==\",\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/pirates\": {\n \"version\": \"4.0.6\",\n \"resolved\": \"https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz\",\n \"integrity\": \"sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==\",\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/possible-typed-array-names\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz\",\n \"integrity\": \"sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/postcss\": {\n \"version\": \"8.4.39\",\n \"resolved\": \"https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz\",\n \"integrity\": \"sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==\",\n \"funding\": [\n {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/postcss/\"\n },\n {\n \"type\": \"tidelift\",\n \"url\": \"https://tidelift.com/funding/github/npm/postcss\"\n },\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/ai\"\n }\n ],\n \"dependencies\": {\n \"nanoid\": \"^3.3.7\",\n \"picocolors\": \"^1.0.1\",\n \"source-map-js\": \"^1.2.0\"\n },\n \"engines\": {\n \"node\": \"^10 || ^12 || >=14\"\n }\n },\n \"node_modules/postcss-import\": {\n \"version\": \"15.1.0\",\n \"resolved\": \"https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz\",\n \"integrity\": \"sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==\",\n \"dependencies\": {\n \"postcss-value-parser\": \"^4.0.0\",\n \"read-cache\": \"^1.0.0\",\n \"resolve\": \"^1.1.7\"\n },\n \"engines\": {\n \"node\": \">=14.0.0\"\n },\n \"peerDependencies\": {\n \"postcss\": \"^8.0.0\"\n }\n },\n \"node_modules/postcss-js\": {\n \"version\": \"4.0.1\",\n \"resolved\": \"https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz\",\n \"integrity\": \"sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==\",\n \"dependencies\": {\n \"camelcase-css\": \"^2.0.1\"\n },\n \"engines\": {\n \"node\": \"^12 || ^14 || >= 16\"\n },\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/postcss/\"\n },\n \"peerDependencies\": {\n \"postcss\": \"^8.4.21\"\n }\n },\n \"node_modules/postcss-load-config\": {\n \"version\": \"4.0.2\",\n \"resolved\": \"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz\",\n \"integrity\": \"sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==\",\n \"funding\": [\n {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/postcss/\"\n },\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/ai\"\n }\n ],\n \"dependencies\": {\n \"lilconfig\": \"^3.0.0\",\n \"yaml\": \"^2.3.4\"\n },\n \"engines\": {\n \"node\": \">= 14\"\n },\n \"peerDependencies\": {\n \"postcss\": \">=8.0.9\",\n \"ts-node\": \">=9.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"postcss\": {\n \"optional\": true\n },\n \"ts-node\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/postcss-load-config/node_modules/lilconfig\": {\n \"version\": \"3.1.2\",\n \"resolved\": \"https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz\",\n \"integrity\": \"sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==\",\n \"engines\": {\n \"node\": \">=14\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/antonk52\"\n }\n },\n \"node_modules/postcss-nested\": {\n \"version\": \"6.0.1\",\n \"resolved\": \"https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz\",\n \"integrity\": \"sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==\",\n \"dependencies\": {\n \"postcss-selector-parser\": \"^6.0.11\"\n },\n \"engines\": {\n \"node\": \">=12.0\"\n },\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/postcss/\"\n },\n \"peerDependencies\": {\n \"postcss\": \"^8.2.14\"\n }\n },\n \"node_modules/postcss-selector-parser\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz\",\n \"integrity\": \"sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==\",\n \"dependencies\": {\n \"cssesc\": \"^3.0.0\",\n \"util-deprecate\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">=4\"\n }\n },\n \"node_modules/postcss-value-parser\": {\n \"version\": \"4.2.0\",\n \"resolved\": \"https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz\",\n \"integrity\": \"sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==\"\n },\n \"node_modules/preact\": {\n \"version\": \"10.23.2\",\n \"resolved\": \"https://registry.npmjs.org/preact/-/preact-10.23.2.tgz\",\n \"integrity\": \"sha512-kKYfePf9rzKnxOAKDpsWhg/ysrHPqT+yQ7UW4JjdnqjFIeNUnNcEJvhuA8fDenxAGWzUqtd51DfVg7xp/8T9NA==\",\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/preact\"\n }\n },\n \"node_modules/preact-render-to-string\": {\n \"version\": \"5.2.6\",\n \"resolved\": \"https://registry.npmjs.org/preact-render-to-string/-/preact-render-to-string-5.2.6.tgz\",\n \"integrity\": \"sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==\",\n \"dependencies\": {\n \"pretty-format\": \"^3.8.0\"\n },\n \"peerDependencies\": {\n \"preact\": \">=10\"\n }\n },\n \"node_modules/prelude-ls\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz\",\n \"integrity\": \"sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">= 0.8.0\"\n }\n },\n \"node_modules/pretty-format\": {\n \"version\": \"3.8.0\",\n \"resolved\": \"https://registry.npmjs.org/pretty-format/-/pretty-format-3.8.0.tgz\",\n \"integrity\": \"sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==\"\n },\n \"node_modules/prisma\": {\n \"version\": \"5.20.0\",\n \"resolved\": \"https://registry.npmjs.org/prisma/-/prisma-5.20.0.tgz\",\n \"integrity\": \"sha512-6obb3ucKgAnsGS9x9gLOe8qa51XxvJ3vLQtmyf52CTey1Qcez3A6W6ROH5HIz5Q5bW+0VpmZb8WBohieMFGpig==\",\n \"devOptional\": true,\n \"hasInstallScript\": true,\n \"dependencies\": {\n \"@prisma/engines\": \"5.20.0\"\n },\n \"bin\": {\n \"prisma\": \"build/index.js\"\n },\n \"engines\": {\n \"node\": \">=16.13\"\n },\n \"optionalDependencies\": {\n \"fsevents\": \"2.3.3\"\n }\n },\n \"node_modules/prop-types\": {\n \"version\": \"15.8.1\",\n \"resolved\": \"https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz\",\n \"integrity\": \"sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==\",\n \"dependencies\": {\n \"loose-envify\": \"^1.4.0\",\n \"object-assign\": \"^4.1.1\",\n \"react-is\": \"^16.13.1\"\n }\n },\n \"node_modules/property-expr\": {\n \"version\": \"2.0.6\",\n \"resolved\": \"https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz\",\n \"integrity\": \"sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==\"\n },\n \"node_modules/proxy-from-env\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz\",\n \"integrity\": \"sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==\"\n },\n \"node_modules/punycode\": {\n \"version\": \"2.3.1\",\n \"resolved\": \"https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz\",\n \"integrity\": \"sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==\",\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/qs\": {\n \"version\": \"6.13.0\",\n \"resolved\": \"https://registry.npmjs.org/qs/-/qs-6.13.0.tgz\",\n \"integrity\": \"sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==\",\n \"dependencies\": {\n \"side-channel\": \"^1.0.6\"\n },\n \"engines\": {\n \"node\": \">=0.6\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/queue-microtask\": {\n \"version\": \"1.2.3\",\n \"resolved\": \"https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz\",\n \"integrity\": \"sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==\",\n \"funding\": [\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/feross\"\n },\n {\n \"type\": \"patreon\",\n \"url\": \"https://www.patreon.com/feross\"\n },\n {\n \"type\": \"consulting\",\n \"url\": \"https://feross.org/support\"\n }\n ]\n },\n \"node_modules/razorpay\": {\n \"version\": \"2.9.4\",\n \"resolved\": \"https://registry.npmjs.org/razorpay/-/razorpay-2.9.4.tgz\",\n \"integrity\": \"sha512-CvOitdgM5HNr+zl174fHpZoJKVFYEfPoGx798kX+kg3haGDD3xinzxTzRUIOzLnL1/F4e7mUoIaGNn0h1E929Q==\",\n \"dependencies\": {\n \"axios\": \"^1.6.8\"\n }\n },\n \"node_modules/react\": {\n \"version\": \"18.3.1\",\n \"resolved\": \"https://registry.npmjs.org/react/-/react-18.3.1.tgz\",\n \"integrity\": \"sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==\",\n \"dependencies\": {\n \"loose-envify\": \"^1.1.0\"\n },\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/react-dom\": {\n \"version\": \"18.3.1\",\n \"resolved\": \"https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz\",\n \"integrity\": \"sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==\",\n \"dependencies\": {\n \"loose-envify\": \"^1.1.0\",\n \"scheduler\": \"^0.23.2\"\n },\n \"peerDependencies\": {\n \"react\": \"^18.3.1\"\n }\n },\n \"node_modules/react-draggable\": {\n \"version\": \"4.4.6\",\n \"resolved\": \"https://registry.npmjs.org/react-draggable/-/react-draggable-4.4.6.tgz\",\n \"integrity\": \"sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==\",\n \"dependencies\": {\n \"clsx\": \"^1.1.1\",\n \"prop-types\": \"^15.8.1\"\n },\n \"peerDependencies\": {\n \"react\": \">= 16.3.0\",\n \"react-dom\": \">= 16.3.0\"\n }\n },\n \"node_modules/react-draggable/node_modules/clsx\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz\",\n \"integrity\": \"sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==\",\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/react-hook-form\": {\n \"version\": \"7.53.0\",\n \"resolved\": \"https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.53.0.tgz\",\n \"integrity\": \"sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ==\",\n \"engines\": {\n \"node\": \">=18.0.0\"\n },\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/react-hook-form\"\n },\n \"peerDependencies\": {\n \"react\": \"^16.8.0 || ^17 || ^18 || ^19\"\n }\n },\n \"node_modules/react-icons\": {\n \"version\": \"5.3.0\",\n \"resolved\": \"https://registry.npmjs.org/react-icons/-/react-icons-5.3.0.tgz\",\n \"integrity\": \"sha512-DnUk8aFbTyQPSkCfF8dbX6kQjXA9DktMeJqfjrg6cK9vwQVMxmcA3BfP4QoiztVmEHtwlTgLFsPuH2NskKT6eg==\",\n \"peerDependencies\": {\n \"react\": \"*\"\n }\n },\n \"node_modules/react-is\": {\n \"version\": \"16.13.1\",\n \"resolved\": \"https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz\",\n \"integrity\": \"sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==\"\n },\n \"node_modules/react-query\": {\n \"version\": \"3.39.3\",\n \"resolved\": \"https://registry.npmjs.org/react-query/-/react-query-3.39.3.tgz\",\n \"integrity\": \"sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==\",\n \"dependencies\": {\n \"@babel/runtime\": \"^7.5.5\",\n \"broadcast-channel\": \"^3.4.1\",\n \"match-sorter\": \"^6.0.2\"\n },\n \"funding\": {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/tannerlinsley\"\n },\n \"peerDependencies\": {\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"react-dom\": {\n \"optional\": true\n },\n \"react-native\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/react-razorpay\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https://registry.npmjs.org/react-razorpay/-/react-razorpay-3.0.1.tgz\",\n \"integrity\": \"sha512-43P6VB20quinlUDN3dUdg0XlMtoClzfvhgpPWnGrLwLE6Pr570fXdA4kC+92Wqof48A/x96TXRpLnrQ/J1eXyw==\",\n \"peerDependencies\": {\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0\"\n }\n },\n \"node_modules/react-redux\": {\n \"version\": \"9.1.2\",\n \"resolved\": \"https://registry.npmjs.org/react-redux/-/react-redux-9.1.2.tgz\",\n \"integrity\": \"sha512-0OA4dhM1W48l3uzmv6B7TXPCGmokUU4p1M44DGN2/D9a1FjVPukVjER1PcPX97jIg6aUeLq1XJo1IpfbgULn0w==\",\n \"dependencies\": {\n \"@types/use-sync-external-store\": \"^0.0.3\",\n \"use-sync-external-store\": \"^1.0.0\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"^18.2.25\",\n \"react\": \"^18.0\",\n \"redux\": \"^5.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n },\n \"redux\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/react-remove-scroll\": {\n \"version\": \"2.5.7\",\n \"resolved\": \"https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz\",\n \"integrity\": \"sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==\",\n \"dependencies\": {\n \"react-remove-scroll-bar\": \"^2.3.4\",\n \"react-style-singleton\": \"^2.2.1\",\n \"tslib\": \"^2.1.0\",\n \"use-callback-ref\": \"^1.3.0\",\n \"use-sidecar\": \"^1.1.2\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\",\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/react-remove-scroll-bar\": {\n \"version\": \"2.3.6\",\n \"resolved\": \"https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz\",\n \"integrity\": \"sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==\",\n \"dependencies\": {\n \"react-style-singleton\": \"^2.2.1\",\n \"tslib\": \"^2.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\",\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/react-smooth\": {\n \"version\": \"4.0.1\",\n \"resolved\": \"https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.1.tgz\",\n \"integrity\": \"sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==\",\n \"dependencies\": {\n \"fast-equals\": \"^5.0.1\",\n \"prop-types\": \"^15.8.1\",\n \"react-transition-group\": \"^4.4.5\"\n },\n \"peerDependencies\": {\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\",\n \"react-dom\": \"^16.8.0 || ^17.0.0 || ^18.0.0\"\n }\n },\n \"node_modules/react-style-singleton\": {\n \"version\": \"2.2.1\",\n \"resolved\": \"https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz\",\n \"integrity\": \"sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==\",\n \"dependencies\": {\n \"get-nonce\": \"^1.0.0\",\n \"invariant\": \"^2.2.4\",\n \"tslib\": \"^2.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\",\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/react-transition-group\": {\n \"version\": \"4.4.5\",\n \"resolved\": \"https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz\",\n \"integrity\": \"sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==\",\n \"dependencies\": {\n \"@babel/runtime\": \"^7.5.5\",\n \"dom-helpers\": \"^5.0.1\",\n \"loose-envify\": \"^1.4.0\",\n \"prop-types\": \"^15.6.2\"\n },\n \"peerDependencies\": {\n \"react\": \">=16.6.0\",\n \"react-dom\": \">=16.6.0\"\n }\n },\n \"node_modules/react-use-websocket\": {\n \"version\": \"4.8.1\",\n \"resolved\": \"https://registry.npmjs.org/react-use-websocket/-/react-use-websocket-4.8.1.tgz\",\n \"integrity\": \"sha512-FTXuG5O+LFozmu1BRfrzl7UIQngECvGJmL7BHsK4TYXuVt+mCizVA8lT0hGSIF0Z0TedF7bOo1nRzOUdginhDw==\",\n \"peerDependencies\": {\n \"react\": \">= 18.0.0\",\n \"react-dom\": \">= 18.0.0\"\n }\n },\n \"node_modules/read-cache\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz\",\n \"integrity\": \"sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==\",\n \"dependencies\": {\n \"pify\": \"^2.3.0\"\n }\n },\n \"node_modules/readable-stream\": {\n \"version\": \"3.6.2\",\n \"resolved\": \"https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz\",\n \"integrity\": \"sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==\",\n \"dependencies\": {\n \"inherits\": \"^2.0.3\",\n \"string_decoder\": \"^1.1.1\",\n \"util-deprecate\": \"^1.0.1\"\n },\n \"engines\": {\n \"node\": \">= 6\"\n }\n },\n \"node_modules/readdirp\": {\n \"version\": \"3.6.0\",\n \"resolved\": \"https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz\",\n \"integrity\": \"sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==\",\n \"dependencies\": {\n \"picomatch\": \"^2.2.1\"\n },\n \"engines\": {\n \"node\": \">=8.10.0\"\n }\n },\n \"node_modules/recharts\": {\n \"version\": \"2.12.7\",\n \"resolved\": \"https://registry.npmjs.org/recharts/-/recharts-2.12.7.tgz\",\n \"integrity\": \"sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==\",\n \"dependencies\": {\n \"clsx\": \"^2.0.0\",\n \"eventemitter3\": \"^4.0.1\",\n \"lodash\": \"^4.17.21\",\n \"react-is\": \"^16.10.2\",\n \"react-smooth\": \"^4.0.0\",\n \"recharts-scale\": \"^0.4.4\",\n \"tiny-invariant\": \"^1.3.1\",\n \"victory-vendor\": \"^36.6.8\"\n },\n \"engines\": {\n \"node\": \">=14\"\n },\n \"peerDependencies\": {\n \"react\": \"^16.0.0 || ^17.0.0 || ^18.0.0\",\n \"react-dom\": \"^16.0.0 || ^17.0.0 || ^18.0.0\"\n }\n },\n \"node_modules/recharts-scale\": {\n \"version\": \"0.4.5\",\n \"resolved\": \"https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz\",\n \"integrity\": \"sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==\",\n \"dependencies\": {\n \"decimal.js-light\": \"^2.4.1\"\n }\n },\n \"node_modules/redux\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https://registry.npmjs.org/redux/-/redux-5.0.1.tgz\",\n \"integrity\": \"sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==\"\n },\n \"node_modules/redux-thunk\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz\",\n \"integrity\": \"sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==\",\n \"peerDependencies\": {\n \"redux\": \"^5.0.0\"\n }\n },\n \"node_modules/reflect.getprototypeof\": {\n \"version\": \"1.0.6\",\n \"resolved\": \"https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz\",\n \"integrity\": \"sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.1\",\n \"es-errors\": \"^1.3.0\",\n \"get-intrinsic\": \"^1.2.4\",\n \"globalthis\": \"^1.0.3\",\n \"which-builtin-type\": \"^1.1.3\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/regenerator-runtime\": {\n \"version\": \"0.14.1\",\n \"resolved\": \"https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz\",\n \"integrity\": \"sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==\"\n },\n \"node_modules/regexp.prototype.flags\": {\n \"version\": \"1.5.2\",\n \"resolved\": \"https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz\",\n \"integrity\": \"sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.6\",\n \"define-properties\": \"^1.2.1\",\n \"es-errors\": \"^1.3.0\",\n \"set-function-name\": \"^2.0.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/remove-accents\": {\n \"version\": \"0.5.0\",\n \"resolved\": \"https://registry.npmjs.org/remove-accents/-/remove-accents-0.5.0.tgz\",\n \"integrity\": \"sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==\"\n },\n \"node_modules/reselect\": {\n \"version\": \"5.1.1\",\n \"resolved\": \"https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz\",\n \"integrity\": \"sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==\"\n },\n \"node_modules/resolve\": {\n \"version\": \"1.22.8\",\n \"resolved\": \"https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz\",\n \"integrity\": \"sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==\",\n \"dependencies\": {\n \"is-core-module\": \"^2.13.0\",\n \"path-parse\": \"^1.0.7\",\n \"supports-preserve-symlinks-flag\": \"^1.0.0\"\n },\n \"bin\": {\n \"resolve\": \"bin/resolve\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/resolve-from\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz\",\n \"integrity\": \"sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=4\"\n }\n },\n \"node_modules/resolve-pkg-maps\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz\",\n \"integrity\": \"sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==\",\n \"dev\": true,\n \"funding\": {\n \"url\": \"https://github.com/privatenumber/resolve-pkg-maps?sponsor=1\"\n }\n },\n \"node_modules/reusify\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz\",\n \"integrity\": \"sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==\",\n \"engines\": {\n \"iojs\": \">=1.0.0\",\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/rimraf\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz\",\n \"integrity\": \"sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==\",\n \"deprecated\": \"Rimraf versions prior to v4 are no longer supported\",\n \"dependencies\": {\n \"glob\": \"^7.1.3\"\n },\n \"bin\": {\n \"rimraf\": \"bin.js\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/isaacs\"\n }\n },\n \"node_modules/rimraf/node_modules/glob\": {\n \"version\": \"7.2.3\",\n \"resolved\": \"https://registry.npmjs.org/glob/-/glob-7.2.3.tgz\",\n \"integrity\": \"sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==\",\n \"deprecated\": \"Glob versions prior to v9 are no longer supported\",\n \"dependencies\": {\n \"fs.realpath\": \"^1.0.0\",\n \"inflight\": \"^1.0.4\",\n \"inherits\": \"2\",\n \"minimatch\": \"^3.1.1\",\n \"once\": \"^1.3.0\",\n \"path-is-absolute\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \"*\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/isaacs\"\n }\n },\n \"node_modules/run-parallel\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz\",\n \"integrity\": \"sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==\",\n \"funding\": [\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/feross\"\n },\n {\n \"type\": \"patreon\",\n \"url\": \"https://www.patreon.com/feross\"\n },\n {\n \"type\": \"consulting\",\n \"url\": \"https://feross.org/support\"\n }\n ],\n \"dependencies\": {\n \"queue-microtask\": \"^1.2.2\"\n }\n },\n \"node_modules/safe-array-concat\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz\",\n \"integrity\": \"sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"get-intrinsic\": \"^1.2.4\",\n \"has-symbols\": \"^1.0.3\",\n \"isarray\": \"^2.0.5\"\n },\n \"engines\": {\n \"node\": \">=0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/safe-buffer\": {\n \"version\": \"5.2.1\",\n \"resolved\": \"https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz\",\n \"integrity\": \"sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==\",\n \"funding\": [\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/feross\"\n },\n {\n \"type\": \"patreon\",\n \"url\": \"https://www.patreon.com/feross\"\n },\n {\n \"type\": \"consulting\",\n \"url\": \"https://feross.org/support\"\n }\n ]\n },\n \"node_modules/safe-regex-test\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz\",\n \"integrity\": \"sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.6\",\n \"es-errors\": \"^1.3.0\",\n \"is-regex\": \"^1.1.4\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/scheduler\": {\n \"version\": \"0.23.2\",\n \"resolved\": \"https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz\",\n \"integrity\": \"sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==\",\n \"dependencies\": {\n \"loose-envify\": \"^1.1.0\"\n }\n },\n \"node_modules/semver\": {\n \"version\": \"7.6.3\",\n \"resolved\": \"https://registry.npmjs.org/semver/-/semver-7.6.3.tgz\",\n \"integrity\": \"sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==\",\n \"bin\": {\n \"semver\": \"bin/semver.js\"\n },\n \"engines\": {\n \"node\": \">=10\"\n }\n },\n \"node_modules/set-blocking\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz\",\n \"integrity\": \"sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==\"\n },\n \"node_modules/set-function-length\": {\n \"version\": \"1.2.2\",\n \"resolved\": \"https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz\",\n \"integrity\": \"sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==\",\n \"dependencies\": {\n \"define-data-property\": \"^1.1.4\",\n \"es-errors\": \"^1.3.0\",\n \"function-bind\": \"^1.1.2\",\n \"get-intrinsic\": \"^1.2.4\",\n \"gopd\": \"^1.0.1\",\n \"has-property-descriptors\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/set-function-name\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz\",\n \"integrity\": \"sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"define-data-property\": \"^1.1.4\",\n \"es-errors\": \"^1.3.0\",\n \"functions-have-names\": \"^1.2.3\",\n \"has-property-descriptors\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/sharp\": {\n \"version\": \"0.33.5\",\n \"resolved\": \"https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz\",\n \"integrity\": \"sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==\",\n \"hasInstallScript\": true,\n \"dependencies\": {\n \"color\": \"^4.2.3\",\n \"detect-libc\": \"^2.0.3\",\n \"semver\": \"^7.6.3\"\n },\n \"engines\": {\n \"node\": \"^18.17.0 || ^20.3.0 || >=21.0.0\"\n },\n \"funding\": {\n \"url\": \"https://opencollective.com/libvips\"\n },\n \"optionalDependencies\": {\n \"@img/sharp-darwin-arm64\": \"0.33.5\",\n \"@img/sharp-darwin-x64\": \"0.33.5\",\n \"@img/sharp-libvips-darwin-arm64\": \"1.0.4\",\n \"@img/sharp-libvips-darwin-x64\": \"1.0.4\",\n \"@img/sharp-libvips-linux-arm\": \"1.0.5\",\n \"@img/sharp-libvips-linux-arm64\": \"1.0.4\",\n \"@img/sharp-libvips-linux-s390x\": \"1.0.4\",\n \"@img/sharp-libvips-linux-x64\": \"1.0.4\",\n \"@img/sharp-libvips-linuxmusl-arm64\": \"1.0.4\",\n \"@img/sharp-libvips-linuxmusl-x64\": \"1.0.4\",\n \"@img/sharp-linux-arm\": \"0.33.5\",\n \"@img/sharp-linux-arm64\": \"0.33.5\",\n \"@img/sharp-linux-s390x\": \"0.33.5\",\n \"@img/sharp-linux-x64\": \"0.33.5\",\n \"@img/sharp-linuxmusl-arm64\": \"0.33.5\",\n \"@img/sharp-linuxmusl-x64\": \"0.33.5\",\n \"@img/sharp-wasm32\": \"0.33.5\",\n \"@img/sharp-win32-ia32\": \"0.33.5\",\n \"@img/sharp-win32-x64\": \"0.33.5\"\n }\n },\n \"node_modules/shebang-command\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz\",\n \"integrity\": \"sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==\",\n \"dependencies\": {\n \"shebang-regex\": \"^3.0.0\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/shebang-regex\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz\",\n \"integrity\": \"sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==\",\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/short-uuid\": {\n \"version\": \"5.2.0\",\n \"resolved\": \"https://registry.npmjs.org/short-uuid/-/short-uuid-5.2.0.tgz\",\n \"integrity\": \"sha512-296/Nzi4DmANh93iYBwT4NoYRJuHnKEzefrkSagQbTH/A6NTaB68hSPDjm5IlbI5dx9FXdmtqPcj6N5H+CPm6w==\",\n \"dependencies\": {\n \"any-base\": \"^1.1.0\",\n \"uuid\": \"^9.0.1\"\n },\n \"engines\": {\n \"node\": \">=14\"\n }\n },\n \"node_modules/side-channel\": {\n \"version\": \"1.0.6\",\n \"resolved\": \"https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz\",\n \"integrity\": \"sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==\",\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"es-errors\": \"^1.3.0\",\n \"get-intrinsic\": \"^1.2.4\",\n \"object-inspect\": \"^1.13.1\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/signal-exit\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz\",\n \"integrity\": \"sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==\",\n \"engines\": {\n \"node\": \">=14\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/isaacs\"\n }\n },\n \"node_modules/simple-swizzle\": {\n \"version\": \"0.2.2\",\n \"resolved\": \"https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz\",\n \"integrity\": \"sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==\",\n \"dependencies\": {\n \"is-arrayish\": \"^0.3.1\"\n }\n },\n \"node_modules/slash\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https://registry.npmjs.org/slash/-/slash-3.0.0.tgz\",\n \"integrity\": \"sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/smart-buffer\": {\n \"version\": \"4.2.0\",\n \"resolved\": \"https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz\",\n \"integrity\": \"sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==\",\n \"engines\": {\n \"node\": \">= 6.0.0\",\n \"npm\": \">= 3.0.0\"\n }\n },\n \"node_modules/socks\": {\n \"version\": \"2.8.3\",\n \"resolved\": \"https://registry.npmjs.org/socks/-/socks-2.8.3.tgz\",\n \"integrity\": \"sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==\",\n \"dependencies\": {\n \"ip-address\": \"^9.0.5\",\n \"smart-buffer\": \"^4.2.0\"\n },\n \"engines\": {\n \"node\": \">= 10.0.0\",\n \"npm\": \">= 3.0.0\"\n }\n },\n \"node_modules/source-map-js\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz\",\n \"integrity\": \"sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==\",\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/sparse-bitfield\": {\n \"version\": \"3.0.3\",\n \"resolved\": \"https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz\",\n \"integrity\": \"sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==\",\n \"optional\": true,\n \"dependencies\": {\n \"memory-pager\": \"^1.0.2\"\n }\n },\n \"node_modules/sprintf-js\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz\",\n \"integrity\": \"sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==\"\n },\n \"node_modules/stop-iteration-iterator\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz\",\n \"integrity\": \"sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"internal-slot\": \"^1.0.4\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/streamsearch\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz\",\n \"integrity\": \"sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==\",\n \"engines\": {\n \"node\": \">=10.0.0\"\n }\n },\n \"node_modules/string_decoder\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz\",\n \"integrity\": \"sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==\",\n \"dependencies\": {\n \"safe-buffer\": \"~5.2.0\"\n }\n },\n \"node_modules/string-width\": {\n \"version\": \"5.1.2\",\n \"resolved\": \"https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz\",\n \"integrity\": \"sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==\",\n \"dependencies\": {\n \"eastasianwidth\": \"^0.2.0\",\n \"emoji-regex\": \"^9.2.2\",\n \"strip-ansi\": \"^7.0.1\"\n },\n \"engines\": {\n \"node\": \">=12\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/string-width-cjs\": {\n \"name\": \"string-width\",\n \"version\": \"4.2.3\",\n \"resolved\": \"https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz\",\n \"integrity\": \"sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==\",\n \"dependencies\": {\n \"emoji-regex\": \"^8.0.0\",\n \"is-fullwidth-code-point\": \"^3.0.0\",\n \"strip-ansi\": \"^6.0.1\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/string-width-cjs/node_modules/emoji-regex\": {\n \"version\": \"8.0.0\",\n \"resolved\": \"https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz\",\n \"integrity\": \"sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==\"\n },\n \"node_modules/string-width/node_modules/ansi-regex\": {\n \"version\": \"6.0.1\",\n \"resolved\": \"https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz\",\n \"integrity\": \"sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==\",\n \"engines\": {\n \"node\": \">=12\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/ansi-regex?sponsor=1\"\n }\n },\n \"node_modules/string-width/node_modules/strip-ansi\": {\n \"version\": \"7.1.0\",\n \"resolved\": \"https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz\",\n \"integrity\": \"sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==\",\n \"dependencies\": {\n \"ansi-regex\": \"^6.0.1\"\n },\n \"engines\": {\n \"node\": \">=12\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/strip-ansi?sponsor=1\"\n }\n },\n \"node_modules/string.prototype.includes\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz\",\n \"integrity\": \"sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==\",\n \"dev\": true,\n \"dependencies\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.17.5\"\n }\n },\n \"node_modules/string.prototype.matchall\": {\n \"version\": \"4.0.11\",\n \"resolved\": \"https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz\",\n \"integrity\": \"sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.2\",\n \"es-errors\": \"^1.3.0\",\n \"es-object-atoms\": \"^1.0.0\",\n \"get-intrinsic\": \"^1.2.4\",\n \"gopd\": \"^1.0.1\",\n \"has-symbols\": \"^1.0.3\",\n \"internal-slot\": \"^1.0.7\",\n \"regexp.prototype.flags\": \"^1.5.2\",\n \"set-function-name\": \"^2.0.2\",\n \"side-channel\": \"^1.0.6\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/string.prototype.trim\": {\n \"version\": \"1.2.9\",\n \"resolved\": \"https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz\",\n \"integrity\": \"sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-abstract\": \"^1.23.0\",\n \"es-object-atoms\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/string.prototype.trimend\": {\n \"version\": \"1.0.8\",\n \"resolved\": \"https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz\",\n \"integrity\": \"sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-object-atoms\": \"^1.0.0\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/string.prototype.trimstart\": {\n \"version\": \"1.0.8\",\n \"resolved\": \"https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz\",\n \"integrity\": \"sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"define-properties\": \"^1.2.1\",\n \"es-object-atoms\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/strip-ansi\": {\n \"version\": \"6.0.1\",\n \"resolved\": \"https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz\",\n \"integrity\": \"sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==\",\n \"dependencies\": {\n \"ansi-regex\": \"^5.0.1\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/strip-ansi-cjs\": {\n \"name\": \"strip-ansi\",\n \"version\": \"6.0.1\",\n \"resolved\": \"https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz\",\n \"integrity\": \"sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==\",\n \"dependencies\": {\n \"ansi-regex\": \"^5.0.1\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/strip-bom\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz\",\n \"integrity\": \"sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=4\"\n }\n },\n \"node_modules/strip-json-comments\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz\",\n \"integrity\": \"sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=8\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/stripe\": {\n \"version\": \"16.12.0\",\n \"resolved\": \"https://registry.npmjs.org/stripe/-/stripe-16.12.0.tgz\",\n \"integrity\": \"sha512-H7eFVLDxeTNNSn4JTRfL2//LzCbDrMSZ+2q1c7CanVWgK2qIW5TwS+0V7N9KcKZZNpYh/uCqK0PyZh/2UsaAtQ==\",\n \"dependencies\": {\n \"@types/node\": \">=8.1.0\",\n \"qs\": \"^6.11.0\"\n },\n \"engines\": {\n \"node\": \">=12.*\"\n }\n },\n \"node_modules/styled-jsx\": {\n \"version\": \"5.1.1\",\n \"resolved\": \"https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz\",\n \"integrity\": \"sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==\",\n \"dependencies\": {\n \"client-only\": \"0.0.1\"\n },\n \"engines\": {\n \"node\": \">= 12.0.0\"\n },\n \"peerDependencies\": {\n \"react\": \">= 16.8.0 || 17.x.x || ^18.0.0-0\"\n },\n \"peerDependenciesMeta\": {\n \"@babel/core\": {\n \"optional\": true\n },\n \"babel-plugin-macros\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/sucrase\": {\n \"version\": \"3.35.0\",\n \"resolved\": \"https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz\",\n \"integrity\": \"sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==\",\n \"dependencies\": {\n \"@jridgewell/gen-mapping\": \"^0.3.2\",\n \"commander\": \"^4.0.0\",\n \"glob\": \"^10.3.10\",\n \"lines-and-columns\": \"^1.1.6\",\n \"mz\": \"^2.7.0\",\n \"pirates\": \"^4.0.1\",\n \"ts-interface-checker\": \"^0.1.9\"\n },\n \"bin\": {\n \"sucrase\": \"bin/sucrase\",\n \"sucrase-node\": \"bin/sucrase-node\"\n },\n \"engines\": {\n \"node\": \">=16 || 14 >=14.17\"\n }\n },\n \"node_modules/supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"dependencies\": {\n \"has-flag\": \"^4.0.0\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/supports-preserve-symlinks-flag\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz\",\n \"integrity\": \"sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==\",\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/tailwind-merge\": {\n \"version\": \"2.4.0\",\n \"resolved\": \"https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.4.0.tgz\",\n \"integrity\": \"sha512-49AwoOQNKdqKPd9CViyH5wJoSKsCDjUlzL8DxuGp3P1FsGY36NJDAa18jLZcaHAUUuTj+JB8IAo8zWgBNvBF7A==\",\n \"funding\": {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/dcastil\"\n }\n },\n \"node_modules/tailwindcss\": {\n \"version\": \"3.4.4\",\n \"resolved\": \"https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.4.tgz\",\n \"integrity\": \"sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==\",\n \"dependencies\": {\n \"@alloc/quick-lru\": \"^5.2.0\",\n \"arg\": \"^5.0.2\",\n \"chokidar\": \"^3.5.3\",\n \"didyoumean\": \"^1.2.2\",\n \"dlv\": \"^1.1.3\",\n \"fast-glob\": \"^3.3.0\",\n \"glob-parent\": \"^6.0.2\",\n \"is-glob\": \"^4.0.3\",\n \"jiti\": \"^1.21.0\",\n \"lilconfig\": \"^2.1.0\",\n \"micromatch\": \"^4.0.5\",\n \"normalize-path\": \"^3.0.0\",\n \"object-hash\": \"^3.0.0\",\n \"picocolors\": \"^1.0.0\",\n \"postcss\": \"^8.4.23\",\n \"postcss-import\": \"^15.1.0\",\n \"postcss-js\": \"^4.0.1\",\n \"postcss-load-config\": \"^4.0.1\",\n \"postcss-nested\": \"^6.0.1\",\n \"postcss-selector-parser\": \"^6.0.11\",\n \"resolve\": \"^1.22.2\",\n \"sucrase\": \"^3.32.0\"\n },\n \"bin\": {\n \"tailwind\": \"lib/cli.js\",\n \"tailwindcss\": \"lib/cli.js\"\n },\n \"engines\": {\n \"node\": \">=14.0.0\"\n }\n },\n \"node_modules/tailwindcss-animate\": {\n \"version\": \"1.0.7\",\n \"resolved\": \"https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz\",\n \"integrity\": \"sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==\",\n \"peerDependencies\": {\n \"tailwindcss\": \">=3.0.0 || insiders\"\n }\n },\n \"node_modules/tapable\": {\n \"version\": \"2.2.1\",\n \"resolved\": \"https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz\",\n \"integrity\": \"sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=6\"\n }\n },\n \"node_modules/tar\": {\n \"version\": \"6.2.1\",\n \"resolved\": \"https://registry.npmjs.org/tar/-/tar-6.2.1.tgz\",\n \"integrity\": \"sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==\",\n \"dependencies\": {\n \"chownr\": \"^2.0.0\",\n \"fs-minipass\": \"^2.0.0\",\n \"minipass\": \"^5.0.0\",\n \"minizlib\": \"^2.1.1\",\n \"mkdirp\": \"^1.0.3\",\n \"yallist\": \"^4.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n }\n },\n \"node_modules/tar/node_modules/minipass\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz\",\n \"integrity\": \"sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==\",\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/text-table\": {\n \"version\": \"0.2.0\",\n \"resolved\": \"https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz\",\n \"integrity\": \"sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==\",\n \"dev\": true\n },\n \"node_modules/thenify\": {\n \"version\": \"3.3.1\",\n \"resolved\": \"https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz\",\n \"integrity\": \"sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==\",\n \"dependencies\": {\n \"any-promise\": \"^1.0.0\"\n }\n },\n \"node_modules/thenify-all\": {\n \"version\": \"1.6.0\",\n \"resolved\": \"https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz\",\n \"integrity\": \"sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==\",\n \"dependencies\": {\n \"thenify\": \">= 3.1.0 < 4\"\n },\n \"engines\": {\n \"node\": \">=0.8\"\n }\n },\n \"node_modules/tiny-case\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https://registry.npmjs.org/tiny-case/-/tiny-case-1.0.3.tgz\",\n \"integrity\": \"sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==\"\n },\n \"node_modules/tiny-invariant\": {\n \"version\": \"1.3.3\",\n \"resolved\": \"https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz\",\n \"integrity\": \"sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==\"\n },\n \"node_modules/to-regex-range\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz\",\n \"integrity\": \"sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==\",\n \"dependencies\": {\n \"is-number\": \"^7.0.0\"\n },\n \"engines\": {\n \"node\": \">=8.0\"\n }\n },\n \"node_modules/toposort\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz\",\n \"integrity\": \"sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==\"\n },\n \"node_modules/tr46\": {\n \"version\": \"0.0.3\",\n \"resolved\": \"https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz\",\n \"integrity\": \"sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==\"\n },\n \"node_modules/ts-api-utils\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz\",\n \"integrity\": \"sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=16\"\n },\n \"peerDependencies\": {\n \"typescript\": \">=4.2.0\"\n }\n },\n \"node_modules/ts-interface-checker\": {\n \"version\": \"0.1.13\",\n \"resolved\": \"https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz\",\n \"integrity\": \"sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==\"\n },\n \"node_modules/tsconfig-paths\": {\n \"version\": \"3.15.0\",\n \"resolved\": \"https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz\",\n \"integrity\": \"sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==\",\n \"dev\": true,\n \"dependencies\": {\n \"@types/json5\": \"^0.0.29\",\n \"json5\": \"^1.0.2\",\n \"minimist\": \"^1.2.6\",\n \"strip-bom\": \"^3.0.0\"\n }\n },\n \"node_modules/tslib\": {\n \"version\": \"2.6.3\",\n \"resolved\": \"https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz\",\n \"integrity\": \"sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==\"\n },\n \"node_modules/type-check\": {\n \"version\": \"0.4.0\",\n \"resolved\": \"https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz\",\n \"integrity\": \"sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==\",\n \"dev\": true,\n \"dependencies\": {\n \"prelude-ls\": \"^1.2.1\"\n },\n \"engines\": {\n \"node\": \">= 0.8.0\"\n }\n },\n \"node_modules/type-fest\": {\n \"version\": \"0.20.2\",\n \"resolved\": \"https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz\",\n \"integrity\": \"sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/typed-array-buffer\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz\",\n \"integrity\": \"sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"es-errors\": \"^1.3.0\",\n \"is-typed-array\": \"^1.1.13\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n }\n },\n \"node_modules/typed-array-byte-length\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz\",\n \"integrity\": \"sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"for-each\": \"^0.3.3\",\n \"gopd\": \"^1.0.1\",\n \"has-proto\": \"^1.0.3\",\n \"is-typed-array\": \"^1.1.13\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/typed-array-byte-offset\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz\",\n \"integrity\": \"sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==\",\n \"dev\": true,\n \"dependencies\": {\n \"available-typed-arrays\": \"^1.0.7\",\n \"call-bind\": \"^1.0.7\",\n \"for-each\": \"^0.3.3\",\n \"gopd\": \"^1.0.1\",\n \"has-proto\": \"^1.0.3\",\n \"is-typed-array\": \"^1.1.13\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/typed-array-length\": {\n \"version\": \"1.0.6\",\n \"resolved\": \"https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz\",\n \"integrity\": \"sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.7\",\n \"for-each\": \"^0.3.3\",\n \"gopd\": \"^1.0.1\",\n \"has-proto\": \"^1.0.3\",\n \"is-typed-array\": \"^1.1.13\",\n \"possible-typed-array-names\": \"^1.0.0\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/typescript\": {\n \"version\": \"5.5.2\",\n \"resolved\": \"https://registry.npmjs.org/typescript/-/typescript-5.5.2.tgz\",\n \"integrity\": \"sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==\",\n \"dev\": true,\n \"bin\": {\n \"tsc\": \"bin/tsc\",\n \"tsserver\": \"bin/tsserver\"\n },\n \"engines\": {\n \"node\": \">=14.17\"\n }\n },\n \"node_modules/unbox-primitive\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz\",\n \"integrity\": \"sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==\",\n \"dev\": true,\n \"dependencies\": {\n \"call-bind\": \"^1.0.2\",\n \"has-bigints\": \"^1.0.2\",\n \"has-symbols\": \"^1.0.3\",\n \"which-boxed-primitive\": \"^1.0.2\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/undici-types\": {\n \"version\": \"5.26.5\",\n \"resolved\": \"https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz\",\n \"integrity\": \"sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==\"\n },\n \"node_modules/unload\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https://registry.npmjs.org/unload/-/unload-2.2.0.tgz\",\n \"integrity\": \"sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==\",\n \"dependencies\": {\n \"@babel/runtime\": \"^7.6.2\",\n \"detect-node\": \"^2.0.4\"\n }\n },\n \"node_modules/update-browserslist-db\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz\",\n \"integrity\": \"sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==\",\n \"funding\": [\n {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/browserslist\"\n },\n {\n \"type\": \"tidelift\",\n \"url\": \"https://tidelift.com/funding/github/npm/browserslist\"\n },\n {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/ai\"\n }\n ],\n \"dependencies\": {\n \"escalade\": \"^3.1.2\",\n \"picocolors\": \"^1.0.1\"\n },\n \"bin\": {\n \"update-browserslist-db\": \"cli.js\"\n },\n \"peerDependencies\": {\n \"browserslist\": \">= 4.21.0\"\n }\n },\n \"node_modules/uri-js\": {\n \"version\": \"4.4.1\",\n \"resolved\": \"https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz\",\n \"integrity\": \"sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==\",\n \"dev\": true,\n \"dependencies\": {\n \"punycode\": \"^2.1.0\"\n }\n },\n \"node_modules/use-callback-ref\": {\n \"version\": \"1.3.2\",\n \"resolved\": \"https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz\",\n \"integrity\": \"sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==\",\n \"dependencies\": {\n \"tslib\": \"^2.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\",\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/use-sidecar\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz\",\n \"integrity\": \"sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==\",\n \"dependencies\": {\n \"detect-node-es\": \"^1.1.0\",\n \"tslib\": \"^2.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"peerDependencies\": {\n \"@types/react\": \"^16.9.0 || ^17.0.0 || ^18.0.0\",\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\"\n },\n \"peerDependenciesMeta\": {\n \"@types/react\": {\n \"optional\": true\n }\n }\n },\n \"node_modules/use-sync-external-store\": {\n \"version\": \"1.2.2\",\n \"resolved\": \"https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz\",\n \"integrity\": \"sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==\",\n \"peerDependencies\": {\n \"react\": \"^16.8.0 || ^17.0.0 || ^18.0.0\"\n }\n },\n \"node_modules/util-deprecate\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz\",\n \"integrity\": \"sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==\"\n },\n \"node_modules/uuid\": {\n \"version\": \"9.0.1\",\n \"resolved\": \"https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz\",\n \"integrity\": \"sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==\",\n \"funding\": [\n \"https://github.com/sponsors/broofa\",\n \"https://github.com/sponsors/ctavan\"\n ],\n \"bin\": {\n \"uuid\": \"dist/bin/uuid\"\n }\n },\n \"node_modules/victory-vendor\": {\n \"version\": \"36.9.2\",\n \"resolved\": \"https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.9.2.tgz\",\n \"integrity\": \"sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==\",\n \"dependencies\": {\n \"@types/d3-array\": \"^3.0.3\",\n \"@types/d3-ease\": \"^3.0.0\",\n \"@types/d3-interpolate\": \"^3.0.1\",\n \"@types/d3-scale\": \"^4.0.2\",\n \"@types/d3-shape\": \"^3.1.0\",\n \"@types/d3-time\": \"^3.0.0\",\n \"@types/d3-timer\": \"^3.0.0\",\n \"d3-array\": \"^3.1.6\",\n \"d3-ease\": \"^3.0.1\",\n \"d3-interpolate\": \"^3.0.1\",\n \"d3-scale\": \"^4.0.2\",\n \"d3-shape\": \"^3.1.0\",\n \"d3-time\": \"^3.0.0\",\n \"d3-timer\": \"^3.0.1\"\n }\n },\n \"node_modules/webidl-conversions\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz\",\n \"integrity\": \"sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==\"\n },\n \"node_modules/whatwg-url\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz\",\n \"integrity\": \"sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==\",\n \"dependencies\": {\n \"tr46\": \"~0.0.3\",\n \"webidl-conversions\": \"^3.0.0\"\n }\n },\n \"node_modules/which\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https://registry.npmjs.org/which/-/which-2.0.2.tgz\",\n \"integrity\": \"sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==\",\n \"dependencies\": {\n \"isexe\": \"^2.0.0\"\n },\n \"bin\": {\n \"node-which\": \"bin/node-which\"\n },\n \"engines\": {\n \"node\": \">= 8\"\n }\n },\n \"node_modules/which-boxed-primitive\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz\",\n \"integrity\": \"sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==\",\n \"dev\": true,\n \"dependencies\": {\n \"is-bigint\": \"^1.0.1\",\n \"is-boolean-object\": \"^1.1.0\",\n \"is-number-object\": \"^1.0.4\",\n \"is-string\": \"^1.0.5\",\n \"is-symbol\": \"^1.0.3\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/which-builtin-type\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz\",\n \"integrity\": \"sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==\",\n \"dev\": true,\n \"dependencies\": {\n \"function.prototype.name\": \"^1.1.5\",\n \"has-tostringtag\": \"^1.0.0\",\n \"is-async-function\": \"^2.0.0\",\n \"is-date-object\": \"^1.0.5\",\n \"is-finalizationregistry\": \"^1.0.2\",\n \"is-generator-function\": \"^1.0.10\",\n \"is-regex\": \"^1.1.4\",\n \"is-weakref\": \"^1.0.2\",\n \"isarray\": \"^2.0.5\",\n \"which-boxed-primitive\": \"^1.0.2\",\n \"which-collection\": \"^1.0.1\",\n \"which-typed-array\": \"^1.1.9\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/which-collection\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz\",\n \"integrity\": \"sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==\",\n \"dev\": true,\n \"dependencies\": {\n \"is-map\": \"^2.0.3\",\n \"is-set\": \"^2.0.3\",\n \"is-weakmap\": \"^2.0.2\",\n \"is-weakset\": \"^2.0.3\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/which-typed-array\": {\n \"version\": \"1.1.15\",\n \"resolved\": \"https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz\",\n \"integrity\": \"sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==\",\n \"dev\": true,\n \"dependencies\": {\n \"available-typed-arrays\": \"^1.0.7\",\n \"call-bind\": \"^1.0.7\",\n \"for-each\": \"^0.3.3\",\n \"gopd\": \"^1.0.1\",\n \"has-tostringtag\": \"^1.0.2\"\n },\n \"engines\": {\n \"node\": \">= 0.4\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/ljharb\"\n }\n },\n \"node_modules/wide-align\": {\n \"version\": \"1.1.5\",\n \"resolved\": \"https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz\",\n \"integrity\": \"sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==\",\n \"dependencies\": {\n \"string-width\": \"^1.0.2 || 2 || 3 || 4\"\n }\n },\n \"node_modules/wide-align/node_modules/emoji-regex\": {\n \"version\": \"8.0.0\",\n \"resolved\": \"https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz\",\n \"integrity\": \"sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==\"\n },\n \"node_modules/wide-align/node_modules/string-width\": {\n \"version\": \"4.2.3\",\n \"resolved\": \"https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz\",\n \"integrity\": \"sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==\",\n \"dependencies\": {\n \"emoji-regex\": \"^8.0.0\",\n \"is-fullwidth-code-point\": \"^3.0.0\",\n \"strip-ansi\": \"^6.0.1\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/word-wrap\": {\n \"version\": \"1.2.5\",\n \"resolved\": \"https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz\",\n \"integrity\": \"sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=0.10.0\"\n }\n },\n \"node_modules/wrap-ansi\": {\n \"version\": \"8.1.0\",\n \"resolved\": \"https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz\",\n \"integrity\": \"sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==\",\n \"dependencies\": {\n \"ansi-styles\": \"^6.1.0\",\n \"string-width\": \"^5.0.1\",\n \"strip-ansi\": \"^7.0.1\"\n },\n \"engines\": {\n \"node\": \">=12\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/wrap-ansi?sponsor=1\"\n }\n },\n \"node_modules/wrap-ansi-cjs\": {\n \"name\": \"wrap-ansi\",\n \"version\": \"7.0.0\",\n \"resolved\": \"https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz\",\n \"integrity\": \"sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==\",\n \"dependencies\": {\n \"ansi-styles\": \"^4.0.0\",\n \"string-width\": \"^4.1.0\",\n \"strip-ansi\": \"^6.0.0\"\n },\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/wrap-ansi?sponsor=1\"\n }\n },\n \"node_modules/wrap-ansi-cjs/node_modules/emoji-regex\": {\n \"version\": \"8.0.0\",\n \"resolved\": \"https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz\",\n \"integrity\": \"sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==\"\n },\n \"node_modules/wrap-ansi-cjs/node_modules/string-width\": {\n \"version\": \"4.2.3\",\n \"resolved\": \"https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz\",\n \"integrity\": \"sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==\",\n \"dependencies\": {\n \"emoji-regex\": \"^8.0.0\",\n \"is-fullwidth-code-point\": \"^3.0.0\",\n \"strip-ansi\": \"^6.0.1\"\n },\n \"engines\": {\n \"node\": \">=8\"\n }\n },\n \"node_modules/wrap-ansi/node_modules/ansi-regex\": {\n \"version\": \"6.0.1\",\n \"resolved\": \"https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz\",\n \"integrity\": \"sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==\",\n \"engines\": {\n \"node\": \">=12\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/ansi-regex?sponsor=1\"\n }\n },\n \"node_modules/wrap-ansi/node_modules/ansi-styles\": {\n \"version\": \"6.2.1\",\n \"resolved\": \"https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz\",\n \"integrity\": \"sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==\",\n \"engines\": {\n \"node\": \">=12\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/ansi-styles?sponsor=1\"\n }\n },\n \"node_modules/wrap-ansi/node_modules/strip-ansi\": {\n \"version\": \"7.1.0\",\n \"resolved\": \"https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz\",\n \"integrity\": \"sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==\",\n \"dependencies\": {\n \"ansi-regex\": \"^6.0.1\"\n },\n \"engines\": {\n \"node\": \">=12\"\n },\n \"funding\": {\n \"url\": \"https://github.com/chalk/strip-ansi?sponsor=1\"\n }\n },\n \"node_modules/wrappy\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz\",\n \"integrity\": \"sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==\"\n },\n \"node_modules/yallist\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz\",\n \"integrity\": \"sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==\"\n },\n \"node_modules/yaml\": {\n \"version\": \"2.4.5\",\n \"resolved\": \"https://registry.npmjs.org/yaml/-/yaml-2.4.5.tgz\",\n \"integrity\": \"sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==\",\n \"bin\": {\n \"yaml\": \"bin.mjs\"\n },\n \"engines\": {\n \"node\": \">= 14\"\n }\n },\n \"node_modules/yocto-queue\": {\n \"version\": \"0.1.0\",\n \"resolved\": \"https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz\",\n \"integrity\": \"sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==\",\n \"dev\": true,\n \"engines\": {\n \"node\": \">=10\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/yup\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https://registry.npmjs.org/yup/-/yup-1.4.0.tgz\",\n \"integrity\": \"sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg==\",\n \"dependencies\": {\n \"property-expr\": \"^2.0.5\",\n \"tiny-case\": \"^1.0.3\",\n \"toposort\": \"^2.0.2\",\n \"type-fest\": \"^2.19.0\"\n }\n },\n \"node_modules/yup/node_modules/type-fest\": {\n \"version\": \"2.19.0\",\n \"resolved\": \"https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz\",\n \"integrity\": \"sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==\",\n \"engines\": {\n \"node\": \">=12.20\"\n },\n \"funding\": {\n \"url\": \"https://github.com/sponsors/sindresorhus\"\n }\n },\n \"node_modules/zod\": {\n \"version\": \"3.23.8\",\n \"resolved\": \"https://registry.npmjs.org/zod/-/zod-3.23.8.tgz\",\n \"integrity\": \"sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==\",\n \"funding\": {\n \"url\": \"https://github.com/sponsors/colinhacks\"\n }\n }\n }\n}\n"
},
{
"instruction": "Describe the folder lib/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder components/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder prisma/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder hooks/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder public/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder store/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file lib/auth.ts.",
"input": "",
"output": "import GoogleProvider from \"next-auth/providers/google\";\nimport { PrismaAdapter } from \"@next-auth/prisma-adapter\";\nimport { prisma } from \"./prisma\";\n\nexport const authOptions = {\n adapter: PrismaAdapter(prisma),\n providers: [\n GoogleProvider({\n clientId: process.env.GOOGLE_CLIENT_ID!,\n clientSecret: process.env.GOOGLE_CLIENT_SECRET!,\n }),\n ],\n secret: process.env.NEXTAUTH_SECRET || \"myserver\",\n};\n"
},
{
"instruction": "Describe the contents of the file lib/utils.ts.",
"input": "",
"output": "import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n"
},
{
"instruction": "Describe the contents of the file lib/prisma.ts.",
"input": "",
"output": "import { PrismaClient } from \"@prisma/client\"\n \nconst globalForPrisma = globalThis as unknown as { prisma: PrismaClient }\n \nexport const prisma = globalForPrisma.prisma || new PrismaClient()\n \nif (process.env.NODE_ENV !== \"production\") globalForPrisma.prisma = prisma"
},
{
"instruction": "Describe the contents of the file lib/types.ts.",
"input": "",
"output": "export type MarketData = {\n s: string;\n c: string;\n p: string;\n P: string;\n h: string;\n l: string;\n v: string;\n q: string;\n};\n"
},
{
"instruction": "Describe the contents of the file components/WalletButton.tsx.",
"input": "",
"output": "'use client'\n\nimport { useState } from 'react'\nimport useBalance from \"@/hooks/balancechecker\"\nimport { Wallet, Plus } from \"lucide-react\"\nimport { Button } from \"@/components/ui/button\"\nimport {\n Dialog,\n DialogContent,\n DialogDescription,\n DialogHeader,\n DialogTitle,\n DialogTrigger,\n} from \"@/components/ui/dialog\"\nimport { Input } from \"@/components/ui/input\"\nimport { Label } from \"@/components/ui/label\"\n\nexport default function WalletButton() {\n const { loading, balance } = useBalance()\n const [isOpen, setIsOpen] = useState(false)\n const [amount, setAmount] = useState('')\n\n const handleAddMoney = () => {\n // Implement your add money logic here\n console.log(`Adding $${amount}`)\n setIsOpen(false)\n }\n\n return (\n \n \n \n \n \n {loading ? \"Loading...\" : `$${balance.toFixed(2)}`}\n \n \n \n \n \n Your Wallet \n \n Current balance: ${loading ? \"...\" : balance.toFixed(2)}\n \n \n \n
\n \n Amount\n \n setAmount(e.target.value)}\n className=\"col-span-3\"\n placeholder=\"Enter amount to add\"\n />\n
\n
\n \n Add Money\n \n \n \n )\n}"
},
{
"instruction": "Describe the contents of the file components/Orders.tsx.",
"input": "",
"output": "import OrderDisplay from \"@/app/(pages)/orders/page\";\n\n\nexport default function OrdersPage() {\n return (\n
\n
Your Orders \n \n \n )\n}"
},
{
"instruction": "Describe the contents of the file components/DepositButton.tsx.",
"input": "",
"output": "'use client'\n\nimport { useState } from \"react\"\nimport { useRouter } from \"next/navigation\"\nimport { HandCoins } from \"lucide-react\"\nimport { Button } from \"./ui/button\"\nimport AddMoney from \"@/components/payment/addAmount\"\nimport {\n Dialog,\n DialogContent,\n DialogDescription,\n DialogHeader,\n DialogTitle,\n} from \"./ui/dialog\"\nimport { Loader2 } from \"lucide-react\"\nimport axios from \"axios\"\n\ndeclare global {\n interface Window {\n Razorpay: any\n }\n}\n\nexport default function DepositButton() {\n const [isOpen, setIsOpen] = useState(false)\n const [amount, setAmount] = useState(\"0\")\n const [isVerifying, setIsVerifying] = useState(false)\n const [verificationStatus, setVerificationStatus] = useState<'success' | 'error' | null>(null)\n const router = useRouter()\n\n const changeAmount = (newAmount: string) => {\n setAmount(newAmount)\n }\n\n const handlePayment = async (paymentAmount: string) => {\n try {\n const response = await axios.post('/api/create-order', {\n amount: parseFloat(paymentAmount)\n })\n\n const data = response.data\n console.log(data)\n\n if (data.success && data.order) {\n const options = {\n key: process.env.NEXT_PUBLIC_RAZORPAY_KEY_ID,\n amount: data.order.amount,\n currency: data.order.currency,\n name: 'Web3Crypto.ai',\n description: 'Add Money to Wallet',\n order_id: data.order.id,\n handler: function (response: any) {\n handleSuccess(response)\n },\n prefill: {\n name: \"Manideep\",\n email: 'saimanideep.ch12345@gmail.com',\n contact: '9999999999',\n },\n theme: {\n color: '#3399cc',\n },\n }\n\n const paymentObject = new window.Razorpay(options)\n paymentObject.open()\n } else {\n throw new Error(data.message || 'Failed to create order')\n }\n } catch (error) {\n console.error('Payment initiation failed:', error)\n setVerificationStatus('error')\n }\n }\n\n const handleSuccess = async (response: any) => {\n setIsVerifying(true)\n try {\n const verifyResponse = await axios.post('/api/verify-payment', response)\n\n const verifyData = verifyResponse.data\n\n if (verifyData.success) {\n setVerificationStatus('success')\n setIsOpen(false)\n router.refresh()\n } else {\n throw new Error('Payment verification failed')\n }\n } catch (error) {\n console.error('Payment verification failed:', error)\n setVerificationStatus('error')\n } finally {\n setIsVerifying(false)\n }\n }\n\n return (\n <>\n setIsOpen((prev) => !prev)}\n >\n \n Deposit\n \n setIsOpen(false)} \n />\n setVerificationStatus(null)}>\n \n \n \n {isVerifying ? 'Verifying Payment' : verificationStatus === 'success' ? 'Payment Successful' : 'Payment Failed'}\n \n \n {isVerifying ? (\n \n \n Please wait while we verify your payment...\n
\n ) : verificationStatus === 'success' ? (\n `Successfully added \u20b9${amount} to your wallet!`\n ) : (\n \"Payment verification failed. Please try again or contact support.\"\n )}\n \n \n \n \n >\n )\n}"
},
{
"instruction": "Describe the contents of the file components/DarkModeToggle.tsx.",
"input": "",
"output": "\"use client\"\n\nimport * as React from \"react\"\nimport { Moon, Sun } from \"lucide-react\"\nimport { useTheme } from \"next-themes\"\n\nimport { Button } from \"@/components/ui/button\"\nimport {\n DropdownMenu,\n DropdownMenuContent,\n DropdownMenuItem,\n DropdownMenuTrigger,\n} from \"@/components/ui/dropdown-menu\"\n\nexport default function DarkModeToggle() {\n const { setTheme } = useTheme()\n\n return (\n \n \n \n \n \n Toggle theme \n \n \n \n setTheme(\"light\")}>\n Light\n \n setTheme(\"dark\")}>\n Dark\n \n setTheme(\"system\")}>\n System\n \n \n \n )\n}\n"
},
{
"instruction": "Describe the folder components/orderToast/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder components/toasts/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder components/core/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder components/payment/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder components/Skeletons/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder components/account/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder components/trade/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file components/orderToast/OrderToast.tsx.",
"input": "",
"output": "'use client'\n\nimport { useState, useEffect } from 'react'\nimport { X } from 'lucide-react'\nimport { motion, AnimatePresence } from 'framer-motion'\n\ninterface OrderDialogProps {\n isOpen: boolean\n onClose: () => void\n type: 'buy' | 'sell'\n crypto: string\n amount: string\n price: string\n}\n\nexport default function OrderDialog({ isOpen, onClose, type, crypto, amount, price }: OrderDialogProps) {\n const [isVisible, setIsVisible] = useState(isOpen)\n\n useEffect(() => {\n if (isOpen) {\n setIsVisible(true)\n const timer = setTimeout(() => {\n setIsVisible(false)\n }, 5000)\n return () => clearTimeout(timer)\n }\n }, [isOpen])\n\n const handleClose = () => {\n setIsVisible(false)\n setTimeout(onClose, 300) // Wait for animation to complete\n }\n\n return (\n \n {isVisible && (\n \n \n
\n
Order {type === 'buy' ? 'Placed' : 'Sold'} \n \n \n \n \n
\n You have successfully {type === 'buy' ? 'placed a buy order' : 'sold'} for {amount} {crypto} at {price} USD.\n
\n
{/* Navigate to order details */}}\n className=\"text-sm underline hover:text-gray-200\"\n >\n View Details\n \n
\n \n )}\n \n )\n}"
},
{
"instruction": "Describe the contents of the file components/toasts/InternetConnectionToast.tsx.",
"input": "",
"output": "'use client'\n\nimport { useEffect, useState } from 'react'\nimport { Toast, ToastDescription, ToastProvider, ToastViewport } from \"@/components/ui/toast\"\nimport { useToast } from \"@/components/ui/use-toast\"\n\nexport function InternetConnectionToast() {\n const [isOnline, setIsOnline] = useState(true)\n const { toast } = useToast()\n\n useEffect(() => {\n const handleOnline = () => setIsOnline(true)\n const handleOffline = () => setIsOnline(false)\n\n window.addEventListener('online', handleOnline)\n window.addEventListener('offline', handleOffline)\n\n return () => {\n window.removeEventListener('online', handleOnline)\n window.removeEventListener('offline', handleOffline)\n }\n }, [])\n\n useEffect(() => {\n if (!isOnline) {\n toast({\n title: \"No Internet Connection\",\n description: \"Please check your network settings.\",\n duration: Infinity,\n })\n }\n }, [isOnline ,toast])\n\n return (\n \n \n \n )\n}"
},
{
"instruction": "Describe the contents of the file components/core/Footer.tsx.",
"input": "",
"output": "import React from 'react'\nimport { motion } from \"framer-motion\"\nimport Link from \"next/link\"\n\nexport default function Footer() {\n return (\n \n \n
\n
\n
Products \n
\n {[\"Exchange\", \"Wallet\", \"Card\", \"Earn\"].map((item) => (\n \n \n {item}\n \n \n ))}\n \n
\n
\n
Company \n
\n {[\"About\", \"Careers\", \"Press\", \"Blog\"].map((item) => (\n \n \n {item}\n \n \n ))}\n \n
\n
\n
Support \n
\n {[\"Help Center\", \"Contact Us\", \"API Documentation\", \"Fees\"].map((item) => (\n \n \n {item}\n \n \n ))}\n \n
\n
\n
Legal \n
\n {[\"Privacy Policy\", \"Terms of Service\", \"Cookie Policy\", \"Risk Disclosure\"].map((item) => (\n \n \n {item}\n \n \n ))}\n \n
\n
\n
\n
\n \u00a9 2024 Web3Crypto.ai All rights reserved.\n
\n
\n
\n \n )\n}\n"
},
{
"instruction": "Describe the contents of the file components/core/Appbar.tsx.",
"input": "",
"output": "import { useState } from \"react\"\nimport { usePathname, useRouter } from \"next/navigation\"\nimport Link from \"next/link\"\nimport { MenuIcon, User } from \"lucide-react\"\nimport { signIn, useSession } from \"next-auth/react\"\nimport { Input } from \"@/components/ui/input\"\nimport { Button } from \"@/components/ui/button\"\nimport UserDetails from \"../account/UserDetails\"\nimport WalletButton from \"../WalletButton\"\n\nexport const Appbar = ({ toggleSidebar }: { toggleSidebar: () => void }) => {\n const pathname = usePathname()\n const router = useRouter()\n const { data: session } = useSession()\n\n const NavItem = ({ href, children }: { href: string; children: React.ReactNode }) => (\n \n {children}\n \n )\n\n return (\n \n
\n
\n
\n \n \n
\n
WebCrypto.ai \n \n
\n Markets \n Trade \n
\n
\n
\n
\n
\n
\n {session?.user ? (\n \n ) : (\n signIn(\"google\")}>\n \n \n )}\n
\n
\n
\n
\n )\n}"
},
{
"instruction": "Describe the contents of the file components/core/sideNavBar.tsx.",
"input": "",
"output": "'use client'\n\nimport Link from 'next/link'\nimport { useTheme } from 'next-themes'\nimport {\n ShoppingCartIcon,\n BellIcon,\n LogOutIcon,\n UserIcon,\n UsersIcon,\n FacebookIcon,\n TwitterIcon,\n MoonIcon,\n SunIcon,\n TrendingUp,\n} from 'lucide-react'\nimport { usePathname } from 'next/navigation'\n\ninterface SideNavbarProps {\n isOpen: boolean\n}\n\nexport default function SideNavbar({ isOpen }: SideNavbarProps) {\n const { theme, setTheme } = useTheme()\n const pathName = usePathname();\n\n const menuItems = [\n { icon: TrendingUp, label: 'Markets', href: '/markets' },\n { icon: ShoppingCartIcon, label: 'Orders', href: '/orders' },\n { icon: ShoppingCartIcon, label: 'My Trading', href: '/trading' },\n { icon: BellIcon, label: 'Notifications', href: '/notifications' },\n { icon: UserIcon, label: 'Profile', href: '/profile' },\n { icon: UsersIcon, label: 'Referrals', href: '/referrals' },\n ]\n\n return (\n \n
\n {menuItems.map((item, index) => (\n \n \n \n {item.label} \n \n \n ))}\n \n
\n
Social Connect \n
\n \n \n \n \n \n \n
\n
\n
setTheme(theme === 'dark' ? 'light' : 'dark')}\n >\n {theme === 'dark' ? : }\n {theme === 'dark' ? 'Light Mode' : 'Dark Mode'} \n \n
console.log('Logout')}\n >\n \n Logout \n \n
\n \n
\n )\n}"
},
{
"instruction": "Describe the contents of the file components/payment/addAmount.tsx.",
"input": "",
"output": "import { useState, useEffect } from 'react'\nimport { Dialog, DialogContent, DialogHeader, DialogTitle, DialogClose } from \"@/components/ui/dialog\"\nimport { Button } from \"@/components/ui/button\"\nimport { Input } from \"@/components/ui/input\"\nimport { Card, CardContent } from \"@/components/ui/card\"\nimport { Alert, AlertDescription } from \"@/components/ui/alert\"\nimport { InfoIcon, DollarSign } from 'lucide-react'\n\ninterface DepositProps {\n isOpen: boolean;\n handlePayment: (amount: string) => void;\n sendAmount: (amount: string) => void;\n amount: string;\n onClose: () => void;\n}\n\nexport default function AddMoney({ isOpen, handlePayment, sendAmount, amount, onClose }: DepositProps) {\n const [localAmount, setLocalAmount] = useState(amount)\n const [usdtAmount, setUsdtAmount] = useState('0')\n\n useEffect(() => {\n setLocalAmount(amount)\n updateUsdtAmount(amount)\n }, [amount])\n\n const handleChange = (e: React.ChangeEvent) => {\n const value = e.target.value\n setLocalAmount(value)\n sendAmount(value)\n updateUsdtAmount(value)\n }\n\n const updateUsdtAmount = (value: string) => {\n const numValue = parseFloat(value)\n setUsdtAmount(isNaN(numValue) ? '0' : (numValue * 10).toFixed(2))\n }\n\n const handlePaymentClick = () => {\n handlePayment(localAmount)\n }\n\n return (\n \n \n \n Add Money to Wallet \n \n \n
\n \n \n
\n \n \n Enter Amount\n \n
\n
\n \n \n Pay\n \n
\n
\n You will receive: {usdtAmount} USDT \n
\n
\n \n \n \n
\n \n \n 1 deposit unit is equal to 10 USDT. Minimum deposit: 10 USDT.\n \n \n \n
\n By proceeding, you agree to our Terms of Service and Privacy Policy.\n
\n
\n \n \n Cancel\n \n \n \n \n )\n}"
},
{
"instruction": "Describe the contents of the file components/Skeletons/TradingViewSkeleton.tsx.",
"input": "",
"output": "import { Tabs, TabsContent, TabsList, TabsTrigger } from \"@/components/ui/tabs\"\nimport { Skeleton } from \"@/components/ui/skeleton\"\n\nexport function TradeViewChartSkeleton() {\n return (\n \n \n \n \n 5m \n 30m \n 1h \n \n \n \n \n \n \n \n
\n )\n}"
},
{
"instruction": "Describe the contents of the file components/Skeletons/MarketBarSkeleton.tsx.",
"input": "",
"output": "import { Card, CardContent } from \"../ui/card\";\n\nexport function MarketBarSkeleton() {\n return (\n \n \n \n
\n
\n
\n {[...Array(4)].map((_, index) => (\n
\n ))}\n
\n
\n \n \n )\n}"
},
{
"instruction": "Describe the contents of the file components/Skeletons/MarketsSkeleton.tsx.",
"input": "",
"output": "\"use client\"\n\nimport { Tabs, TabsList, TabsTrigger } from \"@/components/ui/tabs\"\nimport { Table, TableBody, TableCell, TableRow } from \"@/components/ui/table\"\nimport { Button } from \"@/components/ui/button\"\nimport { Skeleton } from \"@/components/ui/skeleton\"\nimport { ArrowDown } from \"lucide-react\"\n\nexport default function CryptoListSkeleton() {\n return (\n \n \n All \n Rank \n 24h Change \n Volume \n Market Cap \n \n \n
\n
\n
\n \n {[...Array(12)].map((_, index) => (\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ))}\n \n
\n
\n
\n \n )\n}"
},
{
"instruction": "Describe the contents of the file components/Skeletons/AskBidSkeleton.tsx.",
"input": "",
"output": "import { Table, TableCell, TableHead, TableHeader, TableRow, TableBody } from \"@/components/ui/table\"\nimport { Skeleton } from \"@/components/ui/skeleton\"\n\nexport function AskSkeleton() {\n return (\n \n \n \n Price \n Quantity \n \n \n \n {[...Array(6)].map((_, index) => (\n \n \n \n \n \n \n \n \n ))}\n \n
\n )\n}"
},
{
"instruction": "Describe the contents of the file components/account/AvatarSetup.tsx.",
"input": "",
"output": "import {\n Avatar,\n AvatarFallback,\n AvatarImage,\n } from \"@/components/ui/avatar\"\n\n interface AvatarProps {\n avatar: string\n username: string\n }\n \n export function GetAvatar({avatar, username}:AvatarProps) {\n return (\n \n \n {username.slice(0,1).toUpperCase()} \n \n )\n }\n "
},
{
"instruction": "Describe the contents of the file components/account/AccountDetails.tsx.",
"input": "",
"output": "import {\n Cloud,\n CreditCard,\n Github,\n Keyboard,\n LifeBuoy,\n LogOut,\n Mail,\n MessageSquare,\n Plus,\n PlusCircle,\n Settings,\n User,\n UserPlus,\n Users,\n} from \"lucide-react\";\n\nimport {\n DropdownMenu,\n DropdownMenuContent,\n DropdownMenuGroup,\n DropdownMenuItem,\n DropdownMenuLabel,\n DropdownMenuPortal,\n DropdownMenuSeparator,\n DropdownMenuShortcut,\n DropdownMenuSub,\n DropdownMenuSubContent,\n DropdownMenuSubTrigger,\n DropdownMenuTrigger,\n} from \"@/components/ui/dropdown-menu\";\nimport { GetAvatar } from \"./AvatarSetup\";\nimport { useState } from \"react\";\nimport { useRouter } from \"next/navigation\";\n\nexport function GetAccountDetails() {\n const [openToggle, setOpenToggle] = useState(false);\n const router = useRouter();\n\n return (\n \n
setOpenToggle(!openToggle)}\n >\n \n \n \n \n My Account \n \n \n router.push(\":id\")}>\n \n Profile \n {/* \u21e7\u2318P */}\n \n router.push(\":id/orders\")}>\n \n Orders \n {/* \u2318B */}\n \n \n \n \n \n \n \n Invite users \n \n \n \n \n \n Email \n \n \n \n Message \n \n \n \n \n More... \n \n \n \n \n \n \n router.push(\":id/settings\")}>\n \n Settings \n {/* \u2318S */}\n \n router.push(\"/support\")}>\n \n Support \n \n \n \n \n Log out \n {/* \u21e7\u2318Q */}\n \n \n \n
\n );\n}\n"
},
{
"instruction": "Describe the contents of the file components/account/getIntialDetails.tsx.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file components/account/UserDetails.tsx.",
"input": "",
"output": "\"use client\";\nimport {\n DropdownMenu,\n DropdownMenuContent,\n DropdownMenuItem,\n DropdownMenuLabel,\n DropdownMenuSeparator,\n DropdownMenuTrigger,\n} from \"../ui/dropdown-menu\";\nimport { signOut } from \"next-auth/react\";\nimport { useSession } from \"next-auth/react\";\nimport { LogOut, UserRound } from \"lucide-react\";\nimport { useRouter } from \"next/navigation\";\nimport Image from \"next/image\";\nimport { Skeleton } from \"../ui/skeleton\";\n\nconst dropDownData = [\n {\n name: \"Profile\",\n icon: ,\n href: \"/profile\",\n },\n];\n\nexport default function UserDetails() {\n const { data, status } = useSession();\n const user = data?.user;\n const router = useRouter();\n return (\n <>\n {user && (\n \n \n {status == \"loading\" ? (\n \n ) : !user.image ? (\n \n \n
\n ) : (\n \n )}\n \n\n \n \n \n {!user.image ? (\n
\n \n
\n ) : (\n
\n )}\n
\n\n \n {user?.name} \n \n {user?.email}\n \n
\n \n \n\n {dropDownData.map((item, index) => {\n return (\n router.push(\"/profile\")}\n key={index}\n >\n {item.icon} \n {item.name} \n \n );\n })}\n \n {user && (\n {\n await signOut();\n router.push(\"/\");\n }}\n className=\" flex gap-2 focus:bg-[#f34e4e]\"\n >\n \n Logout\n \n )}\n \n \n )}\n >\n );\n}\n"
},
{
"instruction": "Describe the contents of the file components/account/ProfilePage.tsx.",
"input": "",
"output": "'use client'\n\nimport { useState } from 'react'\nimport { useRouter } from 'next/navigation'\nimport { User } from '@prisma/client'\nimport { Button } from \"@/components/ui/button\"\nimport { Input } from \"@/components/ui/input\"\nimport { Label } from \"@/components/ui/label\"\nimport { Card, CardContent, CardFooter, CardHeader, CardTitle } from \"@/components/ui/card\"\nimport { toast } from \"@/components/ui/use-toast\"\n\ntype ProfileFormProps = {\n user: Pick\n}\n\nexport default function ProfileForm({ user }: ProfileFormProps) {\n const router = useRouter()\n const [isLoading, setIsLoading] = useState(false)\n const [formData, setFormData] = useState({\n name: user.name || '',\n email: user.email,\n image: user.image || '',\n })\n\n const handleChange = (e: React.ChangeEvent) => {\n setFormData(prev => ({ ...prev, [e.target.name]: e.target.value }))\n }\n\n const handleSubmit = async (e: React.FormEvent) => {\n e.preventDefault()\n setIsLoading(true)\n\n try {\n const response = await fetch('/api/update-profile', {\n method: 'PUT',\n headers: { 'Content-Type': 'application/json' },\n body: JSON.stringify(formData),\n })\n\n if (!response.ok) {\n throw new Error('Failed to update profile')\n }\n\n toast({\n title: \"Profile updated\",\n description: \"Your profile has been successfully updated.\",\n })\n router.refresh()\n } catch (error) {\n console.error('Error updating profile:', error)\n toast({\n title: \"Error\",\n description: \"Failed to update profile. Please try again.\",\n variant: \"destructive\",\n })\n } finally {\n setIsLoading(false)\n }\n }\n\n return (\n \n \n Edit Profile \n \n \n \n )\n}"
},
{
"instruction": "Describe the folder components/trade/markets/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file components/trade/markets/CryptoTable.tsx.",
"input": "",
"output": "import { TableBody, TableCell, TableRow, Table } from \"@/components/ui/table\"\nimport Image from \"next/image\"\nimport { useRouter } from \"next/navigation\"\n\ninterface CryptoData {\n symbol: string\n current_price: string\n priceChangePercent: string\n volume: string\n marketCap: string\n image: string\n name: string\n}\n\ninterface CryptoTableProps {\n data: CryptoData[]\n}\n\nexport function CryptoTable({ data }: CryptoTableProps) {\n const router = useRouter()\n\n return (\n \n
\n \n {data.map((crypto) => (\n router.push(`/trade/${crypto.symbol}usdt`)}\n >\n \n \n {crypto.name} \n {crypto.symbol.toUpperCase()} \n \n ${crypto.current_price} \n \n {crypto.priceChangePercent}%\n \n {crypto.marketCap} \n \n ))}\n \n
\n
\n )\n}"
},
{
"instruction": "Describe the contents of the file components/trade/markets/Confirmation.tsx.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file components/trade/markets/BidTable.tsx.",
"input": "",
"output": "import { Table, TableCell, TableRow, TableBody } from \"@/components/ui/table\"\n\ninterface BidProps {\n bids: Map;\n}\n\nexport function Bid({ bids }: BidProps) {\n const sortedBids = Array.from(bids.entries())\n .sort((a, b) => parseFloat(b[0]) - parseFloat(a[0]))\n .slice(0, 7);\n\n const maxQuantity = Math.max(...sortedBids.map(([_, quantity]) => parseFloat(quantity)));\n\n return (\n \n \n {sortedBids.map(([price, quantity]) => (\n \n \n {parseFloat(price).toFixed(2)}\n \n \n {parseFloat(quantity).toFixed(4)}\n \n
\n \n ))}\n \n
\n )\n}"
},
{
"instruction": "Describe the contents of the file components/trade/markets/AskTable.tsx.",
"input": "",
"output": "import { Table, TableCell, TableHead, TableHeader, TableRow, TableBody } from \"@/components/ui/table\"\n\ninterface AskOrder {\n price: string;\n quantity: string;\n}\n\ninterface AskProps {\n asks: Map;\n}\n\nexport function Ask({ asks }: AskProps) {\n const sortedAsks = Array.from(asks.entries())\n .sort((a, b) => parseFloat(b[0]) - parseFloat(a[0]))\n .slice(0, 7)\n .map(([price, quantity]): AskOrder => ({ price, quantity }));\n\n const maxQuantity = Math.max(...sortedAsks.map(ask => parseFloat(ask.quantity)));\n\n return (\n \n \n \n Price \n Quantity \n \n \n \n {sortedAsks.map((ask) => (\n \n {parseFloat(ask.price).toFixed(2)} \n {parseFloat(ask.quantity).toFixed(4)} \n
\n \n ))}\n \n
\n )\n}"
},
{
"instruction": "Describe the contents of the file components/trade/markets/TradeView.tsx.",
"input": "",
"output": "\"use client\";\n\nimport React, { useCallback, useEffect, useRef, useState } from \"react\";\nimport {\n createChart,\n ColorType,\n IChartApi,\n ISeriesApi,\n UTCTimestamp,\n CandlestickData,\n} from \"lightweight-charts\";\nimport { Tabs, TabsContent, TabsList, TabsTrigger } from \"@/components/ui/tabs\";\n\ntype TimeframeKey = \"5m\" | \"30m\" | \"1h\";\n\nconst timeframes: Record = {\n \"5m\": 5,\n \"30m\": 30,\n \"1h\": 60,\n};\n\ninterface TradeViewChartProps {\n market: string;\n}\n\nexport default function TradeViewChart({ market }: TradeViewChartProps) {\n const chartContainerRef = useRef(null);\n const chartRef = useRef(null);\n const candlestickSeriesRef = useRef | null>(null);\n const wsRef = useRef(null);\n const [timeframe, setTimeframe] = useState(\"5m\");\n const [coinId, setCoinId] = useState(\"bitcoin\");\n\n useEffect(() => {\n if (chartContainerRef.current) {\n const chart = createChart(chartContainerRef.current, {\n width: chartContainerRef.current.clientWidth,\n height: 400,\n layout: {\n background: { type: ColorType.Solid, color: \"white\" },\n textColor: \"black\",\n },\n grid: {\n vertLines: { color: \"#e0e0e0\" },\n horzLines: { color: \"#e0e0e0\" },\n },\n });\n\n chartRef.current = chart;\n\n const candlestickSeries = chart.addCandlestickSeries();\n candlestickSeriesRef.current = candlestickSeries;\n\n const handleResize = () => {\n chart.applyOptions({ width: chartContainerRef.current!.clientWidth });\n };\n\n window.addEventListener(\"resize\", handleResize);\n\n return () => {\n window.removeEventListener(\"resize\", handleResize);\n chart.remove();\n };\n }\n }, []);\n\n const fetchHistoricalData = useCallback(async () => {\n const days = 30; // Fetch 30 days of data\n const url = `https://api.coingecko.com/api/v3/coins/${coinId}/ohlc?vs_currency=usd&days=${days}`;\n\n try {\n const response = await fetch(url);\n const data: number[][] = await response.json();\n const candlesticks: CandlestickData[] = data\n .filter((d) => d[0] % (timeframes[timeframe] * 60 * 1000) === 0)\n .map((d) => ({\n time: (d[0] / 1000) as UTCTimestamp,\n open: d[1],\n high: d[2],\n low: d[3],\n close: d[4],\n }));\n candlestickSeriesRef.current?.setData(candlesticks);\n } catch (error) {\n console.error(\"Error fetching historical data:\", error);\n }\n }, [coinId, timeframe]);\n\n const setupWebSocket = useCallback(() => {\n if (wsRef.current) {\n wsRef.current.close();\n }\n\n const wsUrl = `wss://stream.binance.com:9443/ws/${coinId}usdt@kline_${timeframe}`;\n const ws = new WebSocket(wsUrl);\n\n ws.onmessage = (event) => {\n const data = JSON.parse(event.data);\n if (data.k) {\n const { t, o, h, l, c } = data.k;\n const newCandle: CandlestickData = {\n time: (t / 1000) as UTCTimestamp,\n open: parseFloat(o),\n high: parseFloat(h),\n low: parseFloat(l),\n close: parseFloat(c),\n };\n candlestickSeriesRef.current?.update(newCandle);\n }\n };\n\n ws.onerror = (error) => {\n console.error(\"WebSocket error:\", error);\n };\n\n wsRef.current = ws;\n }, [coinId, timeframe]);\n\n useEffect(() => {\n fetchHistoricalData();\n setupWebSocket();\n\n return () => {\n if (wsRef.current) {\n wsRef.current.close();\n }\n };\n }, [fetchHistoricalData, setupWebSocket]);\n\n const fetchMoreHistoricalData = useCallback(\n async (endTime: number) => {\n const days = 30;\n const url = `https://api.coingecko.com/api/v3/coins/${coinId}/ohlc?vs_currency=usd&days=${days}&end_date=${endTime}`;\n\n try {\n const response = await fetch(url);\n const data: number[][] = await response.json();\n const candlesticks: CandlestickData[] = data\n .filter((d) => d[0] % (timeframes[timeframe] * 60 * 1000) === 0)\n .map((d) => ({\n time: (d[0] / 1000) as UTCTimestamp,\n open: d[1],\n high: d[2],\n low: d[3],\n close: d[4],\n }));\n const currentData =\n candlestickSeriesRef.current?.data() as CandlestickData[];\n candlestickSeriesRef.current?.setData([\n ...candlesticks,\n ...currentData,\n ]);\n } catch (error) {\n console.error(\"Error fetching more historical data:\", error);\n }\n },\n [coinId, timeframe]\n );\n\n useEffect(() => {\n if (chartRef.current) {\n chartRef.current.timeScale().subscribeVisibleLogicalRangeChange(() => {\n const logicalRange = chartRef.current\n ?.timeScale()\n .getVisibleLogicalRange();\n if (logicalRange && logicalRange.from < 10) {\n const firstCandle = candlestickSeriesRef.current?.dataByIndex(0, 1);\n if (firstCandle) {\n const endTime = firstCandle.time as number;\n fetchMoreHistoricalData(endTime);\n }\n }\n });\n }\n }, [timeframe, fetchMoreHistoricalData, coinId]);\n\n const handleTimeframeChange = (newTimeframe: TimeframeKey) => {\n setTimeframe(newTimeframe);\n };\n\n return (\n \n
Crypto Candlestick Chart \n
handleTimeframeChange(value as TimeframeKey)}\n >\n \n 5m \n 30m \n 1h \n \n \n \n \n \n
\n
\n );\n}\n"
},
{
"instruction": "Describe the contents of the file components/trade/markets/OrderUI.tsx.",
"input": "",
"output": "\"use client\";\n\nimport { useState, useEffect, useRef } from \"react\";\nimport Image from \"next/image\";\nimport { Input } from \"@/components/ui/input\";\nimport { Button } from \"@/components/ui/button\";\nimport { Tabs, TabsList, TabsTrigger } from \"@/components/ui/tabs\";\nimport { Card, CardContent } from \"@/components/ui/card\";\nimport { Label } from \"@/components/ui/label\";\nimport { Switch } from \"@/components/ui/switch\";\nimport { ToastAction } from \"@radix-ui/react-toast\";\nimport { useRouter } from \"next/navigation\";\n\nimport axios from \"axios\";\nimport { useDispatch, useSelector } from \"react-redux\";\nimport { RootState } from \"@/store/store\";\nimport {\n setPrice,\n setQuantity,\n setActiveTab,\n setOrderType,\n setMarketPrice,\n} from \"@/store/slices/cryptoOrders\";\nimport { useToast } from \"@/components/ui/use-toast\";\nimport OrderDialog from \"@/components/orderToast/OrderToast\";\n\nexport function OrderUI({ market }: { market: string }) {\n const dispatch = useDispatch();\n //@ts-ignore\n const { price, quantity, activeTab, orderType, marketPrice } = useSelector(\n (state: RootState) => state.order\n );\n const [image, setImage] = useState(\"\");\n const [loading, setLoading] = useState(false);\n const [dialogOpen, setDialogOpen] = useState(false)\n const [orderDetails, setOrderDetails] = useState({ type: 'buy', crypto: '', amount: '', price: '' })\n const ws = useRef(null);\n const router = useRouter();\n const { toast } = useToast();\n\n useEffect(() => {\n if (typeof window !== \"undefined\") {\n const storedImage = localStorage.getItem(\"imageUrl\");\n if (storedImage) setImage(storedImage);\n }\n\n // Initialize WebSocket connection\n ws.current = new WebSocket(\n `wss://stream.binance.com:9443/ws/${market.toLowerCase()}@ticker`\n );\n\n ws.current.onmessage = (event) => {\n const data = JSON.parse(event.data);\n dispatch(setMarketPrice(parseFloat(data.c)));\n };\n\n return () => {\n if (ws.current) {\n ws.current.close();\n }\n };\n }, [market, dispatch]);\n\n \n const handleOrder = async () => {\n try {\n setLoading(true)\n if (activeTab === \"buy\") {\n const response = await axios.post(\"/api/buy-crypto\", {\n market,\n marketPrice,\n price,\n })\n if (!response.data.success) throw new Error(response.data.message)\n setOrderDetails({ type: 'buy', crypto: market, amount: quantity, price })\n setDialogOpen(true)\n } else if (activeTab === \"sell\") {\n const res = await axios.post(\"/api/sell-crypto\", {\n market,\n marketPrice,\n price,\n })\n if (!res.data.success) throw new Error(res.data.message)\n setOrderDetails({ type: 'sell', crypto: market, amount: quantity, price })\n setDialogOpen(true)\n }\n } catch (error) {\n toast({\n title: \"Error Occurred\",\n description: \"Please Try again\",\n variant: \"destructive\",\n action: Try again ,\n })\n } finally {\n setLoading(false)\n }\n }\n\n const handlePriceChange = (e: React.ChangeEvent) => {\n const newPrice = e.target.value;\n dispatch(setPrice(newPrice));\n if (newPrice && quantity) {\n const newQuantity = (\n (parseFloat(quantity) * marketPrice) /\n parseFloat(newPrice)\n ).toFixed(8);\n dispatch(setQuantity(newQuantity));\n }\n };\n\n const handleQuantityChange = (e: React.ChangeEvent) => {\n const newQuantity = e.target.value;\n dispatch(setQuantity(newQuantity));\n if (newQuantity && price) {\n const newPrice = (\n (parseFloat(price) * parseFloat(newQuantity)) /\n parseFloat(quantity)\n ).toFixed(8);\n dispatch(setPrice(newPrice));\n }\n };\n\n const calculateFee = () => {\n const total = parseFloat(price) * parseFloat(quantity);\n return isNaN(total) ? \"0.00000000\" : (total * 0.02).toFixed(8);\n };\n\n const calculateTotal = () => {\n const total = parseFloat(price) * parseFloat(quantity);\n return isNaN(total) ? \"0.00\" : total.toFixed(2);\n };\n\n return (\n \n \n dispatch(setActiveTab(value as \"buy\" | \"sell\"))\n }\n >\n \n \n Buy\n \n \n Sell\n \n \n \n \n
\n Available Balance \n USDC \n
\n
\n
Order Type \n
\n dispatch(setOrderType(\"limit\"))}\n >\n Limit\n \n dispatch(setOrderType(\"market\"))}\n >\n Market\n \n
\n
\n
\n
\n
Quantity \n
\n
\n
\n {image && (\n \n )}\n
\n
\n
\n
\n \u2248 {calculateTotal()} USDC \n Fee: {calculateFee()} USDC \n
\n
\n {[\"25%\", \"50%\", \"75%\", \"Max\"].map((percent) => (\n \n {percent}\n \n ))}\n
\n
\n {activeTab === \"buy\"\n ? loading\n ? \"Buying...\"\n : \"Buy\"\n : loading\n ? \"Selling...\"\n : \"Sell\"}\n \n
\n
\n \n Post Only \n
\n
\n \n IOC \n
\n
\n
\n Market Price: {marketPrice.toFixed(8)} USDC\n
\n
\n \n \n setDialogOpen(false)}\n type={orderDetails.type as 'buy' | 'sell'}\n crypto={orderDetails.crypto}\n amount={orderDetails.amount}\n price={orderDetails.price}\n />\n \n );\n}"
},
{
"instruction": "Describe the contents of the file components/trade/markets/MarketBar.tsx.",
"input": "",
"output": "\"use client\"\n\nimport { Card, CardContent } from \"@/components/ui/card\"\nimport { ArrowUpIcon, ArrowDownIcon } from 'lucide-react'\nimport UseMarketWebsockets from \"@/hooks/MarketWebsockets\" \nimport { MarketBarSkeleton } from \"@/components/Skeletons/MarketBarSkeleton\"\n\nexport function MarketBar({ market}: { market : string }) {\n const { marketData, priceChangeColor } = UseMarketWebsockets(market)\n\n if (!marketData) {\n return \n }\n\n return (\n \n \n \n
\n {market.toUpperCase()} \n \n {parseFloat(marketData.c).toFixed(2)}\n \n
\n
\n {parseFloat(marketData.P) >= 0 ? (\n
\n ) : (\n
\n )}\n
{parseFloat(marketData.p).toFixed(2)} \n
({parseFloat(marketData.P).toFixed(2)}%) \n
\n
\n
\n 24h High \n {parseFloat(marketData.h).toFixed(2)} \n
\n
\n 24h Low \n {parseFloat(marketData.l).toFixed(2)} \n
\n
\n 24h Vol({market.slice(0, 3)}) \n {parseFloat(marketData.v).toFixed(2)} \n
\n
\n 24h Vol({market.slice(3)}) \n {(parseFloat(marketData.q) / 1000000).toFixed(2)}M \n
\n
\n
\n \n \n )\n}\n"
},
{
"instruction": "Describe the contents of the file components/trade/markets/cryptoPage.tsx.",
"input": "",
"output": "\"use client\"\n\nimport { useState, useEffect, useCallback } from \"react\"\nimport { Tabs, TabsList, TabsTrigger } from \"@/components/ui/tabs\"\nimport { Table, TableBody, TableCell, TableRow, TableHead, TableHeader } from \"@/components/ui/table\"\nimport { Button } from \"@/components/ui/button\"\nimport { Input } from \"@/components/ui/input\"\nimport { ScrollArea } from \"@/components/ui/scroll-area\"\nimport { ArrowDown, ArrowUp, TrendingDown, TrendingUp, Search, X } from \"lucide-react\"\nimport { getCrypto } from \"@/app/utils/ServerProps\"\nimport Image from \"next/image\"\nimport { useRouter } from \"next/navigation\"\nimport CryptoListSkeleton from \"@/components/Skeletons/MarketsSkeleton\"\nimport { Card, CardContent } from \"@/components/ui/card\"\nimport { Badge } from \"@/components/ui/badge\"\n\ninterface CryptoData {\n symbol: string\n current_price: string\n priceChangePercent: string\n volume: string\n marketCap: string\n image: string\n name: string\n market_cap_rank: number\n}\n\nexport default function Component() {\n const [cryptoData, setCryptoData] = useState([])\n const [loading, setLoading] = useState(true)\n const [sortColumn, setSortColumn] = useState(\"market_cap_rank\")\n const [sortDirection, setSortDirection] = useState<\"asc\" | \"desc\">(\"asc\")\n const [activeTab, setActiveTab] = useState(\"all\")\n const [searchTerm, setSearchTerm] = useState(\"\")\n const [isSearchExpanded, setIsSearchExpanded] = useState(false)\n const router = useRouter()\n\n const fetchData = useCallback(async () => {\n try {\n const data = await getCrypto()\n setLoading(false)\n const formattedData: CryptoData[] = data.map((item: any) => ({\n image: item.image,\n market_cap_rank: item.market_cap_rank,\n symbol: item.symbol,\n current_price: item.current_price,\n name: item.name,\n priceChangePercent: parseFloat(item.price_change_percentage_24h).toFixed(2),\n volume: formatVolume(parseFloat(item.total_volume)),\n marketCap: formatMarketCap(parseFloat(item.market_cap)),\n }))\n setCryptoData(formattedData)\n } catch (error) {\n console.error(\"Error fetching data:\", error)\n }\n }, [])\n\n const formatVolume = (volume: number): string => {\n if (volume >= 1e12) return `${(volume / 1e12).toFixed(2)}T`\n if (volume >= 1e9) return `${(volume / 1e9).toFixed(2)}B`\n if (volume >= 1e6) return `${(volume / 1e6).toFixed(2)}M`\n return volume.toFixed(2)\n }\n\n const formatMarketCap = (marketCap: number): string => {\n if (marketCap >= 1e12) return `$${(marketCap / 1e12).toFixed(2)}T`\n if (marketCap >= 1e9) return `$${(marketCap / 1e9).toFixed(2)}B`\n if (marketCap >= 1e6) return `$${(marketCap / 1e6).toFixed(2)}M`\n return `$${marketCap.toFixed(2)}`\n }\n\n useEffect(() => {\n fetchData()\n const interval = setInterval(fetchData, 2000)\n return () => clearInterval(interval)\n }, [fetchData])\n\n const sortData = (column: keyof CryptoData) => {\n if (column === sortColumn) {\n setSortDirection(sortDirection === \"asc\" ? \"desc\" : \"asc\")\n } else {\n setSortColumn(column)\n setSortDirection(column === \"market_cap_rank\" ? \"asc\" : \"desc\")\n }\n }\n\n const handleTabClick = (tab: string) => {\n setActiveTab(tab)\n if (tab === \"24h\") {\n setSortColumn(\"priceChangePercent\")\n setSortDirection(\"desc\")\n } else if (tab === \"volume\") {\n setSortColumn(\"volume\")\n setSortDirection(\"desc\")\n } else if (tab === \"marketCap\") {\n setSortColumn(\"marketCap\")\n setSortDirection(\"desc\")\n } else if (tab === \"rank\") {\n setSortColumn(\"market_cap_rank\")\n setSortDirection(\"asc\")\n }\n }\n\n const sortedAndFilteredData = [...cryptoData]\n .filter((crypto) =>\n crypto.name.toLowerCase().includes(searchTerm.toLowerCase()) ||\n crypto.symbol.toLowerCase().includes(searchTerm.toLowerCase())\n )\n .sort((a, b) => {\n if (sortColumn === \"market_cap_rank\") {\n return sortDirection === \"asc\" ? a.market_cap_rank - b.market_cap_rank : b.market_cap_rank - a.market_cap_rank\n } else {\n const aValue = parseFloat(String(a[sortColumn]).replace(/[^\\d.-]/g, \"\"))\n const bValue = parseFloat(String(b[sortColumn]).replace(/[^\\d.-]/g, \"\"))\n return sortDirection === \"asc\" ? aValue - bValue : bValue - aValue\n }\n })\n\n const renderTable = (data: CryptoData[]) => (\n \n \n \n \n Name \n Price \n 24h Change \n Volume \n Market Cap \n \n \n \n {data.map((crypto) => (\n router.push(`/trade/${crypto.symbol}usdt`)}\n >\n \n \n \n {crypto.name} \n {crypto.symbol.toUpperCase()} \n
\n \n ${crypto.current_price} \n \n \n {crypto.priceChangePercent[0] === \"-\" ? : }\n {crypto.priceChangePercent}%\n
\n \n {crypto.volume} \n {crypto.marketCap} \n \n ))}\n \n
\n \n )\n\n const renderCards = (data: CryptoData[]) => (\n \n \n {data.map((crypto) => (\n
router.push(`/trade/${crypto.symbol}usdt`)}>\n \n \n
\n
\n
\n
{crypto.name} \n
{crypto.symbol.toUpperCase()}
\n
\n
\n
\n {crypto.priceChangePercent[0] === \"-\" ? : }\n {crypto.priceChangePercent}%\n
\n
\n \n
\n Price: \n ${crypto.current_price} \n
\n
\n Volume: \n {crypto.volume} \n
\n
\n Market Cap: \n {crypto.marketCap} \n
\n
\n \n \n ))}\n
\n \n )\n \n if (loading) return \n\n return (\n \n
\n
\n {activeTab === \"all\" ? \"All Cryptocurrencies\" : `Sorted by ${activeTab === \"rank\" ? \"Market Cap Rank\" : activeTab}`}\n \n
\n
\n setSearchTerm(e.target.value)}\n className=\"w-full\"\n />\n
\n
\n {isSearchExpanded && (\n setSearchTerm(e.target.value)}\n className=\"w-full pr-8\"\n />\n )}\n setIsSearchExpanded(!isSearchExpanded)}\n >\n {isSearchExpanded ? : }\n \n
\n
sortData(sortColumn)}\n className=\"flex items-center text-sm\"\n >\n {sortDirection === \"asc\" ? : }\n {sortColumn === \"priceChangePercent\" ? \"24h\" : sortColumn === \"market_cap_rank\" ? \"Rank\" : sortColumn}\n \n
\n
\n
\n \n All \n Rank \n 24h Change \n Volume \n Market Cap \n \n \n
\n {renderTable(sortedAndFilteredData)}\n
\n
\n {renderCards(sortedAndFilteredData)}\n
\n
\n )\n}"
},
{
"instruction": "Describe the contents of the file components/trade/markets/Deposit.tsx.",
"input": "",
"output": "import { useState } from \"react\"\n\nexport default function Deposit(){\n return(\n \n
\n
\n
\n
Make a Deposit \n
\n {\"Enter the amount you'd like to deposit and select your payment method.\"}\n
\n
\n
\n
\n
\n \n Amount\n \n \n
\n
\n {\"\"}\n
\n
\n
\n Payment Method\n \n
\n\n
\n
\n
\n
\n \n Deposit\n \n
\n
\n
\n
\n )\n}"
},
{
"instruction": "Describe the contents of the file prisma/.gitignore.",
"input": "",
"output": "node_modules\n# Keep environment variables out of version control\n.env\n"
},
{
"instruction": "Describe the contents of the file prisma/schema.prisma.",
"input": "",
"output": "datasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\ngenerator client {\n provider = \"prisma-client-js\"\n}\n\nmodel User {\n id String @id @default(cuid())\n name String?\n email String @unique\n emailVerified DateTime?\n image String?\n accounts Account[]\n balance Int @default(100)\n sessions Session[]\n Authenticator Authenticator[]\n crypto Crypto[]\n orders Order[]\n despoits Deposit[]\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n}\n\nmodel Account {\n userId String\n type String\n provider String\n providerAccountId String\n refresh_token String?\n access_token String?\n expires_at Int?\n token_type String?\n scope String?\n id_token String?\n session_state String?\n\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@id([provider, providerAccountId])\n}\n\nmodel Session {\n sessionToken String @unique\n userId String\n expires DateTime\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n}\n\nmodel VerificationToken {\n identifier String\n token String\n expires DateTime\n\n @@id([identifier, token])\n}\n\nmodel Authenticator {\n credentialID String @unique\n userId String\n providerAccountId String\n credentialPublicKey String\n counter Int\n credentialDeviceType String\n credentialBackedUp Boolean\n transports String?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@id([userId, credentialID])\n}\n\nmodel Order {\n id String @id @default(cuid())\n user User @relation(fields: [userId], references: [id])\n userId String\n transactionType TransactionType\n amount Int\n status OrderStatus\n crypto Crypto @relation(fields: [cryptoId], references: [id])\n cryptoId Int\n}\n\nenum TransactionType {\n Buy\n Sell\n}\n\nenum OrderStatus {\n Pending\n Success\n Failed\n}\n\nmodel Crypto {\n id Int @id @default(autoincrement())\n currency String\n buyAt Int\n soldAt Int?\n timeBuyAt String\n timeSoldAt String?\n transactionId Int @default(autoincrement())\n transactionFee Int\n orders Order[]\n userId String\n user User @relation(fields: [userId], references: [id])\n}\n\nmodel Deposit{\n id String @id\n userId String\n user User @relation(fields: [userId], references: [id])\n amount Int\n amount_due Int\n amount_paid Int\n receipt String? \n currency String \n status OrderStatus\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n}"
},
{
"instruction": "Describe the folder prisma/migrations/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file prisma/migrations/migration_lock.toml.",
"input": "",
"output": "# Please do not edit this file manually\n# It should be added in your version-control system (i.e. Git)\nprovider = \"postgresql\""
},
{
"instruction": "Describe the folder prisma/migrations/20240930192207_init56/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder prisma/migrations/20240929185444_init21/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder prisma/migrations/20240927181846_init/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder prisma/migrations/20240930191102_init56/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder prisma/migrations/20240930021000_init22/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder prisma/migrations/20240930192718_init55/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder prisma/migrations/20240927182302_init2/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file prisma/migrations/20240930192207_init56/migration.sql.",
"input": "",
"output": "/*\n Warnings:\n\n - Changed the type of `amount` on the `Deposit` table. No cast exists, the column would be dropped and recreated, which cannot be done if there is data, since the column is required.\n - Changed the type of `amount_due` on the `Deposit` table. No cast exists, the column would be dropped and recreated, which cannot be done if there is data, since the column is required.\n - Changed the type of `amount_paid` on the `Deposit` table. No cast exists, the column would be dropped and recreated, which cannot be done if there is data, since the column is required.\n\n*/\n-- AlterTable\nALTER TABLE \"Deposit\" DROP COLUMN \"amount\",\nADD COLUMN \"amount\" INTEGER NOT NULL,\nDROP COLUMN \"amount_due\",\nADD COLUMN \"amount_due\" INTEGER NOT NULL,\nDROP COLUMN \"amount_paid\",\nADD COLUMN \"amount_paid\" INTEGER NOT NULL;\n"
},
{
"instruction": "Describe the contents of the file prisma/migrations/20240929185444_init21/migration.sql.",
"input": "",
"output": "-- CreateTable\nCREATE TABLE \"Deposit\" (\n \"id\" SERIAL NOT NULL,\n \"userId\" TEXT NOT NULL,\n \"amount\" INTEGER NOT NULL,\n \"status\" TEXT NOT NULL,\n \"createdAt\" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,\n \"updatedAt\" TIMESTAMP(3) NOT NULL,\n\n CONSTRAINT \"Deposit_pkey\" PRIMARY KEY (\"id\")\n);\n\n-- AddForeignKey\nALTER TABLE \"Deposit\" ADD CONSTRAINT \"Deposit_userId_fkey\" FOREIGN KEY (\"userId\") REFERENCES \"User\"(\"id\") ON DELETE RESTRICT ON UPDATE CASCADE;\n"
},
{
"instruction": "Describe the contents of the file prisma/migrations/20240927181846_init/migration.sql.",
"input": "",
"output": "-- CreateEnum\nCREATE TYPE \"TranscationType\" AS ENUM ('Buy', 'Sell');\n\n-- CreateEnum\nCREATE TYPE \"OrderStatus\" AS ENUM ('Pending', 'Sucess', 'Failed');\n\n-- CreateTable\nCREATE TABLE \"User\" (\n \"id\" TEXT NOT NULL,\n \"name\" TEXT,\n \"email\" TEXT NOT NULL,\n \"emailVerified\" TIMESTAMP(3),\n \"image\" TEXT,\n \"balance\" INTEGER NOT NULL DEFAULT 100,\n \"createdAt\" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,\n \"updatedAt\" TIMESTAMP(3) NOT NULL,\n\n CONSTRAINT \"User_pkey\" PRIMARY KEY (\"id\")\n);\n\n-- CreateTable\nCREATE TABLE \"Account\" (\n \"userId\" TEXT NOT NULL,\n \"type\" TEXT NOT NULL,\n \"provider\" TEXT NOT NULL,\n \"providerAccountId\" TEXT NOT NULL,\n \"refresh_token\" TEXT,\n \"access_token\" TEXT,\n \"expires_at\" INTEGER,\n \"token_type\" TEXT,\n \"scope\" TEXT,\n \"id_token\" TEXT,\n \"session_state\" TEXT,\n \"createdAt\" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,\n \"updatedAt\" TIMESTAMP(3) NOT NULL,\n\n CONSTRAINT \"Account_pkey\" PRIMARY KEY (\"provider\",\"providerAccountId\")\n);\n\n-- CreateTable\nCREATE TABLE \"Session\" (\n \"sessionToken\" TEXT NOT NULL,\n \"userId\" TEXT NOT NULL,\n \"expires\" TIMESTAMP(3) NOT NULL,\n \"createdAt\" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,\n \"updatedAt\" TIMESTAMP(3) NOT NULL\n);\n\n-- CreateTable\nCREATE TABLE \"VerificationToken\" (\n \"identifier\" TEXT NOT NULL,\n \"token\" TEXT NOT NULL,\n \"expires\" TIMESTAMP(3) NOT NULL,\n\n CONSTRAINT \"VerificationToken_pkey\" PRIMARY KEY (\"identifier\",\"token\")\n);\n\n-- CreateTable\nCREATE TABLE \"Authenticator\" (\n \"credentialID\" TEXT NOT NULL,\n \"userId\" TEXT NOT NULL,\n \"providerAccountId\" TEXT NOT NULL,\n \"credentialPublicKey\" TEXT NOT NULL,\n \"counter\" INTEGER NOT NULL,\n \"credentialDeviceType\" TEXT NOT NULL,\n \"credentialBackedUp\" BOOLEAN NOT NULL,\n \"transports\" TEXT,\n\n CONSTRAINT \"Authenticator_pkey\" PRIMARY KEY (\"userId\",\"credentialID\")\n);\n\n-- CreateTable\nCREATE TABLE \"Order\" (\n \"id\" TEXT NOT NULL,\n \"userId\" TEXT NOT NULL,\n \"transcationType\" \"TranscationType\" NOT NULL,\n \"amount\" INTEGER NOT NULL,\n \"status\" \"OrderStatus\" NOT NULL,\n \"cryptoId\" INTEGER NOT NULL,\n\n CONSTRAINT \"Order_pkey\" PRIMARY KEY (\"id\")\n);\n\n-- CreateTable\nCREATE TABLE \"Crypto\" (\n \"id\" SERIAL NOT NULL,\n \"currency\" TEXT NOT NULL,\n \"buyAt\" INTEGER NOT NULL,\n \"soldAt\" INTEGER,\n \"timeBuyAt\" TEXT NOT NULL,\n \"timeSoldAt\" TEXT,\n \"transactionId\" SERIAL NOT NULL,\n \"transactionFee\" INTEGER NOT NULL,\n \"userId\" TEXT NOT NULL,\n\n CONSTRAINT \"Crypto_pkey\" PRIMARY KEY (\"id\")\n);\n\n-- CreateIndex\nCREATE UNIQUE INDEX \"User_email_key\" ON \"User\"(\"email\");\n\n-- CreateIndex\nCREATE UNIQUE INDEX \"Session_sessionToken_key\" ON \"Session\"(\"sessionToken\");\n\n-- CreateIndex\nCREATE UNIQUE INDEX \"Authenticator_credentialID_key\" ON \"Authenticator\"(\"credentialID\");\n\n-- AddForeignKey\nALTER TABLE \"Account\" ADD CONSTRAINT \"Account_userId_fkey\" FOREIGN KEY (\"userId\") REFERENCES \"User\"(\"id\") ON DELETE CASCADE ON UPDATE CASCADE;\n\n-- AddForeignKey\nALTER TABLE \"Session\" ADD CONSTRAINT \"Session_userId_fkey\" FOREIGN KEY (\"userId\") REFERENCES \"User\"(\"id\") ON DELETE CASCADE ON UPDATE CASCADE;\n\n-- AddForeignKey\nALTER TABLE \"Authenticator\" ADD CONSTRAINT \"Authenticator_userId_fkey\" FOREIGN KEY (\"userId\") REFERENCES \"User\"(\"id\") ON DELETE CASCADE ON UPDATE CASCADE;\n\n-- AddForeignKey\nALTER TABLE \"Order\" ADD CONSTRAINT \"Order_userId_fkey\" FOREIGN KEY (\"userId\") REFERENCES \"User\"(\"id\") ON DELETE RESTRICT ON UPDATE CASCADE;\n\n-- AddForeignKey\nALTER TABLE \"Order\" ADD CONSTRAINT \"Order_cryptoId_fkey\" FOREIGN KEY (\"cryptoId\") REFERENCES \"Crypto\"(\"id\") ON DELETE RESTRICT ON UPDATE CASCADE;\n\n-- AddForeignKey\nALTER TABLE \"Crypto\" ADD CONSTRAINT \"Crypto_userId_fkey\" FOREIGN KEY (\"userId\") REFERENCES \"User\"(\"id\") ON DELETE RESTRICT ON UPDATE CASCADE;\n"
},
{
"instruction": "Describe the contents of the file prisma/migrations/20240930191102_init56/migration.sql.",
"input": "",
"output": "/*\n Warnings:\n\n - The primary key for the `Deposit` table will be changed. If it partially fails, the table could be left without primary key constraint.\n - Changed the type of `status` on the `Deposit` table. No cast exists, the column would be dropped and recreated, which cannot be done if there is data, since the column is required.\n\n*/\n-- AlterTable\nALTER TABLE \"Deposit\" DROP CONSTRAINT \"Deposit_pkey\",\nALTER COLUMN \"id\" DROP DEFAULT,\nALTER COLUMN \"id\" SET DATA TYPE TEXT,\nALTER COLUMN \"amount\" SET DATA TYPE TEXT,\nDROP COLUMN \"status\",\nADD COLUMN \"status\" \"OrderStatus\" NOT NULL,\nALTER COLUMN \"amount_due\" SET DATA TYPE TEXT,\nALTER COLUMN \"amount_paid\" SET DATA TYPE TEXT,\nALTER COLUMN \"receipt\" SET DATA TYPE TEXT,\nADD CONSTRAINT \"Deposit_pkey\" PRIMARY KEY (\"id\");\nDROP SEQUENCE \"Deposit_id_seq\";\n"
},
{
"instruction": "Describe the contents of the file prisma/migrations/20240930021000_init22/migration.sql.",
"input": "",
"output": "/*\n Warnings:\n\n - Added the required column `amount_due` to the `Deposit` table without a default value. This is not possible if the table is not empty.\n - Added the required column `amount_paid` to the `Deposit` table without a default value. This is not possible if the table is not empty.\n - Added the required column `currency` to the `Deposit` table without a default value. This is not possible if the table is not empty.\n - Added the required column `receipt` to the `Deposit` table without a default value. This is not possible if the table is not empty.\n\n*/\n-- AlterTable\nALTER TABLE \"Deposit\" ADD COLUMN \"amount_due\" INTEGER NOT NULL,\nADD COLUMN \"amount_paid\" INTEGER NOT NULL,\nADD COLUMN \"currency\" TEXT NOT NULL,\nADD COLUMN \"receipt\" INTEGER NOT NULL;\n"
},
{
"instruction": "Describe the contents of the file prisma/migrations/20240930192718_init55/migration.sql.",
"input": "",
"output": "-- AlterTable\nALTER TABLE \"Deposit\" ALTER COLUMN \"receipt\" DROP NOT NULL;\n"
},
{
"instruction": "Describe the contents of the file prisma/migrations/20240927182302_init2/migration.sql.",
"input": "",
"output": "/*\n Warnings:\n\n - The values [Sucess] on the enum `OrderStatus` will be removed. If these variants are still used in the database, this will fail.\n - You are about to drop the column `transcationType` on the `Order` table. All the data in the column will be lost.\n - Added the required column `transactionType` to the `Order` table without a default value. This is not possible if the table is not empty.\n\n*/\n-- CreateEnum\nCREATE TYPE \"TransactionType\" AS ENUM ('Buy', 'Sell');\n\n-- AlterEnum\nBEGIN;\nCREATE TYPE \"OrderStatus_new\" AS ENUM ('Pending', 'Success', 'Failed');\nALTER TABLE \"Order\" ALTER COLUMN \"status\" TYPE \"OrderStatus_new\" USING (\"status\"::text::\"OrderStatus_new\");\nALTER TYPE \"OrderStatus\" RENAME TO \"OrderStatus_old\";\nALTER TYPE \"OrderStatus_new\" RENAME TO \"OrderStatus\";\nDROP TYPE \"OrderStatus_old\";\nCOMMIT;\n\n-- AlterTable\nALTER TABLE \"Order\" DROP COLUMN \"transcationType\",\nADD COLUMN \"transactionType\" \"TransactionType\" NOT NULL;\n\n-- DropEnum\nDROP TYPE \"TranscationType\";\n"
},
{
"instruction": "Describe the contents of the file hooks/balancechecker.ts.",
"input": "",
"output": "'use client'\n\nimport { useState, useEffect } from \"react\";\nimport { getBalance } from \"@/app/(server)/actions/getBalance\";\n\nexport default function useBalance() {\n const [balance, setBalance] = useState(0);\n const [loading, setLoading] = useState(true);\n\n useEffect(() => {\n getBalance().then((balance) => {\n setBalance(balance);\n setLoading(false);\n });\n }, []);\n\n return { balance, loading };\n}"
},
{
"instruction": "Describe the contents of the file hooks/MarketWebsockets.ts.",
"input": "",
"output": "import { MarketData } from \"@/lib/types\";\nimport React, { useEffect, useState } from \"react\";\n\nexport default function UseMarketWebsockets(market:string) {\n const [marketData, setMarketData] = useState(null);\n const [priceChangeColor, setPriceChangeColor] = useState<\n \"text-green-500\" | \"text-red-500\"\n >(\"text-green-500\");\n\n useEffect(() => {\n const ws = new WebSocket(\n `wss://stream.binance.com:9443/ws/${market}@ticker`\n );\n\n ws.onmessage = (event) => {\n const data: MarketData = JSON.parse(event.data);\n setMarketData(data);\n setPriceChangeColor(\n parseFloat(data.P) >= 0 ? \"text-green-500\" : \"text-red-500\"\n );\n };\n\n return () => ws.close();\n }, [market]);\n\n return { marketData , priceChangeColor }\n}\n"
},
{
"instruction": "Describe the contents of the file hooks/onlineChecker.ts.",
"input": "",
"output": "import { useState, useEffect } from 'react';\n\nconst useOnlineStatus = () => {\n const [isOnline, setIsOnline] = useState(true);\n\n useEffect(() => {\n setInterval(()=>{\n if (typeof window !== 'undefined') {\n setIsOnline(navigator.onLine);\n\n const updateOnlineStatus = () => {\n setIsOnline(navigator.onLine);\n };\n\n window.addEventListener('online', updateOnlineStatus);\n window.addEventListener('offline', updateOnlineStatus);\n\n return () => {\n window.removeEventListener('online', updateOnlineStatus);\n window.removeEventListener('offline', updateOnlineStatus);\n };\n }\n }, 10020)\n }, []);\n\n return isOnline;\n};\n\nexport default useOnlineStatus;\n"
},
{
"instruction": "Describe the contents of the file public/bg-web3.webp.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file public/rzp-key.csv.",
"input": "",
"output": "key_id,key_secret\nrzp_live_ysF8drCMbc7We6,kvVknh4VWlU7PBPI9iVQB3Ar\n"
},
{
"instruction": "Describe the contents of the file public/maze.pdf.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file public/resume_new.pdf.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file public/bg-web3.gif.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file public/mdmsmch.aiimsexams.ac.in_RegistrationSlip_Index_id=diEmVvzqZFt+43JtLEselw==.pdf.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file public/as.svg.",
"input": "",
"output": "undefined"
},
{
"instruction": "Describe the contents of the file public/usdc.webp.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file public/artisan.pdf.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file public/111.pdf.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file public/vercel.svg.",
"input": "",
"output": " "
},
{
"instruction": "Describe the contents of the file public/sol.webp.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file public/next.svg.",
"input": "",
"output": " "
},
{
"instruction": "Describe the contents of the file store/store.ts.",
"input": "",
"output": "import { configureStore } from '@reduxjs/toolkit'\nimport orderReducer from './slices/cryptoOrders'\n\nexport const store = configureStore({\n reducer: {\n order: orderReducer,\n },\n})\n\nexport type RootState = ReturnType\nexport type AppDispatch = typeof store.dispatch"
},
{
"instruction": "Describe the folder store/slices/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file store/slices/userInitialDetails.ts.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file store/slices/cryptoOrders.ts.",
"input": "",
"output": "import { createSlice, PayloadAction } from '@reduxjs/toolkit'\n\ninterface OrderState {\n price: string\n quantity: string\n activeTab: 'buy' | 'sell'\n orderType: 'limit' | 'market'\n marketPrice: number\n}\n\nconst initialState: OrderState = {\n price: '',\n quantity: '',\n activeTab: 'buy',\n orderType: 'limit',\n marketPrice: 0,\n}\n\nexport const orderSlice = createSlice({\n name: 'order',\n initialState,\n reducers: {\n setPrice: (state, action: PayloadAction) => {\n state.price = action.payload\n },\n setQuantity: (state, action: PayloadAction) => {\n state.quantity = action.payload\n },\n setActiveTab: (state, action: PayloadAction<'buy' | 'sell'>) => {\n state.activeTab = action.payload\n },\n setOrderType: (state, action: PayloadAction<'limit' | 'market'>) => {\n state.orderType = action.payload\n },\n setMarketPrice: (state, action: PayloadAction) => {\n state.marketPrice = action.payload\n },\n },\n})\n\nexport const { setPrice, setQuantity, setActiveTab, setOrderType, setMarketPrice } = orderSlice.actions\n\nexport default orderSlice.reducer"
},
{
"instruction": "Describe the contents of the file store/slices/orderSlice.ts.",
"input": "",
"output": "import { createSlice, createAsyncThunk, PayloadAction } from '@reduxjs/toolkit'\n\nexport type Order = {\n id: string\n transactionType: 'Buy' | 'Sell'\n amount: number\n status: 'Pending' | 'Success' | 'Failed'\n crypto: {\n currency: string\n }\n}\n\ntype OrderState = {\n orders: Order[]\n loading: boolean\n error: string | null\n}\n\nconst initialState: OrderState = {\n orders: [],\n loading: false,\n error: null\n}\n\nexport const fetchOrders = createAsyncThunk(\n 'orders/fetchOrders',\n async (_, { rejectWithValue }) => {\n try {\n const response = await fetch('/api/orders')\n const data = await response.json()\n if (data.success) {\n return data.orders\n } else {\n return rejectWithValue(data.message)\n }\n } catch (error) {\n return rejectWithValue('Failed to fetch orders')\n }\n }\n)\n\nconst orderSlice = createSlice({\n name: 'orders',\n initialState,\n reducers: {},\n extraReducers: (builder) => {\n builder\n .addCase(fetchOrders.pending, (state) => {\n state.loading = true\n state.error = null\n })\n .addCase(fetchOrders.fulfilled, (state, action: PayloadAction) => {\n state.loading = false\n state.orders = action.payload\n })\n .addCase(fetchOrders.rejected, (state, action) => {\n state.loading = false\n state.error = action.payload as string\n })\n }\n})\n\nexport default orderSlice.reducer"
},
{
"instruction": "Describe the contents of the file app/globals.css.",
"input": "",
"output": "@tailwind base;\n@tailwind components;\n@tailwind utilities;\n\n :root {\n --background: 0 0% 100%;\n --foreground: 222.2 84% 4.9%;\n --card: 0 0% 100%;\n --card-foreground: 222.2 84% 4.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 222.2 84% 4.9%;\n --primary: 222.2 47.4% 11.2%;\n --primary-foreground: 210 40% 98%;\n --secondary: 210 40% 96.1%;\n --secondary-foreground: 222.2 47.4% 11.2%;\n --muted: 210 40% 96.1%;\n --muted-foreground: 215.4 16.3% 46.9%;\n --accent: 210 40% 96.1%;\n --accent-foreground: 222.2 47.4% 11.2%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 210 40% 98%;\n --border: 214.3 31.8% 91.4%;\n --input: 214.3 31.8% 91.4%;\n --ring: 222.2 84% 4.9%;\n --radius: 0.5rem;\n --chart-1: 12 76% 61%;\n --chart-2: 173 58% 39%;\n --chart-3: 197 37% 24%;\n --chart-4: 43 74% 66%;\n --chart-5: 27 87% 67%;\n }\n .dark {\n --background: 222.2 84% 4.9%;\n --foreground: 210 40% 98%;\n --card: 222.2 84% 4.9%;\n --card-foreground: 210 40% 98%;\n --popover: 222.2 84% 4.9%;\n --popover-foreground: 210 40% 98%;\n --primary: 210 40% 98%;\n --primary-foreground: 222.2 47.4% 11.2%;\n --secondary: 217.2 32.6% 17.5%;\n --secondary-foreground: 210 40% 98%;\n --muted: 217.2 32.6% 17.5%;\n --muted-foreground: 215 20.2% 65.1%;\n --accent: 217.2 32.6% 17.5%;\n --accent-foreground: 210 40% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 210 40% 98%;\n --border: 217.2 32.6% 17.5%;\n --input: 217.2 32.6% 17.5%;\n --ring: 212.7 26.8% 83.9%;\n --chart-1: 220 70% 50%;\n --chart-2: 160 60% 45%;\n --chart-3: 30 80% 55%;\n --chart-4: 280 65% 60%;\n --chart-5: 340 75% 55%;\n }\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n\ninput[type=\"number\"] {\n -moz-appearance: textfield;\n}\n\n\n.tablehover :hover{\n background: #f0f0f0;\n cursor: pointer;\n}\n\n.bg-home-image{\n background-image: url(\"/public/bg-web3.gif\");\n}"
},
{
"instruction": "Describe the contents of the file app/Providers.tsx.",
"input": "",
"output": "\"use client\";\n\nimport * as React from \"react\";\nimport { ThemeProvider as NextThemesProvider } from \"next-themes\";\nimport { type ThemeProviderProps } from \"next-themes/dist/types\";\nimport { Provider } from \"react-redux\";\nimport { store } from \"@/store/store\";\nimport { SessionProvider } from \"next-auth/react\";\nimport Script from \"next/script\";\nimport { ToastProvider } from \"@/components/ui/toast\";\n\nexport function Providers({ children }: ThemeProviderProps) {\n return (\n \n \n \n \n \n {children}\n \n \n \n \n );\n}\n"
},
{
"instruction": "Describe the contents of the file app/layout.tsx.",
"input": "",
"output": "import './globals.css'\nimport NextTopLoader from 'nextjs-toploader';\nimport { Providers } from './Providers';\nexport default function RootLayout({\n children,\n}: {\n children: React.ReactNode\n}) {\n\n return (\n \n \n \n \n {children}\n \n \n \n )\n}"
},
{
"instruction": "Describe the contents of the file app/page.tsx.",
"input": "",
"output": "\"use client\";\n\nimport { Button } from \"@/components/ui/button\";\nimport {\n ArrowRight,\n Bitcoin,\n Wallet,\n BarChart2,\n Lock,\n Zap,\n Globe,\n Menu,\n X,\n ChevronRight,\n} from \"lucide-react\";\nimport Link from \"next/link\";\nimport Image from \"next/image\";\nimport { useRouter } from \"next/navigation\";\nimport { motion, AnimatePresence } from \"framer-motion\";\nimport { useState, useEffect } from \"react\";\nimport { useSession } from \"next-auth/react\";\nimport Footer from \"@/components/core/Footer\";\n\nexport default function Component() {\n const router = useRouter();\n const session = useSession();\n const [isMenuOpen, setIsMenuOpen] = useState(false);\n const [cryptoPrices, setCryptoPrices] = useState({\n BTC: 65000,\n ETH: 12000,\n });\n\n const navItems = [\n { name: \"Markets\", href: \"/markets\" },\n { name: \"Trade\", href: \"/trade/btcusdt\" },\n { name: \"Wallet\", href: \"/wallet\" },\n { name: \"Learn\", href: \"/learn\" },\n ];\n\n useEffect(() => {\n const interval = setInterval(() => {\n setCryptoPrices({\n BTC: Math.random() * 10000 + 30000,\n ETH: Math.random() * 1000 + 2000,\n });\n }, 3000);\n\n return () => clearInterval(interval);\n }, []);\n\n if (session.data?.user) {\n router.push(\"/\");\n }\n\n const containerVariants = {\n hidden: { opacity: 0 },\n visible: {\n opacity: 1,\n transition: {\n staggerChildren: 0.1,\n delayChildren: 0.3,\n },\n },\n };\n\n const itemVariants = {\n hidden: { y: 20, opacity: 0 },\n visible: {\n y: 0,\n opacity: 1,\n transition: {\n type: \"spring\",\n stiffness: 100,\n },\n },\n };\n\n return (\n \n
\n
\n {isMenuOpen && (\n \n {[\"Markets\", \"Trade\", \"Wallet\", \"Learn\"].map((item) => (\n \n {item}\n \n ))}\n router.push(\"/auth/signin\")}\n className=\"w-full mt-4 bg-yellow-500 text-gray-900 hover:bg-yellow-600\"\n >\n Get Started\n \n \n )}\n \n
\n \n
\n \n
\n \n Learn Crypto with\n \n {\" \"}\n Confidence\n \n \n \n Join the of Journey about Crypto on the {\"world's \"}most\n powerful crypto learning platform.\n \n \n router.push(\"/auth/signin\")}\n className=\"w-full sm:w-auto bg-yellow-500 text-gray-900 hover:bg-yellow-600 text-lg py-6 px-8\"\n >\n Start Trading Now\n \n \n \n Explore Markets\n \n \n \n
\n \n \n \n
\n {[\n {\n icon: Wallet,\n title: \"Secure Wallet\",\n description: \"Store your crypto assets safely\",\n },\n {\n icon: BarChart2,\n title: \"Advanced Trading\",\n description: \"Access powerful trading tools\",\n },\n {\n icon: Lock,\n title: \"Bank-grade Security\",\n description: \"Your funds are always protected\",\n },\n {\n icon: Zap,\n title: \"Instant Transactions\",\n description: \"Lightning-fast crypto transfers\",\n },\n ].map((feature, index) => (\n
\n \n \n {feature.title}\n \n {feature.description}
\n \n ))}\n
\n
\n \n \n \n
\n Popular Cryptocurrencies\n \n
\n {[\n {\n icon: Bitcoin,\n name: \"Bitcoin\",\n symbol: \"BTC\",\n color: \"yellow\",\n },\n {\n icon: Bitcoin,\n name: \"Ethereum\",\n symbol: \"ETH\",\n color: \"blue\",\n },\n { icon: Globe, name: \"Ripple\", symbol: \"XRP\", color: \"indigo\" },\n ].map((crypto, index) => (\n
\n \n
\n
\n
{crypto.name} \n
{crypto.symbol}
\n
\n
\n \n
$ 0.00
\n
\n {index % 2 === 0 ? \"+\" : \"-\"}\n {(Math.random() * 5).toFixed(2)}%\n
\n
\n \n ))}\n
\n
\n \n View All Markets\n \n \n
\n
\n \n \n \n
\n
\n \n Start Your Crypto Journey Today\n \n \n Join millions of users worldwide and experience the power of\n decentralized finance.\n \n \n {[\n \"Create your account in minutes\",\n \"Secure storage for your digital assets\",\n \"24/7 access to global markets\",\n \"Advanced trading tools and analytics\",\n ].map((item, index) => (\n \n \n \n \n {item} \n \n ))}\n \n \n router.push(\"/auth/signin\")}\n className=\"bg-yellow-500 text-gray-900 hover:bg-yellow-600 text-lg py-6 px-8\"\n >\n Create Your Free Account\n \n \n \n \n
\n
\n \n \n
\n
\n \n \n
\n
\n );\n}\n"
},
{
"instruction": "Describe the contents of the file app/favicon.ico.",
"input": "",
"output": ""
},
{
"instruction": "Describe the folder app/auth/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/test/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(pages)/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(server)/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/utils/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/api/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/auth/signin/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file app/auth/signin/page.tsx.",
"input": "",
"output": "\"use client\";\n\nimport React, { useEffect } from 'react';\nimport { motion } from 'framer-motion';\nimport { signIn, useSession } from 'next-auth/react';\nimport { FcGoogle } from 'react-icons/fc';\nimport { Button } from \"@/components/ui/button\";\nimport { useRouter } from 'next/navigation';\n\nexport default function GoogleSignIn() {\n const { data: session, status } = useSession(); // Access the session status\n const router = useRouter();\n\n const containerVariants = {\n hidden: { opacity: 0, scale: 0.8 },\n visible: { \n opacity: 1, \n scale: 1,\n transition: { \n type: \"spring\",\n stiffness: 100,\n damping: 15,\n staggerChildren: 0.1\n }\n }\n };\n\n const itemVariants = {\n hidden: { opacity: 0, y: 20 },\n visible: { opacity: 1, y: 0 }\n };\n\n useEffect(() => {\n if (status === \"authenticated\") {\n console.log(`User : ${session.user}`);\n router.push('/markets');\n }\n }, [status, session, router]);\n\n return (\n \n
\n \n \n \n \n Sign in with Google\n \n \n Use your Google account to sign in securely and quickly.\n \n \n await signIn('google')}\n >\n \n Continue with Google \n \n \n \n By continuing, you agree to our \n Terms of Service and \n Privacy Policy .\n \n \n
\n );\n}\n"
},
{
"instruction": "Describe the contents of the file app/test/page.tsx.",
"input": "",
"output": "'use client'\n\n\nexport default function Home() {\n return (\n \n Welcome to Your App \n \n )\n}"
},
{
"instruction": "Describe the contents of the file app/(pages)/layout.tsx.",
"input": "",
"output": "'use client'\n\nimport { useEffect, useState } from 'react'\nimport { Appbar } from '@/components/core/Appbar'\nimport SideNavbar from '@/components/core/sideNavBar'\nimport { Toast } from '@/components/ui/toast'\n\nexport default function RootLayout({\n children,\n}: {\n children: React.ReactNode\n}) {\n const [isOpen, setIsOpen] = useState(false)\n const toggleSidebar = () => setIsOpen(!isOpen)\n \n useEffect(()=>{\n const innerWidth = window.innerWidth\n \n if(innerWidth > 768) {\n setIsOpen(true)\n }\n }, [])\n \n return (\n \n
\n
\n
\n
\n {children}\n
\n
\n
\n
\n )\n}"
},
{
"instruction": "Describe the folder app/(pages)/orders/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(pages)/profile/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(pages)/markets/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(pages)/trades/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(pages)/trade/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file app/(pages)/orders/page.tsx.",
"input": "",
"output": "'use client'\n\nimport { useState, useEffect } from 'react'\nimport { Card, CardContent, CardHeader, CardTitle } from \"@/components/ui/card\"\nimport { Badge } from \"@/components/ui/badge\"\nimport { CheckCircle, XCircle, TrendingUp, TrendingDown, Package2, Clock } from 'lucide-react'\nimport { Skeleton } from \"@/components/ui/skeleton\"\n\ntype Order = {\n id: string\n transactionType: 'Buy' | 'Sell'\n amount: number\n status: 'Pending' | 'Success' | 'Failed'\n crypto: {\n currency: string\n }\n}\n\nexport default function OrderDisplay() {\n const [orders, setOrders] = useState([])\n const [loading, setLoading] = useState(true)\n const [error, setError] = useState(null)\n\n useEffect(() => {\n const fetchOrders = async () => {\n try {\n const response = await fetch('/api/orders')\n const data = await response.json()\n if (data.success) {\n setOrders(data.orders)\n } else {\n setError(data.message)\n }\n } catch (err) {\n setError('Failed to fetch orders')\n } finally {\n setLoading(false)\n }\n }\n\n fetchOrders()\n }, [])\n\n if (error) return (\n \n )\n\n if (loading) {\n return (\n \n {[...Array(6)].map((_, index) => (\n \n \n \n \n \n \n \n \n \n ))}\n
\n )\n }\n\n if (orders.length === 0) {\n return (\n \n \n \n No Orders Placed \n \n {\" You haven't placed any orders yet. Start trading to see your order history here.\"}\n
\n \n \n )\n }\n\n return (\n \n {orders.map((order) => (\n
\n \n \n {order.crypto.currency} \n \n {order.transactionType}\n \n \n \n \n \n ${order.amount.toFixed(2)} \n {order.status === 'Success' && }\n {order.status === 'Failed' && }\n {order.status === 'Pending' && }\n
\n \n {order.transactionType === 'Buy' ? (\n \n ) : (\n \n )}\n {order.transactionType === 'Buy' ? 'Bought' : 'Sold'} \n \n {order.status}\n \n
\n \n \n ))}\n
\n )\n}"
},
{
"instruction": "Describe the contents of the file app/(pages)/profile/page.tsx.",
"input": "",
"output": "import { getServerSession } from \"next-auth/next\"\nimport { redirect } from \"next/navigation\"\nimport { prisma } from \"@/lib/prisma\"\nimport ProfileForm from \"@/components/account/ProfilePage\"\n\nexport default async function ProfilePage() {\n const session = await getServerSession()\n \n if (!session || !session.user?.email) {\n redirect(\"/login\")\n }\n\n const user = await prisma.user.findUnique({\n where: { email: session.user.email },\n select: {\n id: true,\n name: true,\n email: true,\n image: true,\n balance: true,\n createdAt: true,\n updatedAt: true,\n },\n })\n\n if (!user) {\n return User not found
\n }\n\n return (\n \n )\n}"
},
{
"instruction": "Describe the contents of the file app/(pages)/markets/page.tsx.",
"input": "",
"output": "import CryptoList from \"@/components/trade/markets/cryptoPage\"\n\nexport default function CryptoDashboard() {\n\n return (\n \n \n \n \n
\n )\n}"
},
{
"instruction": "Describe the contents of the file app/(pages)/trades/page.tsx.",
"input": "",
"output": "'use client'\n\nimport { useState, useEffect, useCallback } from 'react'\nimport { useSession } from 'next-auth/react'\nimport axios from 'axios'\nimport { useToast } from \"@/components/ui/use-toast\"\nimport { Card, CardContent, CardHeader, CardTitle } from \"@/components/ui/card\"\nimport { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from \"@/components/ui/table\"\nimport { Button } from \"@/components/ui/button\"\nimport { ArrowUpIcon, ArrowDownIcon } from 'lucide-react'\n\ninterface Holding {\n id: number\n currency: string\n amount: number\n buyPrice: number\n currentPrice: number\n}\n\nexport default function TradingPage() {\n const [holdings, setHoldings] = useState([])\n const [socket, setSocket] = useState(null)\n const { data: session } = useSession()\n const { toast } = useToast()\n\n const fetchHoldings = useCallback(async () => {\n if (session?.user?.email) {\n try {\n const response = await axios.get('/api/holdings')\n console.log(response.data)\n setHoldings(response.data)\n } catch (error) {\n console.error('Error fetching holdings:', error)\n toast({\n title: \"Error\",\n description: \"Failed to fetch holdings. Please try again.\",\n variant: \"destructive\",\n })\n }\n }\n }, [session?.user?.email, toast])\n\n useEffect(() => {\n fetchHoldings()\n }, [fetchHoldings])\n\n useEffect(() => {\n const ws = new WebSocket('wss://stream.binance.com:9443/ws')\n setSocket(ws)\n\n ws.onopen = () => {\n console.log('Connected to Binance WebSocket')\n const subscribeMsg = {\n method: 'SUBSCRIBE',\n params: holdings.map(h => `${h.currency.toLowerCase()}usdt@ticker`),\n id: 1\n }\n ws.send(JSON.stringify(subscribeMsg))\n }\n\n ws.onmessage = (event) => {\n const data = JSON.parse(event.data)\n if (data.e === '24hrTicker') {\n setHoldings(prevHoldings => \n prevHoldings.map(holding => \n holding.currency.toLowerCase() === data.s.slice(0, -4).toLowerCase()\n ? { ...holding, currentPrice: parseFloat(data.c) }\n : holding\n )\n )\n }\n }\n\n return () => {\n if (ws) {\n ws.close()\n }\n }\n }, [holdings])\n\n const handleSell = async (holdingId: number) => {\n try {\n await axios.post('/api/sell', { holdingId })\n toast({\n title: \"Sell order placed\",\n description: \"Your sell order has been successfully placed.\",\n })\n fetchHoldings()\n } catch (error) {\n console.error('Error placing sell order:', error)\n toast({\n title: \"Error\",\n description: \"Failed to place sell order. Please try again.\",\n variant: \"destructive\",\n })\n }\n }\n\n const calculatePercentChange = (buyPrice: number, currentPrice: number) => {\n return ((currentPrice - buyPrice) / buyPrice) * 100\n }\n\n return (\n \n
\n \n Your Crypto Holdings \n \n \n \n \n \n Currency \n Amount \n Buy Price \n Current Price \n Profit/Loss \n Action \n \n \n \n {holdings.map((holding) => {\n const percentChange = calculatePercentChange(holding.buyPrice, holding.currentPrice)\n const isProfit = percentChange >= 0\n return (\n \n {holding.currency} \n {holding.amount.toFixed(8)} \n ${holding.buyPrice.toFixed(2)} \n ${holding.currentPrice.toFixed(2)} \n \n {isProfit ? : }\n {Math.abs(percentChange).toFixed(2)}%\n \n \n handleSell(holding.id)} variant=\"destructive\">\n Sell\n \n \n \n )\n })}\n \n
\n \n \n
\n )\n}"
},
{
"instruction": "Describe the folder app/(pages)/trade/[market]/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file app/(pages)/trade/[market]/page.tsx.",
"input": "",
"output": "\"use client\";\n\nimport { useState, useEffect } from \"react\";\nimport useWebSocket from \"react-use-websocket\";\nimport { Card } from \"@/components/ui/card\";\nimport { Ask } from \"@/components/trade/markets/AskTable\";\nimport { Bid } from \"@/components/trade/markets/BidTable\";\nimport { useParams } from \"next/navigation\";\nimport { Skeleton } from \"@/components/ui/skeleton\";\nimport { TradeViewChartSkeleton } from \"@/components/Skeletons/TradingViewSkeleton\";\nimport { AskSkeleton } from \"@/components/Skeletons/AskBidSkeleton\";\nimport TradeViewChart from \"@/components/trade/markets/TradeView\";\nimport { OrderUI } from \"@/components/trade/markets/OrderUI\";\nimport { MarketBar } from \"@/components/trade/markets/MarketBar\";\n\ntype Order = [string, string];\ntype OrderBookUpdate = {\n e: string;\n E: number;\n s: string;\n U: number;\n u: number;\n b: Order[];\n a: Order[];\n};\n\ntype OrderBookState = {\n bids: Map;\n asks: Map;\n};\n\nexport default function Markets() {\n const { market } = useParams();\n const [orderBook, setOrderBook] = useState({\n bids: new Map(),\n asks: new Map(),\n });\n const [isLoading, setIsLoading] = useState(true);\n const { lastJsonMessage } = useWebSocket(\n `wss://stream.binance.com:9443/ws/${market}@depth`\n );\n\n useEffect(() => {\n if (lastJsonMessage) {\n const update = lastJsonMessage as OrderBookUpdate;\n setIsLoading(false);\n setOrderBook((prevOrderBook) => {\n const newBids = new Map(prevOrderBook.bids);\n const newAsks = new Map(prevOrderBook.asks);\n\n update.b.forEach(([price, quantity]) => {\n if (parseFloat(quantity) === 0) {\n newBids.delete(price);\n } else {\n newBids.set(price, quantity);\n }\n });\n\n update.a.forEach(([price, quantity]) => {\n if (parseFloat(quantity) === 0) {\n newAsks.delete(price);\n } else {\n newAsks.set(price, quantity);\n }\n });\n\n return { bids: newBids, asks: newAsks };\n });\n setIsLoading(false);\n }\n }, [lastJsonMessage]);\n return (\n \n
\n
\n
\n \n {isLoading ? (\n \n ) : (\n \n )}\n
\n \n\n
\n {isLoading ?
:
}\n {isLoading ?
:
}\n
\n\n
\n {isLoading ? (\n \n ) : (\n \n )}\n
\n
\n
\n );\n}\n"
},
{
"instruction": "Describe the folder app/(server)/actions/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(server)/api/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file app/(server)/actions/getBalance.ts.",
"input": "",
"output": "'use server'\n\nimport { authOptions } from \"@/lib/auth\";\nimport { prisma } from \"@/lib/prisma\";\nimport { getServerSession } from \"next-auth\";\n\nexport async function getBalance() {\n const session = await getServerSession(authOptions);\n if (!session?.user?.email) {\n return 0;\n }\n const user = await prisma.user.findUnique({\n where: {\n email: session.user.email,\n },\n });\n return user?.balance ?? 0;\n}"
},
{
"instruction": "Describe the contents of the file app/(server)/actions/changeUserProfile.ts.",
"input": "",
"output": "'use server'\n\nimport { prisma } from '@/lib/prisma'\nimport { revalidatePath } from 'next/cache'\n\nexport async function updateUserProfile(userId: string, formData: FormData) {\n const name = formData.get('name') as string\n const email = formData.get('email') as string\n const image = formData.get('image') as string\n\n try {\n await prisma.user.update({\n where: { id: userId },\n data: { name, email, image },\n })\n revalidatePath('/profile')\n return { success: true, message: 'Profile updated successfully' }\n } catch (error) {\n console.error('Failed to update profile:', error)\n return { success: false, message: 'Failed to update profile' }\n }\n}\n\nexport async function getUserProfile(userId: string) {\n try {\n const user = await prisma.user.findUnique({\n where: { id: userId },\n select: {\n name: true,\n email: true,\n image: true,\n balance: true,\n createdAt: true,\n updatedAt: true,\n },\n })\n return user\n } catch (error) {\n console.error('Failed to fetch user profile:', error)\n return null\n }\n}"
},
{
"instruction": "Describe the contents of the file app/(server)/api/route.ts.",
"input": "",
"output": "import { NextResponse} from \"next/server\";\n\nexport async function GET(request: Request) {\n return NextResponse.json({\n message: \"Server is Running\",\n });\n}\n"
},
{
"instruction": "Describe the folder app/(server)/api/orders/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(server)/api/sell-crypto/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(server)/api/buy-crypto/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(server)/api/holdings/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(server)/api/get-profile/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(server)/api/create-order/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(server)/api/verify-payment/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/(server)/api/update-profile/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file app/(server)/api/orders/route.ts.",
"input": "",
"output": "import { NextRequest, NextResponse } from \"next/server\";\nimport { PrismaClient } from \"@prisma/client\";\nimport { getServerSession } from \"next-auth\";\nimport { authOptions } from \"@/lib/auth\";\n\nconst prisma = new PrismaClient();\n\nexport async function GET(request: NextRequest) {\n try {\n const session = await getServerSession(authOptions);\n \n if (!session || !session.user?.email) {\n return NextResponse.json(\n { success: false, message: \"User not authenticated\" },\n { status: 401 }\n );\n }\n\n const user = await prisma.user.findUnique({\n where: { email: session.user.email },\n select: { id: true },\n });\n\n if (!user) {\n return NextResponse.json(\n { success: false, message: \"User not found\" },\n { status: 404 }\n );\n }\n\n const orders = await prisma.order.findMany({\n where: { userId: user.id },\n include: {\n crypto: {\n select: {\n currency: true,\n },\n },\n },\n });\n\n const transformedOrders = orders.map(order => ({\n id: order.id,\n transactionType: order.transactionType,\n amount: order.amount,\n status: order.status,\n crypto: {\n currency: order.crypto?.currency || 'Unknown',\n },\n }));\n\n return NextResponse.json(\n { success: true, orders: transformedOrders },\n { status: 200 }\n );\n } catch (error) {\n console.error(\"Error fetching orders:\", error);\n return NextResponse.json(\n { success: false, message: \"An error occurred while fetching orders.\" },\n { status: 500 }\n );\n } finally {\n await prisma.$disconnect();\n }\n}"
},
{
"instruction": "Describe the contents of the file app/(server)/api/sell-crypto/route.ts.",
"input": "",
"output": "import { NextRequest, NextResponse } from \"next/server\";\nimport { prisma } from \"@/lib/prisma\";\nimport { getServerSession } from \"next-auth\";\nimport { authOptions } from \"@/lib/auth\";\n\nexport async function POST(request: NextRequest) {\n const session = await getServerSession(authOptions);\n const emailId = session?.user?.email;\n\n if (!emailId) {\n return NextResponse.json(\n { success: false, message: \"Not logged in\" },\n { status: 401 }\n );\n }\n\n let result = null; \n\n try {\n const { market, price , marketPrice } = await request.json();\n const crypto = market\n const amount = price\n if (!crypto || !amount) {\n return NextResponse.json(\n { success: false, message: \"Missing crypto or amount\" },\n { status: 400 }\n );\n }\n\n const user = await prisma.user.findUnique({\n where: { email: emailId },\n });\n\n if (!user) {\n return NextResponse.json(\n { success: false, message: \"User not found\" },\n { status: 404 }\n );\n }\n\n const userCrypto = await prisma.crypto.findFirst({\n where: {\n userId: user.id,\n currency: crypto,\n },\n });\n\n if (!userCrypto) {\n return NextResponse.json(\n { success: false, message: `${crypto} not found in your wallet` },\n { status: 404 }\n );\n }\n\n const cryptoAmount = userCrypto.buyAt;\n const amountNum = marketPrice * 0.99;\n\n if (isNaN(amountNum) || amountNum <= 0) {\n return NextResponse.json(\n { success: false, message: \"Invalid amount specified\" },\n { status: 400 }\n );\n }\n\n if (cryptoAmount < amountNum) {\n return NextResponse.json(\n { success: false, message: `Insufficient ${crypto} amount to sell` },\n { status: 400 }\n );\n }\n\n result = await prisma.$transaction(async (tx) => {\n const newOrder = await tx.order.create({\n data: {\n userId: user.id,\n cryptoId: userCrypto.id,\n amount: amountNum,\n transactionType: \"Sell\",\n status: \"Pending\",\n },\n });\n\n const updatedCrypto = await tx.crypto.update({\n where: { id: userCrypto.id },\n data: {\n buyAt: cryptoAmount - amountNum,\n soldAt: userCrypto.soldAt ? userCrypto.soldAt + amountNum : amountNum,\n timeSoldAt: new Date().toISOString(),\n },\n });\n\n return { newOrder, updatedCrypto };\n });\n\n await prisma.order.update({\n where: { id: result.newOrder.id },\n data: { status: \"Success\" },\n });\n\n return NextResponse.json(\n { success: true, message: `${crypto} sold successfully`, data: result },\n { status: 200 }\n );\n } catch (error) {\n console.error(error);\n\n // Check if result is not null and if newOrder exists\n if (result?.newOrder?.id) {\n await prisma.order.update({\n where: { id: result.newOrder.id },\n data: { status: \"Failed\" },\n });\n }\n\n return NextResponse.json(\n { success: false, message: \"An error occurred. Please try again.\" },\n { status: 500 }\n );\n }\n}\n"
},
{
"instruction": "Describe the contents of the file app/(server)/api/buy-crypto/route.ts.",
"input": "",
"output": "import { NextRequest, NextResponse } from \"next/server\";\nimport { prisma } from \"@/lib/prisma\";\nimport { getServerSession } from \"next-auth\";\nimport { authOptions } from \"@/lib/auth\";\n\nexport async function POST(request: NextRequest) {\n const session = await getServerSession(authOptions);\n const emailId = session?.user?.email;\n\n if (!emailId) {\n return NextResponse.json(\n { success: false, message: \"User not authenticated\" },\n { status: 401 }\n );\n }\n\n let result = null;\n\n try {\n const { market , price , marketPrice } = await request.json();\n const crypto = market \n const amount = Number(price)\n if (!crypto || !amount) {\n return NextResponse.json(\n { success: false, message: \"Missing crypto or amount\" },\n { status: 400 }\n );\n }\n\n const user = await prisma.user.findUnique({\n where: { email: emailId },\n });\n\n if (!user) {\n return NextResponse.json(\n { success: false, message: \"User not found\" },\n { status: 404 }\n );\n }\n\n const amountNum: number = amount;\n if (isNaN(amountNum) || amountNum <= 0) {\n return NextResponse.json(\n { success: false, message: \"Invalid amount specified\" },\n { status: 400 }\n );\n }\n\n if (user.balance < amountNum) {\n return NextResponse.json(\n {\n success: false,\n message: \"Insufficient balance. Please deposit more.\",\n },\n { status: 400 }\n );\n }\n\n result = await prisma.$transaction(async (tx) => {\n const cryptoOrder = await tx.crypto.create({\n data: {\n userId: user.id,\n currency: crypto,\n buyAt: Number(marketPrice) - Number(marketPrice * 0.02) ,\n timeBuyAt: new Date().toISOString(),\n transactionFee: amountNum * 0.2,\n soldAt: 0,\n },\n });\n\n const newOrder = await tx.order.create({\n data: {\n amount,\n status: \"Pending\", \n userId: user.id,\n cryptoId: cryptoOrder.id,\n transactionType : \"Buy\"\n },\n });\n\n await tx.user.update({\n where: { id: user.id },\n data: { balance: { decrement: amountNum } },\n });\n\n return { newOrder, cryptoOrder }; \n });\n\n await prisma.order.update({\n where: { id: result.newOrder.id },\n data: { status: \"Success\" },\n });\n\n return NextResponse.json(\n { success: true, message: \"Crypto purchased successfully\", data: result },\n { status: 200 }\n );\n } catch (error) {\n console.error(error);\n \n if (result?.newOrder?.id) {\n await prisma.order.update({\n where: { id: result.newOrder.id },\n data: { status: \"Failed\" },\n });\n }\n\n return NextResponse.json(\n { success: false, message: \"An error occurred. Please try again.\" },\n { status: 500 }\n );\n }\n}\n"
},
{
"instruction": "Describe the contents of the file app/(server)/api/holdings/route.ts.",
"input": "",
"output": "import { NextResponse } from 'next/server'\nimport { getServerSession } from \"next-auth/next\"\nimport { authOptions } from \"@/lib/auth\"\nimport { prisma } from \"@/lib/prisma\"\n\nexport async function GET() {\n const session = await getServerSession(authOptions)\n\n if (!session || !session.user?.email) {\n return NextResponse.json({ error: \"Not authenticated\" }, { status: 401 })\n }\n\n try {\n const user = await prisma.user.findUnique({\n where: { email: session.user.email },\n include: {\n crypto: {\n where: { soldAt: null },\n include: {\n orders: {\n where: {\n status: 'Success'\n }\n }\n }\n }\n }\n })\n\n if (!user) {\n return NextResponse.json({ error: \"User not found\" }, { status: 404 })\n }\n\n const holdings = user.crypto.map(crypto => {\n const totalBought = crypto.orders\n .filter(order => order.transactionType === 'Buy')\n .reduce((sum, order) => sum + order.amount, 0)\n \n const totalSold = crypto.orders\n .filter(order => order.transactionType === 'Sell')\n .reduce((sum, order) => sum + order.amount, 0)\n\n const currentAmount = totalBought - totalSold\n\n return {\n id: crypto.id,\n currency: crypto.currency,\n amount: currentAmount / 100000000,\n buyPrice: crypto.buyAt / 100,\n currentPrice: 0, \n }\n }).filter(holding => holding.amount > 0)\n console.log(holdings);\n return NextResponse.json(holdings)\n } catch (error) {\n console.error('Error fetching holdings:', error)\n return NextResponse.json({ error: \"Failed to fetch holdings\" }, { status: 500 })\n }\n}"
},
{
"instruction": "Describe the contents of the file app/(server)/api/get-profile/route.ts.",
"input": "",
"output": "import { prisma } from \"@/lib/prisma\";\nimport { getServerSession } from \"next-auth\";\n\nexport async function GET(req: Request) {\n const session = await getServerSession();\n const email = session?.user?.email;\n\n if (!email) {\n return new Response(JSON.stringify({ message: \"User not authenticated\" }), {\n status: 401,\n });\n }\n\n const user = await prisma.user.findUnique({\n where: {\n email,\n },\n select: {\n name: true,\n email: true,\n image: true,\n createdAt: true,\n updatedAt: true,\n id: true,\n },\n });\n\n return new Response(JSON.stringify(user), {\n status: 200\n })\n}\n"
},
{
"instruction": "Describe the contents of the file app/(server)/api/create-order/route.ts.",
"input": "",
"output": "import { NextResponse } from 'next/server'\nimport { getServerSession } from 'next-auth/next'\nimport { authOptions } from '@/lib/auth'\nimport { prisma } from '@/lib/prisma'\nimport Razorpay from 'razorpay'\n\nconst razorpay = new Razorpay({\n key_id: process.env.RAZORPAY_KEY_ID!,\n key_secret: process.env.RAZORPAY_KEY_SECRET!,\n})\n\nexport async function POST(req: Request) {\n try {\n const session = await getServerSession(authOptions)\n const userEmail = session?.user?.email\n\n if (!userEmail) {\n return NextResponse.json({ success: false, message: \"Please login to deposit\", status: 401 })\n }\n\n const user = await prisma.user.findUnique({\n where: { email: userEmail }\n })\n\n if (!user) {\n return NextResponse.json({ success: false, message: \"User not found\", status: 404 })\n }\n\n const { amount } = await req.json()\n\n if (!amount || isNaN(amount) || amount <= 0) {\n return NextResponse.json({ success: false, message: \"Invalid amount\", status: 400 })\n }\n\n const amountInPaise = Math.round(parseFloat(amount) * 100)\n\n const order = await razorpay.orders.create({\n amount: amountInPaise,\n currency: 'INR',\n receipt: 'receipt_' + Math.random().toString(36).substring(7),\n })\n\n // Create a new Deposit record in the database\n await prisma.deposit.create({\n data: {\n id: order.id,\n userId: user.id,\n amount: amountInPaise,\n amount_due: order.amount_due,\n amount_paid: order.amount_paid,\n currency: order.currency,\n receipt: order.receipt,\n status: 'Pending',\n }\n })\n\n return NextResponse.json({ \n success: true, \n order: {\n id: order.id,\n amount: order.amount,\n currency: order.currency\n }\n })\n } catch (error) {\n console.error('Error creating order:', error)\n return NextResponse.json({ success: false, error: 'Failed to create order' }, { status: 500 })\n }\n}"
},
{
"instruction": "Describe the contents of the file app/(server)/api/verify-payment/route..ts.",
"input": "",
"output": "import { NextResponse } from 'next/server'\nimport { prisma } from '@/lib/prisma'\nimport crypto from 'crypto'\n\nexport async function POST(req: Request) {\n try {\n const { razorpay_order_id, razorpay_payment_id, razorpay_signature } = await req.json()\n\n const body = razorpay_order_id + \"|\" + razorpay_payment_id\n\n const expectedSignature = crypto\n .createHmac('sha256', process.env.RAZORPAY_KEY_SECRET!)\n .update(body.toString())\n .digest('hex')\n\n const isAuthentic = expectedSignature === razorpay_signature\n\n if (isAuthentic) {\n // Update the deposit status in the database\n await prisma.deposit.update({\n where: { id: razorpay_order_id },\n data: { \n status: 'Success',\n amount_paid: await getPaymentAmount(razorpay_payment_id)\n }\n })\n\n // Update user's balance\n const deposit = await prisma.deposit.findUnique({\n where: { id: razorpay_order_id },\n include: { user: true }\n })\n\n if (deposit) {\n await prisma.user.update({\n where: { id: deposit.userId },\n data: { balance: { increment: deposit.amount / 100 } } // Convert paise to rupees\n })\n }\n\n return NextResponse.json({ success: true })\n } else {\n await prisma.deposit.update({\n where: { id: razorpay_order_id },\n data: { status: 'Failed' }\n })\n return NextResponse.json({ success: false, message: 'Invalid signature' }, { status: 400 })\n }\n } catch (error) {\n console.error('Error verifying payment:', error)\n return NextResponse.json({ success: false, error: 'Failed to verify payment' }, { status: 500 })\n }\n}\n\nasync function getPaymentAmount(paymentId: string): Promise {\n const razorpay = new (require('razorpay'))({\n key_id: process.env.RAZORPAY_KEY_ID,\n key_secret: process.env.RAZORPAY_KEY_SECRET,\n })\n\n const payment = await razorpay.payments.fetch(paymentId)\n return payment.amount\n}"
},
{
"instruction": "Describe the contents of the file app/(server)/api/update-profile/route.ts.",
"input": "",
"output": "import { getServerSession } from \"next-auth/next\"\nimport { NextResponse } from \"next/server\"\nimport { prisma } from \"@/lib/prisma\"\n\nexport async function PUT(req: Request) {\n const session = await getServerSession()\n if (!session || !session.user?.email) {\n return NextResponse.json({ error: \"Not authenticated\" }, { status: 401 })\n }\n\n const data = await req.json()\n\n try {\n const updatedUser = await prisma.user.update({\n where: { email: session.user.email },\n data: {\n name: data.name,\n image: data.image,\n },\n })\n\n return NextResponse.json(updatedUser)\n } catch (error) {\n console.error(\"Error updating user:\", error)\n return NextResponse.json({ error: \"Failed to update user\" }, { status: 500 })\n }\n}"
},
{
"instruction": "Describe the contents of the file app/utils/Query.ts.",
"input": "",
"output": "// import { useQuery } from \"@tanstack/react-query\";\n// import axios from \"axios\";\n\n// export function useGetCrypto(){\n// const { data , isLoading } = useQuery({\n// queryKey: [\"market-trades\"],\n// queryFn: async () => {\n// const response = await axios.get(Market_URL);\n// return response.data;\n// }\n// });\n// return { data , isLoading };\n// }"
},
{
"instruction": "Describe the contents of the file app/utils/Algorithms.ts.",
"input": "",
"output": "export function formatNumber(number: number): string {\n const thresholds: [number, string][] = [\n [1e12, 'T'], \n [1e9, 'B'], \n [1e6, 'M'], \n [1e3, 'K'], \n ];\n\n const isNegative = number < 0;\n number = Math.abs(number);\n\n\n for (const [threshold, suffix] of thresholds) {\n if (number >= threshold) {\n const value = number / threshold;\n const formattedNumber = `${value.toFixed(2)}${suffix}`;\n return isNegative ? `-${formattedNumber}` : formattedNumber;\n }\n }\n\n return isNegative ? `-${number.toFixed(2)}` : number.toFixed(2);\n}\n\ntype AskBidArray = [string, string][];\n\nexport function removeZeroEntries(asks: AskBidArray) {\n const filteredAsks = asks.filter(entry => entry[1] !== \"0.000\");\n return filteredAsks\n}\n\nexport function removeZeroAsks(ask:any){\n for (let i = 0; i < ask.length; i++) {\n if (ask[i][1] === \"0.000\") {\n ask.splice(i, 1);\n i--; // decrement i to account for the removed element\n console.log(\"ask removed\" + ask )\n return ask\n }\n }\n}"
},
{
"instruction": "Describe the contents of the file app/utils/ChartManager.ts.",
"input": "",
"output": "import {\n ColorType,\n createChart as createLightWeightChart,\n CrosshairMode,\n ISeriesApi,\n UTCTimestamp,\n} from \"lightweight-charts\";\n\nexport class ChartManager {\n private candleSeries: ISeriesApi<\"Candlestick\">;\n private lastUpdateTime: number = 0;\n private chart: any;\n private currentBar: {\n open: number | null;\n high: number | null;\n low: number | null;\n close: number | null;\n } = {\n open: null,\n high: null,\n low: null,\n close: null,\n };\n\n constructor(\n ref: any,\n initialData: any[],\n layout: { background: string; color: string }\n ) {\n const chart = createLightWeightChart(ref, {\n autoSize: true,\n overlayPriceScales: {\n ticksVisible: true,\n borderVisible: true,\n },\n crosshair: {\n mode: CrosshairMode.Normal,\n },\n rightPriceScale: {\n visible: true,\n ticksVisible: true,\n entireTextOnly: true,\n },\n grid: {\n horzLines: {\n visible: false,\n },\n vertLines: {\n visible: false,\n },\n },\n layout: {\n background: {\n type: ColorType.Solid,\n color: layout.background,\n },\n textColor: \"white\",\n },\n });\n this.chart = chart;\n this.candleSeries = chart.addCandlestickSeries();\n\n this.candleSeries.setData(\n initialData.map((data) => ({\n ...data,\n time: (data.timestamp / 1000) as UTCTimestamp,\n }))\n );\n }\n public update(updatedPrice: any) {\n if (!this.lastUpdateTime) {\n this.lastUpdateTime = new Date().getTime();\n }\n\n this.candleSeries.update({\n time: (this.lastUpdateTime / 1000) as UTCTimestamp,\n close: updatedPrice.close,\n low: updatedPrice.low,\n high: updatedPrice.high,\n open: updatedPrice.open,\n });\n\n if (updatedPrice.newCandleInitiated) {\n this.lastUpdateTime = updatedPrice.time;\n }\n }\n public destroy() {\n this.chart.remove();\n }\n}\n"
},
{
"instruction": "Describe the contents of the file app/utils/nothing.ts.",
"input": "",
"output": ""
},
{
"instruction": "Describe the contents of the file app/utils/ServerProps.ts.",
"input": "",
"output": "import axios from \"axios\";\n\nconst Market_URL = \"https://price-indexer.workers.madlads.com/?ids=solana,usd-coin,pyth-network,jito-governance-token,tether,bonk,helium,helium-mobile,bitcoin,ethereum,dogwifcoin,jupiter-exchange-solana,parcl,render-token,sharky-fi,tensor,wormhole,wen-4,cat-in-a-dogs-world,book-of-meme,raydium,hivemapper,kamino,drift-protocol,nyan,jeo-boden,habibi-sol,io,zeta,mother-iggy,shuffle-2,pepe,shiba-inu,chainlink,uniswap,ondo-finance,holograph,starknet,matic-network,fantom,mon-protocol,blur,worldcoin-wld,polyhedra-network,unagi-token,layerzero\"\n\nexport async function getCrypto(): Promise {\n// console.log(\"req came\")\n const response = await axios.get(Market_URL);\n // console.log(response.data);\n return response.data;\n}"
},
{
"instruction": "Describe the contents of the file app/utils/SignalingManager.ts.",
"input": "",
"output": "import { TickerProps } from \"./types\";\n\nexport const BASE_URL = \"wss://ws.backpack.exchange/\"\n\nexport class SignalingManager {\n private ws: WebSocket;\n private static instance: SignalingManager;\n private bufferedMessages: any[] = [];\n private callbacks: any = {};\n private id: number;\n private initialized: boolean = false;\n\n private constructor() {\n this.ws = new WebSocket(BASE_URL);\n this.bufferedMessages = [];\n this.id = 1;\n this.init();\n }\n\n public static getInstance() {\n if (!this.instance) {\n this.instance = new SignalingManager();\n }\n return this.instance;\n }\n\n init() {\n this.ws.onopen = () => {\n this.initialized = true;\n this.bufferedMessages.forEach(message => {\n this.ws.send(JSON.stringify(message));\n });\n this.bufferedMessages = [];\n }\n this.ws.onmessage = (event) => {\n const message = JSON.parse(event.data);\n const type = message.data.e;\n if (this.callbacks[type]) {\n this.callbacks[type].forEach(({ callback }:any) => {\n if (type === \"ticker\") {\n const newTicker: Partial = {\n lastPrice: message.data.c,\n high: message.data.h,\n low: message.data.l,\n volume: message.data.v,\n quoteVolume: message.data.V,\n symbol: message.data.s,\n }\n\n callback(newTicker);\n }\n if (type === \"depth\") {\n // const newTicker: Partial = {\n // lastPrice: message.data.c,\n // high: message.data.h,\n // low: message.data.l,\n // volume: message.data.v,\n // quoteVolume: message.data.V,\n // symbol: message.data.s,\n // }\n // console.log(newTicker);\n // callback(newTicker);\n const updatedBids = message.data.b;\n const updatedAsks = message.data.a;\n callback({ bids: updatedBids, asks: updatedAsks });\n }\n });\n }\n }\n }\n\n sendMessage(message: any) {\n const messageToSend = {\n ...message,\n id: this.id++\n }\n if (!this.initialized) {\n this.bufferedMessages.push(messageToSend);\n return;\n }\n this.ws.send(JSON.stringify(messageToSend));\n }\n\n async registerCallback(type: string, callback: any, id: string) {\n this.callbacks[type] = this.callbacks[type] || [];\n this.callbacks[type].push({ callback, id });\n // \"ticker\" => callback\n }\n\n async deRegisterCallback(type: string, id: string) {\n if (this.callbacks[type]) {\n //@ts-ignore\n const index = this.callbacks[type].findIndex(callback => callback.id === id);\n if (index !== -1) {\n this.callbacks[type].splice(index, 1);\n }\n }\n }\n}"
},
{
"instruction": "Describe the contents of the file app/utils/types.ts.",
"input": "",
"output": "import zod from \"zod\"\n\nexport interface KLine {\n close: string;\n end: string;\n high: string;\n low: string;\n open: string;\n quoteVolume: string;\n start: string;\n trades: string;\n volume: string;\n}\n\nexport interface Trade {\n \"id\": number,\n \"isBuyerMaker\": boolean,\n \"price\": string,\n \"quantity\": string,\n \"quoteQuantity\": string,\n \"timestamp\": number\n}\n\nexport interface Depth {\n bids: [string, string][],\n asks: [string, string][],\n lastUpdateId: string\n}\n\nexport interface TickerProps {\n \"firstPrice\": string,\n \"high\": string,\n \"lastPrice\": string,\n \"low\": string,\n \"priceChange\": string,\n \"priceChangePercent\": string,\n \"quoteVolume\": string,\n \"symbol\": string,\n \"trades\": string,\n \"volume\": string\n}\n\nexport const orderVefication = zod.object({\n amount: zod.number(),\n name : zod.string(),\n })\n\nexport interface SellProps {\n crypto:string\n amount : string\n soldAt :string\n userId : string\n}\n\nexport interface AuthProps{\n username:string,\n password:string\n}\n\n\nexport interface TickerProps {\n symbol: string;\n lastPrice: string;\n high: string;\n low: string;\n volume: string;\n quoteVolume: string;\n priceChange: string;\n priceChangePercent: string;\n}\n\nexport interface DepthProps {\n bids: [string, string][];\n asks: [string, string][];\n}\n\nexport interface KlineProps {\n openTime: number;\n open: string;\n high: string;\n low: string;\n close: string;\n volume: string;\n closeTime: number;\n}"
},
{
"instruction": "Describe the contents of the file app/utils/wsClient.ts.",
"input": "",
"output": ""
},
{
"instruction": "Describe the folder app/api/auth/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the folder app/api/auth/[...nextauth]/.",
"input": "",
"output": "This is a directory. It may contain files or subdirectories."
},
{
"instruction": "Describe the contents of the file app/api/auth/[...nextauth]/route.ts.",
"input": "",
"output": "import { authOptions } from \"@/lib/auth\"\nimport NextAuth from \"next-auth\"\n\nconst handler = NextAuth(authOptions)\n\nexport { handler as GET, handler as POST }"
}
]