keystone icon indicating copy to clipboard operation
keystone copied to clipboard

Keystone cli installs conflicting versions of prisma dependencies

Open WoodyWoodsta opened this issue 1 year ago • 10 comments

Out of the box, keystone dev installs @prisma/client and prisma dependencies in such a way that version conflicts arise.

  1. Perform "install" walkthrough
  2. Run keystone dev

You'll see an error message which indicates a version mismatch of prisma dependencies:

Error: @prisma/client did not initialize yet. Please run "prisma generate" and try to import it again.

Expected: Keystone works out of the box. Keystone CLI should install the packages locally with the same version specifier as its internal package.json.

Additional Info

$ pnpm why @prisma/client

dependencies:
@keystone-6/core 6.3.0
└── @prisma/client 5.19.0
@prisma/client 5.20.0

WoodyWoodsta avatar Oct 06 '24 11:10 WoodyWoodsta

keystone has specific prisma version resolution, if you want to use higher version you want to add that to resolutions or overrides in your package.json

gautamsi avatar Oct 11 '24 20:10 gautamsi

@gautamsi That is understood. However, the issue is that the keystone cli installs a version which does not match the specific version you mention.

WoodyWoodsta avatar Oct 11 '24 21:10 WoodyWoodsta

Ah... is this is why I'm having issues with a default/new install?

Literally you run:

pnpm create keystone-app@latest
cd my-app
pnpm run dev

and it errors out with:

Error: Schema engine exited. Error: Command failed with exit code 1: /Users/mee/src/tests/static/backend/node_modules/.pnpm/@[email protected]/node_modules/@prisma/engines/schema-engine-darwin-arm64 cli --datasource <REDACTED> can-connect-to-database

crewshin avatar Oct 12 '24 13:10 crewshin

Workaround: Check version: $ pnpm why @prisma/client. Change version of prisma in 2 places in package.json to match version given above.

{
  "name": "keystone-app",
  "version": "1.0.3",
  "private": true,
  "scripts": {
    "dev": "keystone dev",
    "start": "keystone start",
    "build": "keystone build"
  },
  "dependencies": {
    "@keystone-6/auth": "^8.0.0",
    "@keystone-6/core": "^6.0.0",
    "@keystone-6/fields-document": "^9.0.0",
    "@prisma/client": "^5.22.0",
    "typescript": "^5.5.0"
  },
  "devDependencies": {
    "prisma": "^5.22.0"
  }
}

dwidge avatar Dec 19 '24 20:12 dwidge

@WoodyWoodsta how do you reproduce this problem?

dcousens avatar Dec 19 '24 23:12 dcousens

@dcousens Repro is in the description:

  1. Perform "install" walkthrough
  2. Run keystone dev

I have not worked with this for quite some time so I'm not if it is still an issue.

WoodyWoodsta avatar Dec 20 '24 08:12 WoodyWoodsta

I have not worked with this for quite some time so I'm not if it is still an issue.

I'll chime in to say I just tried to spin up a fresh keystone install and ran into this issue.

pxslip avatar Mar 07 '25 21:03 pxslip

In order to fix this I did:

$ pnpm add -D [email protected]
$ ./node_modules/./bin/prisma generate

RaphaelBossek avatar Jun 29 '25 16:06 RaphaelBossek

I am currently getting this issue.

ezekeal avatar Jul 19 '25 15:07 ezekeal

Facing same problem with a fresh new installation of Keystone.

Environment:

OS: Ubuntu 24.04.3 LTS Node: v22.21.0 Package manager: pnpm v10.19.0

Steps to reproduce:

  • Open docs: https://keystonejs.com/docs/getting-started
  • Execute in terminal pnpm create keystone-app@latest, choose any folder for project you like
  • Try to launch, using cmd: pnpm dev
  • Boom, error:
> [email protected] dev /srv
> keystone dev

✨ Starting Keystone
⭐️ Server listening on :3000 (http://localhost:3000/)
⭐️ GraphQL API available at /api/graphql
✨ Generating GraphQL and Prisma schemas
✨ Database unchanged
Error: @prisma/client did not initialize yet. Please run "prisma generate" and try to import it again.
    at new PrismaClient (/srv/node_modules/.pnpm/@[email protected][email protected]/node_modules/.prisma/client/default.js:43:11)
    at Object.getKeystone (/srv/node_modules/.pnpm/@[email protected]_@[email protected]_@[email protected]_@[email protected]/node_modules/@keystone-6/core/dist/createSystem-9936a87a.cjs.dev.js:4582:31)
    at /srv/node_modules/.pnpm/@[email protected]_@[email protected]_@[email protected]_@[email protected]/node_modules/@keystone-6/core/scripts/cli/dist/keystone-6-core-scripts-cli.cjs.dev.js:1109:33
    at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
    at async initKeystone (/srv/node_modules/.pnpm/@[email protected]_@[email protected]_@[email protected]_@[email protected]/node_modules/@keystone-6/core/scripts/cli/dist/keystone-6-core-scripts-cli.cjs.dev.js:1035:9)

What helped me to mitigate the problem:

  • Remove prisma and @prisma/client from package.json
  • Delete any package manager's lock files (package-lock.json, pnpm-lock.yaml, yarn.lock, etc)
  • Delete node_modules folder
  • If using pnpm as default package manager, set option shamefullyHoist: true in file pnpm-workspace.yaml or shamefullyHoist=true in .npmrc
  • Run: pnpm install
  • Launch: pnpm dev

Packages versions:

package.json
{
  "name": "keystone-app",
  "version": "1.0.3",
  "private": true,
  "packageManager": "[email protected]",
  "scripts": {
    "dev": "keystone dev",
    "start": "keystone start",
    "build": "keystone build"
  },
  "dependencies": {
    "@keystone-6/auth": "^8.1.0",
    "@keystone-6/core": "^6.5.1",
    "@keystone-6/fields-document": "^9.1.1",
    "typescript": "^5.9.3"
  }
}
pnpm-lock.yaml
lockfileVersion: '9.0'

settings:
autoInstallPeers: true
excludeLinksFromLockfile: false

importers:

.:
  dependencies:
    '@keystone-6/auth':
      specifier: ^8.1.0
      version: 8.1.0(@keystone-6/[email protected](@prisma/[email protected])(@types/[email protected])(@types/[email protected]))(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-6/core':
      specifier: ^6.5.1
      version: 6.5.1(@prisma/[email protected])(@types/[email protected])(@types/[email protected])
    '@keystone-6/fields-document':
      specifier: ^9.1.1
      version: 9.1.1(@keystone-6/[email protected](@prisma/[email protected])(@types/[email protected])(@types/[email protected]))([email protected]([email protected]))
    typescript:
      specifier: ^5.9.3
      version: 5.9.3

packages:

'@apollo/[email protected]':
  resolution: {integrity: sha512-F17/vCp7QVwom9eG7ToauIKdAxpSoadsJnqIfyryLFSkLSOEqu+eC5Z3N8OXcUVStuOMcNHlyraRsA6rRICu4g==}
  peerDependencies:
    graphql: 14.x || 15.x || 16.x

'@apollo/[email protected]':
  resolution: {integrity: sha512-0YQKKRIxiMlIou+SekQqdCo0ZTHxOcES+K8vKB53cIDpwABNR0P0yRzPgsbgcj3zRJniD93S/ontsnZsCLZrxQ==}
  peerDependencies:
    graphql: ^15.0.0 || ^16.0.0
    graphql-ws: ^5.5.5 || ^6.0.3
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc
    react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc
    subscriptions-transport-ws: ^0.9.0 || ^0.11.0
  peerDependenciesMeta:
    graphql-ws:
      optional: true
    react:
      optional: true
    react-dom:
      optional: true
    subscriptions-transport-ws:
      optional: true

'@apollo/[email protected]':
  resolution: {integrity: sha512-Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg==}
  hasBin: true

'@apollo/[email protected]':
  resolution: {integrity: sha512-pGwCl/po6+rxRmDMFgozKQo2pbsSwE91TpsDBAOgf74CRDPXHHtM88wbwjab0wMMZh95QfR45GGyDIdhY24bkQ==}
  deprecated: '@apollo/server-gateway-interface v1 is part of Apollo Server v4, which is deprecated and will transition to end-of-life on January 26, 2026. As long as you are already using a non-EOL version of Node.js, upgrading to v2 should take only a few minutes. See https://www.apollographql.com/docs/apollo-server/previous-versions for details.'
  peerDependencies:
    graphql: 14.x || 15.x || 16.x

'@apollo/[email protected]':
  resolution: {integrity: sha512-jKRlf+sBMMdKYrjMoiWKne42Eb6paBfDOr08KJnUaeaiyWFj+/040FjVPQI7YGLfdwnYIsl1NUUqS2UdgezJDg==}
  engines: {node: '>=14.16.0'}
  deprecated: Apollo Server v4 is deprecated and will transition to end-of-life on January 26, 2026. As long as you are already using a non-EOL version of Node.js, upgrading to v5 should take only a few minutes. See https://www.apollographql.com/docs/apollo-server/previous-versions for details.
  peerDependencies:
    graphql: ^16.6.0

'@apollo/[email protected]':
  resolution: {integrity: sha512-u40dIUePHaSKVshcedO7Wp+mPiZsaU6xjv9J+VyxpoU/zL6Jle+9zWeG98tr/+SZ0nZ4OXhrbb8SNr0rAPpIDA==}

'@apollo/[email protected]':
  resolution: {integrity: sha512-UkS3xqnVFLZ3JFpEmU/2cM2iKJotQXMoSTgxXsfQgXLC5gR1WaepoXagmYnPSA7Q/2cmnyTYK5OgAgoC4RULPg==}
  engines: {node: '>=14'}

'@apollo/[email protected]':
  resolution: {integrity: sha512-EsPIBqsSt2BwDsv8Wu76LK5R1KtsVkNoO4b0M5aK0hx+dGg9xJXuqlr7Fo34Dl+y83jmzn+UvEW+t1/GP2melA==}
  engines: {node: '>=14'}
  peerDependencies:
    graphql: 14.x || 15.x || 16.x

'@apollo/[email protected]':
  resolution: {integrity: sha512-jvvon885hEyWXd4H6zpWeN3tl88QcWnHp5gWF5OPF34uhvoR+DFqcNxs9vrRaBBSY3qda3Qe0bdud7tz2zGx1A==}
  engines: {node: '>=14'}

'@apollo/[email protected]':
  resolution: {integrity: sha512-w41XyepR+jBEuVpoRM715N2ZD0xMD413UiJx8w5xnAZD2ZkSJnMJBoIzauK83kJpSgNuR6ywbV29jG9NmxjK0Q==}
  engines: {node: '>=14'}

'@apollo/[email protected]':
  resolution: {integrity: sha512-qVo5PvUUMD8oB9oYvq4ViCjYAMWnZ5zZwEjNF37L2m1u528x5mueMlU+Cr1UinupCgdB78g+egA1G98rbJ03Vw==}
  engines: {node: '>=14'}

'@apollo/[email protected]':
  resolution: {integrity: sha512-YuplwLHaHf1oviidB7MxnCXAdHp3IqYV8n0momZ3JfLniae92eYqMIx+j5qJFX6WKJPs6q7bczmV4lXIsTu5Pg==}
  engines: {node: '>=14'}

'@apollo/[email protected]':
  resolution: {integrity: sha512-9M4LUXV/fQBh8vZWlLvb/HyyhjJ77/I5ZKu+NBWV/BmYGyRmoEP9EVAy7LCVoY3t8BDcyCAGfxJaLFCSuQkPUg==}
  engines: {node: '>=14'}
  peerDependencies:
    graphql: 14.x || 15.x || 16.x

'@apollo/[email protected]':
  resolution: {integrity: sha512-0joRc2HBO4u594Op1nev+mUF6yRnxoUH64xw8x3bX7n8QBDYdeYgY4tF0vJReTy+zdn2xv6fMsquATSgC722FA==}
  engines: {node: '>=14'}
  peerDependencies:
    graphql: 14.x || 15.x || 16.x

'@apollo/[email protected]':
  resolution: {integrity: sha512-eciIavsWpJ09za1pn37wpsCGrQNXUhM0TktnZmHwO+Zy9O4fu/WdB4+5BvVhFiZYOXvfjzJUcc+hsIV8RUOtMw==}
  engines: {node: '>=14'}
  peerDependencies:
    graphql: 14.x || 15.x || 16.x

'@apollo/[email protected]':
  resolution: {integrity: sha512-QJs7HtzXS/JIPMKWimFnUMK7VjkGQTzqD9bKD1h3iuPAqLsxd0mUNVbkYOPTsDhUKgcvUOfOqOJWYohAKMvcSA==}
  engines: {node: '>=14'}
  peerDependencies:
    graphql: 14.x || 15.x || 16.x

'@apollo/[email protected]':
  resolution: {integrity: sha512-LPSlBrn+S17oBy5eWkrRSGb98sWmnEzo3DPTZgp8IQc8sJe0prDgDuppGq4NeQlpoqEHz0hQeYHAOA0Z3aQsxQ==}
  engines: {node: '>=14'}
  peerDependencies:
    graphql: 14.x || 15.x || 16.x

'@apollo/[email protected]':
  resolution: {integrity: sha512-YBDiuAX9i1lLc6GeTy1m7DGLFn/gMnvXqlalOIMjM7DeOgIacEjjfwPqb0M1CQ2v11HhR15d1NmxJoRCfrNqcA==}
  engines: {node: '>=14'}

'@aws-crypto/[email protected]':
  resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
  engines: {node: '>=16.0.0'}

'@aws-crypto/[email protected]':
  resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}

'@aws-crypto/[email protected]':
  resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}

'@aws-crypto/[email protected]':
  resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}

'@aws-crypto/[email protected]':
  resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
  engines: {node: '>=16.0.0'}

'@aws-crypto/[email protected]':
  resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}

'@aws-crypto/[email protected]':
  resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-ZW0ALyys+pTpPvDyKp1InkfUGqttezH9c4TNxwuRKE1M78fwFf/Fnwrdmxzgc9SXReyANB4zpLHtbrTk4mj4Rg==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-83Xp8Wl7RDWg/iIYL8dmrN9DN7qu7fcUzDC9LyMhDN8cAEACykN/i4Fk45UHRCejL9Sjxu4wsQzxRYp1smQ95g==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-QMnWdW7PwxVfi5WBV2a6apM1fIizgBf1UHYbqd3e1sXk8B0d3tpysmLZdIx30OY066zhEo6FyAKLAeTSsGrALg==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-v7zeMsLkTB0/ZK6DGbM6QUNIeeEtNBd+4DHihXjsHKBKxBESKIJlWF5Bcj+pgCSWcFGClxmqL6NfWCFQ0WdtjQ==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-NXS5nBD0Tbk5ltjOAucdcx8EQQcFdVpCGrly56AIbznl0yhuG5Sxq4q2tUSJj9006eEXBK5rt52CdDixCcv3xg==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-RcL02V3EE8DRuu8qb5zoV+aVWbUIKZRA3NeHsWKWCD25nxQUYF4CrbQizWQ91vda5+e6PysGGLYROOzapX3Xmw==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-SDUvDKqsJ5UPDkem0rq7/bdZtXKKTnoBeWvRlI20Zuv4CLdYkyIGXU9sSA2mrhsZ/7bt1cduTHpGd1n/UdBQEg==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-34C3CYM3iAVcSg3cX4UfOwabWeTeowjZkqJbWgDZ+I/HNZ8+9YbVuJcOZL5fVhw242UclxlVlddNPNprluZKGg==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-LfuSyhwvb1qOWN+oN3zyq5D899RZVA0nUrx6czKpDJYarYG0FCTZPO5aPcyoNGAjUu8l+CYUvXcd9ZdZiwv3/A==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-49zJm5x48eG4kiu7/lUGYicwpOPA3lzkuxZ8tdegKKB9Imya6yxdATx4V5UcapFfX79xgpZr750zYHHqSX53Sw==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-woPS2ut/64pTB/IIZC5eH5hLDZ41++6cVUBXvlu0x0QwjJBE2axRoq1o/ZNFfrYAOSQXB+0X2QrEhPfF9bYOVw==}
  engines: {node: '>=18.0.0'}
  peerDependencies:
    '@aws-sdk/client-s3': ^3.914.0

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-mHLsVnPPp4iq3gL2oEBamfpeETFV0qzxRHmcnCfEP3hualV8YF8jbXGmwPCPopUPQDpbYDBHYtXaoClZikCWPQ==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-whZZIb5y+WpPzP3xOxDRwk+EVEnYB5PIXmbvT8FQmhFc4ljM+oUGcbpEOGQICvwBt74N5RYQwsIUdeR2wEOHlA==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-e9xuIftfciowzrIJmI3bXCtsVdB6P9YqHsq7zO+dkcBR4jkjmUWlQAylSBlM16cnC5EsbOK1KsU3RKELFA8TyQ==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-7r9ToySQ15+iIgXMF/h616PcQStByylVkCshmQqcdeynD/lCn2l667ynckxW4+ql0Q+Bo/URljuhJRxVJzydNA==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-Mpd0Sm9+GN7TBqGnZg1+dO5QZ/EOYEcDTo7KfvoyrXScMlxvYm9fdrUVMmLdPn/lntweZGV3uNrs+huasGOOTA==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-/gaW2VENS5vKvJbcE1umV4Ag3NuiVzpsANxtrqISxT3ovyro29o1RezW/Avz/6oJqjnmgz8soe9J1t65jJdiNg==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-yiAjQKs5S2JKYc+GrkvGMwkUvhepXDigEXpSJqUseR/IrqHhvGNuOxDxq+8LbDhM4ajEW81wkiBbU+Jl9G82yQ==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-jcbOc0FxW6p4KRJE/7LFA05cRAeLK4eZK4k4ZaWZOqbkH48WihKaDlxYsppbWa2WnIvVcjPye4kSTncBEFZrPg==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-V1Oae/oLVbpNb9uWs+v80GKylZCdsbqs2c2Xb1FsAUPtYeSnxFuAWsF3/2AEMSSpFe0dTC5KyWr/eKl2aim9VQ==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-+grKWKg+htCpkileNOqm7LO9OrE9nVPv49CYbF7dXefQIdIhfQ0pvm+hdSUnh8GFLx86FKoJs2DZSBCYqgjQFw==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-cktvDU5qsvtv9HqJ0uoPgqQ87pttRMZe33fdZ3NQmnkaT6O6AI7x9wQNW5bDH3E6rou/jYle9CBSea1Xum69rQ==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-KlmHhRbn1qdwXUdsdrJ7S/MAkkC1jLpQ11n+XvxUUUCGAJd1gjC7AjxPZUM7ieQ2zcb8bfEzIU7al+Q3ZT0u7Q==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-5cKehoTlodA2tu50avxM4Okn0mZSGiKc1nzZBvperx97IOvNXLZ2UuKpPR1ogirAF6cuMbGoIkqYIjLffFogOQ==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-EOQ/ObGwaRXfK54GnxVRdHFiUvCZ4IJYAHMoQWfF9ZrV/4g0B4eBgJAal+DRO5g1sye32EtaGwFiQ6sULJb/Pw==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-wX8lL5OnCk/54eUPP1L/dCH+Gp/f3MjnHR6rNp+dbGs7+omUAub4dEbM/JMBE4Jsn5coiVgmgqx97Q5cRxh/EA==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-kQWPsRDmom4yvAfyG6L1lMmlwnTzm1XwMHOU+G5IFlsP4YEaMtXidDzW/wiivY0QFrhfCz/4TVmu0a2aPU57ug==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-u8H4f2Zsi19DGnwj5FSZzDMhytYF/bCh37vAtBsn3cNDL3YG578X5oc+wSX54pM3tOxS+NY7tvOAo52SW7koUA==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-POUBUTjD7WQ/BVoUGluukCIkIDO12IPdwRAvUgFshfbaUdyXFuBllM/6DmdyeR3rJhXnBqe3Uy5e2eXbz/MBTw==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-QpdkoQjvPaYyzZwgk41vFyHQM5s0DsrsbQ8IoPUggQt4HaJUvmL1ShwMcSldbgdzwiRMqXUK8q7jrqUvkYkY6w==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-T89pFfgat6c8nMmpI8eKjBcDcgJq36+m9oiXbcUzeU55MP9ZuGgBomGjGnHaEyF36jenW9gmg3NfZDm0AO2XPg==}
  engines: {node: '>=18.0.0'}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-rMQUrM1ECH4kmIwlGl9UB0BtbHy6ZuKdWFrIknu8yGTRI/saAucqNTh5EI1vWBxZ0ElhK5+g7zOnUuhSmVQYUA==}

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-gTkLFUZiNPgJmeFCX8VJRmQWXKfF3Imm5IquFIR5c0sCBfhtMjTXZF0dHDW5BlceZ4tFPwfF9sCqWJ52wbFSBg==}
  engines: {node: '>=18.0.0'}
  peerDependencies:
    aws-crt: '>=1.0.0'
  peerDependenciesMeta:
    aws-crt:
      optional: true

'@aws-sdk/[email protected]':
  resolution: {integrity: sha512-k75evsBD5TcIjedycYS7QXQ98AmOtbnxRJOPtCo0IwYRmy7UvqgS/gBL5SmrIqeV6FDSYRQMgdBxSMp6MLmdew==}
  engines: {node: '>=18.0.0'}

'@aws/[email protected]':
  resolution: {integrity: sha512-ORHRQ2tmvnBXc8t/X9Z8IcSbBA4xTLKuN873FopzklHMeqBst7YG0d+AX97inkvDX+NChYtSr+qGfcqGFaI8Zw==}
  engines: {node: '>=18.0.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
  engines: {node: '>=6.9.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
  engines: {node: '>=6.9.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
  engines: {node: '>=6.9.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
  engines: {node: '>=6.9.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  engines: {node: '>=6.9.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
  engines: {node: '>=6.9.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
  engines: {node: '>=6.0.0'}
  hasBin: true

'@babel/[email protected]':
  resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
  engines: {node: '>=6.9.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
  engines: {node: '>=6.9.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
  engines: {node: '>=6.9.0'}

'@babel/[email protected]':
  resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
  engines: {node: '>=6.9.0'}

'@borewit/[email protected]':
  resolution: {integrity: sha512-5L/uBxmjaCIX5h8Z+uu+kA9BQLkc/Wl06UGR5ajNRxu+/XjonB5i8JpgFMrPj3LXTCPA0pv8yxUvbUi+QthGGA==}

'@braintree/[email protected]':
  resolution: {integrity: sha512-hPYRrKFoI+nuckPgDJfyYAkybFvheo4usS0Vw0HNAe+fmGBQA5Az37b/yStO284atBoqqdOUhKJ3d9Zw3PQkcQ==}

'@dnd-kit/[email protected]':
  resolution: {integrity: sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==}
  peerDependencies:
    react: '>=16.8.0'

'@dnd-kit/[email protected]':
  resolution: {integrity: sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==}
  peerDependencies:
    react: '>=16.8.0'
    react-dom: '>=16.8.0'

'@dnd-kit/[email protected]':
  resolution: {integrity: sha512-BG/ETy3eBjFap7+zIti53f0PCLGDzNXyTmn6fSdrudORf+OH04MxrW4p5+mPu4mgMk9kM41iYONjc3DOUWTcfg==}
  peerDependencies:
    '@dnd-kit/core': ^6.1.0
    react: '>=16.8.0'

'@dnd-kit/[email protected]':
  resolution: {integrity: sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g==}
  peerDependencies:
    '@dnd-kit/core': ^6.1.0
    react: '>=16.8.0'

'@dnd-kit/[email protected]':
  resolution: {integrity: sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==}
  peerDependencies:
    react: '>=16.8.0'

'@emotion/[email protected]':
  resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}

'@emotion/[email protected]':
  resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==}

'@emotion/[email protected]':
  resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}

'@emotion/[email protected]':
  resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}

'@emotion/[email protected]':
  resolution: {integrity: sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==}
  peerDependencies:
    '@types/react': '*'
    react: '>=16.8.0'
  peerDependenciesMeta:
    '@types/react':
      optional: true

'@emotion/[email protected]':
  resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==}

'@emotion/[email protected]':
  resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}

'@emotion/[email protected]':
  resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}

'@emotion/[email protected]':
  resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==}
  peerDependencies:
    react: '>=16.8.0'

'@emotion/[email protected]':
  resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==}

'@emotion/[email protected]':
  resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}

'@esbuild/[email protected]':
  resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
  engines: {node: '>=18'}
  cpu: [ppc64]
  os: [aix]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
  engines: {node: '>=18'}
  cpu: [arm64]
  os: [android]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
  engines: {node: '>=18'}
  cpu: [arm]
  os: [android]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
  engines: {node: '>=18'}
  cpu: [x64]
  os: [android]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
  engines: {node: '>=18'}
  cpu: [arm64]
  os: [darwin]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
  engines: {node: '>=18'}
  cpu: [x64]
  os: [darwin]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
  engines: {node: '>=18'}
  cpu: [arm64]
  os: [freebsd]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
  engines: {node: '>=18'}
  cpu: [x64]
  os: [freebsd]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
  engines: {node: '>=18'}
  cpu: [arm64]
  os: [linux]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
  engines: {node: '>=18'}
  cpu: [arm]
  os: [linux]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
  engines: {node: '>=18'}
  cpu: [ia32]
  os: [linux]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
  engines: {node: '>=18'}
  cpu: [loong64]
  os: [linux]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
  engines: {node: '>=18'}
  cpu: [mips64el]
  os: [linux]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
  engines: {node: '>=18'}
  cpu: [ppc64]
  os: [linux]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
  engines: {node: '>=18'}
  cpu: [riscv64]
  os: [linux]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
  engines: {node: '>=18'}
  cpu: [s390x]
  os: [linux]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
  engines: {node: '>=18'}
  cpu: [x64]
  os: [linux]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
  engines: {node: '>=18'}
  cpu: [arm64]
  os: [netbsd]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
  engines: {node: '>=18'}
  cpu: [x64]
  os: [netbsd]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
  engines: {node: '>=18'}
  cpu: [arm64]
  os: [openbsd]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
  engines: {node: '>=18'}
  cpu: [x64]
  os: [openbsd]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
  engines: {node: '>=18'}
  cpu: [x64]
  os: [sunos]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
  engines: {node: '>=18'}
  cpu: [arm64]
  os: [win32]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
  engines: {node: '>=18'}
  cpu: [ia32]
  os: [win32]

'@esbuild/[email protected]':
  resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
  engines: {node: '>=18'}
  cpu: [x64]
  os: [win32]

'@floating-ui/[email protected]':
  resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}

'@floating-ui/[email protected]':
  resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}

'@floating-ui/[email protected]':
  resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}

'@graphql-tools/[email protected]':
  resolution: {integrity: sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==}
  peerDependencies:
    graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0

'@graphql-tools/[email protected]':
  resolution: {integrity: sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==}
  peerDependencies:
    graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0

'@graphql-tools/[email protected]':
  resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==}
  peerDependencies:
    graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0

'@graphql-ts/[email protected]':
  resolution: {integrity: sha512-3eNrvejr++JOGTCaE9vensuOStFstgHy9U+SW3wANm2iDInkXKHXyEIwfEn7wm78FehuvIAnhu9hwJreq1U3Ng==}
  peerDependencies:
    '@graphql-ts/schema': ^0.6.0
    graphql: 15 || 16

'@graphql-ts/[email protected]':
  resolution: {integrity: sha512-gbZy0R8OmwGk7qmRAiPASi5qasStuBV8tEhAc5jZTxQENV6PeBmjWBcd3tnngXqoZyBI1zOFCRNc+qKiLOjLiA==}
  peerDependencies:
    graphql: 15 || 16

'@graphql-typed-document-node/[email protected]':
  resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
  peerDependencies:
    graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0

'@hapi/[email protected]':
  resolution: {integrity: sha512-ZvjX4JQReUmBheeCq+S9YavcnMMHWqx3S0jHNXWIM1kQDxB9cyfSycpVvjfrKcIS8Mh5N3hmu/YKo4Iag9g2Kw==}

'@hapi/[email protected]':
  resolution: {integrity: sha512-ERcCZaEjdH3OgSJlyjVk8pHIFeus91CjKP3v+MpgBNp5IvGzP2l/bRiD78nqYcKPaZdbKkK5vDBVPd2ohHBlsA==}

'@hapi/[email protected]':
  resolution: {integrity: sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==}

'@hapi/[email protected]':
  resolution: {integrity: sha512-9GM9ECEHfR8lk5ASOKG4+4ZsEzFqLfhiryIJ2ISePVB92OHLp/yne4m+zn7z9dgvM98TLpiFebjDFQ0UHcqxXQ==}
  engines: {node: '>=14.0.0'}

'@hapi/[email protected]':
  resolution: {integrity: sha512-HV5undWkKzcB4RZUusqOpcgxOaq6VOAH7zhhIr2g3G8NF/MlFO75SjOr2NfuSx0Mh40+1FqCkagKLJRykUWoFQ==}

'@hapi/[email protected]':
  resolution: {integrity: sha512-tEZnrOujKpS6jLKliyWBl3A9PaE+ppuL/+gkbyPPDb/l2KSKQyH4lhMkVb+sBhwN+qaxxlig01JRqB8dk/mPxQ==}

'@jridgewell/[email protected]':
  resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}

'@jridgewell/[email protected]':
  resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  engines: {node: '>=6.0.0'}

'@jridgewell/[email protected]':
  resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}

'@jridgewell/[email protected]':
  resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}

'@juggle/[email protected]':
  resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}

'@keystone-6/[email protected]':
  resolution: {integrity: sha512-hlkBJnAjG0FGwwAOZKr0fUSQZSMckTozZWICzG0V1/hXPNpJYPdToXkY537wF54BVI0C4mJDw4mD8QF//QyVGw==}
  peerDependencies:
    '@keystone-6/core': ^6.0.0
    react: ^18.3.1

'@keystone-6/[email protected]':
  resolution: {integrity: sha512-Fa95sMV48sLg04q8Zysl9FAUKmZpOqAEp0ulOgLaSQryB5wm9mlseJ3jYIq2Fj4BYrE41TAoZ17udDlbNltq8g==}
  hasBin: true

'@keystone-6/[email protected]':
  resolution: {integrity: sha512-fxnQL6xYTK/2xSrZ0dzBTC1Qpa4VVeXmZ+7mMvaZOWquttgvDQzBRY57q9zScRa0dAALNWU1xzq14OL8Kc+eBw==}
  peerDependencies:
    react: ^16.14.0 || 17 || 18

'@keystone-6/[email protected]':
  resolution: {integrity: sha512-tznJuBrfawvygK++HXCeOQWEY/UEvmZ4pYxFLK8haOnhgDJOeuyjOBHgmNTb22jfqqYc8TVY/9WwGowAWi1nbQ==}
  peerDependencies:
    '@keystone-6/core': ^6.0.0

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-bFuT3WtLRFWXGP0lMPRIxYG22u2BEvjP9blSeGGXQSvl3hC5Zh2r/BlylHeYaWFChcaRYRU2G/2QSLoPAvyDGQ==}

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-0/rh2nhuQDyio1I8HWfeHUhHP3Adf9+RcsrtpJfcv+U6W3NsJnL/hX68WOYOSF7vYhFgtnuCx8a57xrK1xTsEQ==}
  peerDependencies:
    react: ^18.1.0
    react-dom: ^18.1.0

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-9SXKzuHeuyxwJeGhl01oC8f9IzF5SFOFTIHTDEATMgbM/HFAKC8ygR74ZcRcwyr8rlnmmCMB2nQx1CGDUuEBVQ==}

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-myJ8AoLxJrcLYAVgH3u+hO6wO/ZeidraLzlwxOyLMgLLBJsWwOOYVRZv2nHp6S/G/gIa6UaCQKC4VI8wjvieVg==}
  peerDependencies:
    react: ^18.1.0

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-s72z2AcMzyVobKlbZ39JbyhtNrf7JMX6WaBYU59612OOXcOCYlc9X6Mt/AKUFYbx2uCOS8E1Fitxc+BT0Xoxwg==}

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-0FgmwOjRfxfS5enXrpBrLnh4Aseq+EOyWIQIfpIAUgpsTjkW3nR/RUcJZ8fzebUTvspvTeN9gfIGp0k9b87ZXg==}

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-SodZehvF0a5GmMx3LGXJW4i3QtNDTD9tnrOV+5EUb21f352z6kUVL+UxS9439ZnGvgyWETPYw/ZsGu19lD/2Ag==}

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-JH5+hI0JNDTF7bTdmDMzrGh9k5tFH89B9AtQlmakLb/rD1ZQ35ztPwNV8U/WH+pyZXC9M72POkEwHMI9paq1mA==}
  peerDependencies:
    react: ^18.1.0

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-s4V588PvZuJr02ppTE01IgzRTnRCrC47wvwv7u2PLgmyyvP5HPMBOoTuwEIxdY0J8CWAWOOT8HCu+ME68G++HQ==}
  peerDependencies:
    react: ^18.1.0

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-E0WBEkoe+e0rjSAOBAFNKNHDVvIhx9YqEcwFLaCUUj6q93O7/gUq6wNrkrTfDAhz5O9tMgLkXE6jAHdvYFk/IQ==}
  peerDependencies:
    react: ^18.1.0
    react-dom: ^18.1.0

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-3ty1Civv9tw2e0hLEOMUWgc+el2Jy85PigPn9BcudIF/WFcr9RS+Y8QrCqYSzulY6/G2nOYYAGWWL1fa6jOGcQ==}
  peerDependencies:
    react: ^18.2.0

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-Q/0UNO58SgnIwmDDsVVjDmPAuM+xWEvXJSx/46FPAKNgHbPZYNewhuW+AHn8iCcP5xScByAIcqql5FRXKBxidA==}
  peerDependencies:
    react: ^18.1.0

'@keystone-ui/[email protected]':
  resolution: {integrity: sha512-lB+1TCcXvM2R8wKg7Wd7VIY10RaKjQXR/BKUf+trozl9v/NuFEX3Ym5GvanDQXyQgwfUC6xvUX3IuHjdhCrJIw==}
  peerDependencies:
    react: ^18.1.0
    react-dom: ^18.1.0

'@next/[email protected]':
  resolution: {integrity: sha512-CgVHNZ1fRIlxkLhIX22flAZI/HmpDaZ8vwyJ/B0SDPTBuLZ1PJ+DWMjCHhqnExfmSQzA/PbZi8OAc7PAq2w9IA==}

'@next/[email protected]':
  resolution: {integrity: sha512-HqYnb6pxlsshoSTubdXKu15g3iivcbsMXg4bYpjL2iS/V6aQot+iyF4BUc2qA/J/n55YtvE4PHMKWBKGCF/+wA==}
  engines: {node: '>= 10'}
  cpu: [arm64]
  os: [darwin]

'@next/[email protected]':
  resolution: {integrity: sha512-8HGBeAE5rX3jzKvF593XTTFg3gxeU4f+UWnswa6JPhzaR6+zblO5+fjltJWIZc4aUalqTclvN2QtTC37LxvZAA==}
  engines: {node: '>= 10'}
  cpu: [x64]
  os: [darwin]

'@next/[email protected]':
  resolution: {integrity: sha512-JXMBka6lNNmqbkvcTtaX8Gu5by9547bukHQvPoLe9VRBx1gHwzf5tdt4AaezW85HAB3pikcvyqBToRTDA4DeLw==}
  engines: {node: '>= 10'}
  cpu: [arm64]
  os: [linux]

'@next/[email protected]':
  resolution: {integrity: sha512-Bm+QulsAItD/x6Ih8wGIMfRJy4G73tu1HJsrccPW6AfqdZd0Sfm5Imhgkgq2+kly065rYMnCOxTBvmvFY1BKfg==}
  engines: {node: '>= 10'}
  cpu: [arm64]
  os: [linux]

'@next/[email protected]':
  resolution: {integrity: sha512-FnFn+ZBgsVMbGDsTqo8zsnRzydvsGV8vfiWwUo1LD8FTmPTdV+otGSWKc4LJec0oSexFnCYVO4hX8P8qQKaSlg==}
  engines: {node: '>= 10'}
  cpu: [x64]
  os: [linux]

'@next/[email protected]':
  resolution: {integrity: sha512-345tsIWMzoXaQndUTDv1qypDRiebFxGYx9pYkhwY4hBRaOLt8UGfiWKr9FSSHs25dFIf8ZqIFaPdy5MljdoawA==}
  engines: {node: '>= 10'}
  cpu: [x64]
  os: [linux]

'@next/[email protected]':
  resolution: {integrity: sha512-nscpt0G6UCTkrT2ppnJnFsYbPDQwmum4GNXYTeoTIdsmMydSKFz9Iny2jpaRupTb+Wl298+Rh82WKzt9LCcqSQ==}
  engines: {node: '>= 10'}
  cpu: [arm64]
  os: [win32]

'@next/[email protected]':
  resolution: {integrity: sha512-pc9LpGNKhJ0dXQhZ5QMmYxtARwwmWLpeocFmVG5Z0DzWq5Uf0izcI8tLc+qOpqxO1PWqZ5A7J1blrUIKrIFc7Q==}
  engines: {node: '>= 10'}
  cpu: [ia32]
  os: [win32]

'@next/[email protected]':
  resolution: {integrity: sha512-nOjfZMy8B94MdisuzZo9/57xuFVLHJaDj5e/xrduJp9CV2/HrfxTRH2fbyLe+K9QT41WBLUd4iXX3R7jBp0EUg==}
  engines: {node: '>= 10'}
  cpu: [x64]
  os: [win32]

'@nodelib/[email protected]':
  resolution: {integrity: sha512-ktI9+PxfHYtKjF3cLTUAh2N+b8MijCRPNwKJNqTVdL0gB0QxLU2rIRaZ1t71oEa3YBDE6bukH1sR0+CDnpp/Mg==}
  engines: {node: '>=16.14.0'}

'@nodelib/[email protected]':
  resolution: {integrity: sha512-2tQOI38s19P9i7X/Drt0v8iMA+KMsgdhB/dyPER+e+2Y8L1Z7QvnuRdW/uLuf5YRFUYmnj4bMA6qCuZHFI1GDQ==}
  engines: {node: '>=16.14.0'}

'@nodelib/[email protected]':
  resolution: {integrity: sha512-54voNDBobGdMl3BUXSu7UaDh1P85PGHWlJ5e0XhPugo1JulOyCtp2I+5ri4wplGDJ8QGwPEQW7/x3yTLU7yF1A==}
  engines: {node: '>=16.14.0'}

'@popperjs/[email protected]':
  resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}

'@prisma/[email protected]':
  resolution: {integrity: sha512-M0SVXfyHnQREBKxCgyo7sffrKttwE6R8PMq330MIUF0pTwjUhLbW84pFDlf06B27XyCR++VtjugEnIHdr07SVA==}
  engines: {node: '>=16.13'}
  peerDependencies:
    prisma: '*'
  peerDependenciesMeta:
    prisma:
      optional: true

'@prisma/[email protected]':
  resolution: {integrity: sha512-AUt44v3YJeggO2ZU5BkXI7M4hu9BF2zzH2iF2V5pyXT/lRTyWiElZ7It+bRH1EshoMRxHgpYg4VB6rCM+mG5jQ==}

'@prisma/engines-version@5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2':
  resolution: {integrity: sha512-2PTmxFR2yHW/eB3uqWtcgRcgAbG1rwG9ZriSvQw+nnb7c4uCr3RAcGMb6/zfE88SKlC1Nj2ziUvc96Z379mHgQ==}

'@prisma/[email protected]':
  resolution: {integrity: sha512-UNjfslWhAt06kVL3CjkuYpHAWSO6L4kDCVPegV6itt7nD1kSJavd3vhgAEhjglLJJKEdJ7oIqDJ+yHk6qO8gPA==}

'@prisma/[email protected]':
  resolution: {integrity: sha512-bkrD/Mc2fSvkQBV5EpoFcZ87AvOgDxbG99488a5cexp5Ccny+UM6MAe/UFkUC0wLYD9+9befNOqGiIJhhq+HbA==}

'@prisma/[email protected]':
  resolution: {integrity: sha512-LwqcBQ5/QsuAaLNQZAIVIAJDJBMjHwMwn16e06IYx/3Okj/xEEfw9IvrqB2cJCl3b2mCBlh3eVH0w9WGmi4aHg==}

'@prisma/[email protected]':
  resolution: {integrity: sha512-pHhpQdr1UPFpt+zFfnPazhulaZYCUqeIcPpJViYoq9R+D/yw4fjE+CtnsnKzPYm0ddUbeXUzjGVGIRVgPDCk4Q==}

'@prisma/[email protected]':
  resolution: {integrity: sha512-Rsjw2ARB9VQzDczzEimUriSBdXmYG/Z5tNRer2IEwof/O8Q6A9cqV3oNVUpJ52TgWfQqMAq5K/KEf8LvvYLLOw==}

'@prisma/[email protected]':
  resolution: {integrity: sha512-a/5luEJ9o4E8IxK5uZvfH7vR1nUwd6TZ8jsVARrdJxa/cTR19xzp3H4zy7herEbZ6/UdPVrYmQk+GltU5fLZJw==}
  peerDependencies:
    '@prisma/generator-helper': '*'
    '@prisma/internals': '*'

'@prisma/prisma-schema-wasm@5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2':
  resolution: {integrity: sha512-WPNB7SgTxF/rSHMa5o5/9AIINy4oVnRhvUkRzqR4Nfp8Hu9Q2IyUptxuiDuzRVJdjJBRi/U82sHTxyiD3oBBhQ==}

'@prisma/[email protected]':
  resolution: {integrity: sha512-/TNAJXvMSk6mCgZa+gIBM6sp5OUQBnb7rbjiSQm88gvcSibxEuKkVV/2pT3RmQpEAn1yiabvS4+dOvIotYe3ww==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==}

'@protobufjs/[email protected]':
  resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}

'@sec-ant/[email protected]':
  resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}

'@sindresorhus/[email protected]':
  resolution: {integrity: sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==}
  engines: {node: '>=10'}

'@sindresorhus/[email protected]':
  resolution: {integrity: sha512-5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w==}
  engines: {node: '>=10'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-xWL9Mf8b7tIFuAlpjKtRPnHrR8XVrwTj5NPYO/QwZPtc0SDLsPxb56V5tzi5yspSMytISHybifez+4jlrx0vkQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-lX9Ay+6LisTfpLid2zZtIhSEjHMZoAR5hHCR4H7tBz/Zkfr5ea8RcQ7Tk4mi0P76p4cN+Btz16Ffno7YHpKXnQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-WmU0TnhEAJLWvfSeMxBNe5xtbselEO8+4wG0NtZeL8oR21WgH1xiO37El+/Y+H/Ie4SCwBy3MxYWmOYaGgZueA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-Kkmz3Mup2PGp/HNJxhCWkLNdlajJORLSjwkcfrj0E7nu6STAEdcMR1ir5P9/xOmncx8xXfru0fbUYLlZog/cFg==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-V4Qc2CIb5McABYfaGiIYLTmo/vwNIK7WXI5aGveBd9UcdhbOMwcvIMxIw/DJj1S9QgOMa/7FBkarMdIC0EOTEQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-hA1MQ/WAHly4SYltJKitEsIDVsNmXcQfYBRv2e+q04fnqtAX5qXaybxy/fhUeAMCnQIdAjaGDb04fMHQefWRhw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-rcr0VH0uNoMrtgKuY7sMfyKqbHc4GQaQ6Yp4vwgm+Z6psPuOgL+i/Eo/QWdXRmMinL3EgFM0Z1vkfyPyfzLmjw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-EcS0kydOr2qJ3vV45y7nWnTlrPmVIMbUFOZbMG80+e2+xePQISX9DrcbRpVRFTS5Nqz3FiEbDcTCAV0or7bqdw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-GewKGZ6lIJ9APjHFqR2cUW+Efp98xLu1KmN0jOWxQ1TN/gx3HTUPVbLciFD8CfScBj2IiKifqh9vYFRRXrYqXA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-uQobOTQq2FapuSOlmGLUeGTpvcBLE5Fc7XjERUSk4dxEi4AhTwuyHYZNAvL4EMUp7lzxxkKDFaJ1GY0ovrj0Kg==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-QIvH/CKOk1BZPz/iwfgbh1SQD5Y0lpaw2kLA8zpLRRtYMPXeYUEWh+moTaJyqDaKlbrB174kB7FSRFiZ735tWw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-bwigPylvivpRLCm+YK9I5wRIYjFESSVwl8JQ1vVx/XhCw0PtCi558NwTnT2DaVCl5pYlImGuQTSwMsZ+pIavRw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-W7eIxD+rTNsLB/2ynjmbdeP7TgxRXprfvqQxKFEfy9HW2HeD7t+g+KCIrY0pIn/GFjA6/fIpH+JQnfg5TTk76Q==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-6+NOdZDbfuU6s1ISp3UOk5Rg953RJ2aBLNLLBEcamLjHAg1Po9Ha7QIB5ZWhdRUVuOUrT8BVFR+O2KIPmw027g==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-EXMSa2yiStVII3x/+BIynyOAZlS7dGvI7RFrzXa/XssBgck/7TXJIvnjnCu328GY/VwHDC4VeDyP1S4rqwpYag==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-Cc9W5DwDuebXEDMpOpl4iERo8I0KFjTnomK2RMdhhR87GwrSmUmwMxS4P5JdRf+LsjOdIqumcerwRgYMr/tZ9Q==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
  engines: {node: '>=14.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-5+4bUEJQi/NRgzdA5SVXvAwyvEnD0ZAiKzV3yLO6dN5BG8ScKBweZ8mxXXUtdxq+Dx5k6EshKk0XJ7vgvIPSnA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-/atXLsT88GwKtfp5Jr0Ks1CSa4+lB+IgRnkNrrYP0h1wL4swHNb0YONEvTceNKNdZGJsye+W2HH8W7olbcPUeA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-SIzKVTvEudFWJbxAaq7f2GvP3jh2FHDpIFI6/VAf4FOWGFZy0vnYMPSRj8PGYI8Hjt29mvmwSRgKuO3bK4ixDw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-DCaXbQqcZ4tONMvvdz+zccDE21sLcbwWoNqzPLFlZaxt1lDtOE2tlVpRSwcTOJrjJSUThdgEYn7HrX5oLGlK9A==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-8g4NuUINpYccxiCXM5s1/V+uLtts8NcX4+sPEbvYQDZk4XoJfDpq5y2FQxfmUL89syoldpzNzA0R9nhzdtdKnQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-iGuOJkH71faPNgOj/gWuEGS6xvQashpLwWB1HjHq1lNNiVfbiJLpZVbhddPuDbx9l4Cgl0vPLq5ltRfSaHfspA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-NzI1eBpBSViOav8NVy1fqOlSfkLgkUjUTlohUSgAEhHaFWA3XJiLditvavIP7OpvTjDp5u2LhtlBhkBlEisMwA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-MAwltrDB0lZB/H6/2M5PIsISSwdI5yIh6DaBB9r0Flo9nx3y0dzl/qTMJPd7tJvPdsx6Ks/cwVzheGNYzXyNbQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-+1EZ+Y+njiefCohjlhyOcy1UNYjT+1PwGFHCxA/gYctjg3DQWAU19WigOXAco/Ql8hZokNehpzLd0/+3uCreqQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-Mn7f/1aN2/jecywDcRDvWWWJF4uwg/A0XjFMJtj72DsgHTByfjRltSqcT9NyE9RTdBSN6X1RSXrhn/YWQl8xlw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-LOVCGCmwMahYUM/P0YnU/AlDQFjcu+gWbFJooC417QRB/lDJlWSn8qmPSDp+s4YVAHOgtgbNG4sR+SxF/VOcJQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-cYlSNHcTAX/wc1rpblli3aUlLMGgKZ/Oqn8hhjFASXMCXjIqeuQBei0cnq2JR8t4RtU9FpG6uyl6PxyArTiwKA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-NkxsAxFWwsPsQiwFG2MzJ/T7uIR6AQNh1SzcxSUnmmIqIQMlLRQDKhc17M7IYjiuBXhrQRjQTo3CxX+DobS93g==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-9f9Ixej0hFhroOK2TxZfUUDR13WVa8tQzhSzPDgXe5jGL3KmaM9s8XN7RQwqtEypI82q9KHnKS71CJ+q/1xLtQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-CmSlUy+eEYbIEYN5N3vvQTRfqt0lJlQkaQUIf+oizu7BbDut0pozfDjBGecfcfWf7c62Yis4JIEgqQ/TCfodaA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-Ngb95ryR5A9xqvQFT5mAmYkCwbXvoLavLFwmi7zVg/IowFPCfiqRfkOKnbc/ZRL8ZKJ4f+Tp6kSu6wjDQb8L/g==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-QpELEHLO8SsQVtqP+MkEgCYTFW0pleGozfs3cZ183ZBj9z3VC1CX1/wtFMK64p+5bhtZo41SeLK1rBRtd25nHQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-I066AigYvY3d9VlU3zG9XzZg1yT10aNqvCaBTw9EPgu5GrsEl1aUkcMvhkIXascYH1A8W0LQo3B1Kr1cJNcQEw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
  engines: {node: '>=14.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-qI5PJSW52rnutos8Bln8nwQZRpyoSRN6k2ajyoUHNMUzmWqHnOJCnDELJuV6m5PML0VkHI+XcXzdB+6awiqYUw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-c6M/ceBTm31YdcFpgfgQAJaw3KbaLuRKnAz91iMWFLSrgxRpYm03c3bu5cpYojNMfkV9arCUelelKA7XQT36SQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-aCfxUOVv0CzBIkU10TubdgKSx5uRvzH064kaiPEWfNIvKOtNpu642P4FP1hgOFkjQIkDObrfIDnKMKkeyrejvQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-v5ObKlSe8PWUHCqEiX2fy1gNv6goiw6E5I/PN2aXg3Fb/hse0xeaAnSpXDiWl7x6LamVKq7senB+m5LOYHUAHw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-lLPWnakjC0q9z+OtiXk+9RPQiYPNAovt2IXD3CP4LkOnd9NpUsxOjMx1SnoUVB7Orb7fZp67cQMtTBKMFDvOGg==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-+qDxSkiErejw1BAIXUFBSfM5xh3arbz1MmxlbMCKanDDZtVEQ7PSKW9FQS0Vud1eI/kYn0oCTVKyNzRlq+9MUw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
  engines: {node: '>=14.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-5+nU///E5sAdD7t3hs4uwvCTWQtTR8JwKwOCSJtBRx0bY1isDo1QwH87vRK86vlFLBTISqoDA2V6xvP6nF1isQ==}
  engines: {node: '>=18.0.0'}

'@smithy/[email protected]':
  resolution: {integrity: sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==}
  engines: {node: '>=18.0.0'}

'@swc/[email protected]':
  resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}

'@swc/[email protected]':
  resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}

'@tokenizer/[email protected]':
  resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}

'@types/[email protected]':
  resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}

'@types/[email protected]':
  resolution: {integrity: sha512-kG7WrUuAKK0NoyxfQHsVE6j1m01s6kMma64E+OZenQABMQyTJop1DumUWcLwAQ2JzpefU7PDYoRDKl8uZosFjw==}

'@types/[email protected]':
  resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}

'@types/[email protected]':
  resolution: {integrity: sha512-FvPtiIf1LfhzsaIXhv/PHan/2FeQBbtBDtfX2QfvPxdUelMDEckK08SM6nqo1MIZY3RUlfA+HV8+hFUSio78qg==}

'@types/[email protected]':
  resolution: {integrity: sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==}

'@types/[email protected]':
  resolution: {integrity: sha512-fi9kvwtC3IQ6Y3QVDkYEZsqEcetAdWD0zqqk8pEHlDXWkgS2WzolWN8Z5PGPT7YJ7ga71CCI0fVKVnVKqV+P6Q==}

'@types/[email protected]':
  resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}

'@types/[email protected]':
  resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==}

'@types/[email protected]':
  resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}

'@types/[email protected]':
  resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}

'@types/[email protected]':
  resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}

'@types/[email protected]':
  resolution: {integrity: sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==}

'@types/[email protected]':
  resolution: {integrity: sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==}

'@types/[email protected]':
  resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}

'@types/[email protected]':
  resolution: {integrity: sha512-4tgJ1Z3elF/tOMpA8JLVuR9spt9Ynsf7+JjqsQ2IqtiPJtcLoHoXcT6qU4E10cPFqyXX5HDm9QwIzZhBSkLxsw==}

'@types/[email protected]':
  resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}

'@types/[email protected]':
  resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}

'@types/[email protected]':
  resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}

'@types/[email protected]':
  resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}

'@types/[email protected]':
  resolution: {integrity: sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==}
  peerDependencies:
    '@types/react': '*'

'@types/[email protected]':
  resolution: {integrity: sha512-RFA/bURkcKzx/X9oumPG9Vp3D3JUgus/d0b67KB0t5S/raciymilkOa66olh78MUI92QLbEJevO7rvqU/kjwKA==}

'@types/[email protected]':
  resolution: {integrity: sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==}

'@types/[email protected]':
  resolution: {integrity: sha512-zBF6vZJn1IaMpg3xUF25VK3gd3l8zwE0ZLRX7dsQyQi+jp4E8mMDJNGDYnYse+bQhYwWERTxVwHpi3dMOq7RKQ==}

'@types/[email protected]':
  resolution: {integrity: sha512-dOTIuqpWLyl3BBXU3maNQsS4A3zuuoYRNIvYSxxhebPfXg2mzWQEPne/nlJ37yOse6uGgR386uTpdsx4D0QZWA==}

'@types/[email protected]':
  resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}

'@wry/[email protected]':
  resolution: {integrity: sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==}
  engines: {node: '>=8'}

'@wry/[email protected]':
  resolution: {integrity: sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==}
  engines: {node: '>=8'}

'@wry/[email protected]':
  resolution: {integrity: sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==}
  engines: {node: '>=8'}

'@wry/[email protected]':
  resolution: {integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
  peerDependencies:
    ajv: ^8.0.0
  peerDependenciesMeta:
    ajv:
      optional: true

[email protected]:
  resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}

[email protected]:
  resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-pue33bWVbdlXAGFPkgz53TTmxVMrKeQr0mdRcftNY+PoHIdbGZD0hoaXHvO6OePJAkFz7OiCFUf98p1G/9+Ykw==}
  engines: {node: ^12.22.0 || ^14.17.0 || >= 16.0.0}
  peerDependencies:
    '@apollo/client': ^3.0.0
    graphql: 14 - 16

[email protected]:
  resolution: {integrity: sha512-InKjUB8TMcIiSVV/9hqmMpIXkpIjCIbRiB3qdPu4/kU9AagF2uRAdAfFgt9+ykw5xQYyqAmcIKNsgy4tqKPquQ==}

[email protected]:
  resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}

[email protected]:
  resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}

[email protected]:
  resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}

[email protected]:
  resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}

[email protected]:
  resolution: {integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==}
  engines: {node: '>=10.12.0'}

[email protected]:
  resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
  engines: {node: '>=10', npm: '>=6'}

[email protected]:
  resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}

[email protected]:
  resolution: {integrity: sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==}

[email protected]:
  resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
  engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}

[email protected]:
  resolution: {integrity: sha512-z4rE2Gxh7tvshQ4hluIT7XcFrgLIQaw9X3A+kTTRdovCz5PMukm/0QC/BKSYPj3omF5Qfypn9O/c5kgpmvYUCw==}

[email protected]:
  resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}

[email protected]:
  resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
  engines: {node: '>=10.16.0'}

[email protected]:
  resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==}

[email protected]:
  resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}

[email protected]:
  resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}

[email protected]:
  resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}

[email protected]:
  resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}

[email protected]:
  resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}

[email protected]:
  resolution: {integrity: sha512-wOlqdqziE/NNTUJsfSgXmBMIrYmfd5V0HCGsR8uAKHcg+h9NENWINcfRjtWGU77wDHC8B8ijV4hMTGYbrKovng==}

[email protected]:
  resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  engines: {node: '>=7.0.0'}

[email protected]:
  resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}

[email protected]:
  resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==}

[email protected]:
  resolution: {integrity: sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==}
  engines: {node: '>=12'}

[email protected]:
  resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}

[email protected]:
  resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}

[email protected]:
  resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
  engines: {node: '>=18'}

[email protected]:
  resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
  engines: {node: '>= 0.10'}

[email protected]:
  resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==}

[email protected]:
  resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}

[email protected]:
  resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==}

[email protected]:
  resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
  engines: {node: '>=0.11'}

[email protected]:
  resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}

[email protected]:
  resolution: {integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  peerDependencies:
    supports-color: '*'
  peerDependenciesMeta:
    supports-color:
      optional: true

[email protected]:
  resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  engines: {node: '>=6.0'}
  peerDependencies:
    supports-color: '*'
  peerDependenciesMeta:
    supports-color:
      optional: true

[email protected]:
  resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}

[email protected]:
  resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  engines: {node: '>=0.4.0'}

[email protected]:
  resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
  engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}

[email protected]:
  resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}

[email protected]:
  resolution: {integrity: sha512-GYqKi1aH7PJXxdhTeZBFrg8vUBeKXi+cNprXsC1kpJcbcVnV9wBsrOu1cQEdG0WeQwlfHiy3XvnKfIrJ2R0NzQ==}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}

[email protected]:
  resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-tk/krAwT6OAT6b/S1LjJ3CbjJwQryUfBOkqTE8jEJiaUFkcvUQ+9Isu3jgmeZiYmdsLfbs5mfj09kY+otRy5KA==}

[email protected]:
  resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}

[email protected]:
  resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}

[email protected]:
  resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
  engines: {node: '>=18'}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}

[email protected]:
  resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
  engines: {node: '>=0.8.x'}

[email protected]:
  resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
  engines: {node: '>= 0.10.0'}

[email protected]:
  resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==}
  engines: {node: ^12.20 || >= 14.13}

[email protected]:
  resolution: {integrity: sha512-oNvBekbhsm/0PNSOWca5raHNAi6dG960Bx6LJgxDPNF59WpuspgQ17bN5MKwOr7JcFdQYc7StW3VZ28DBZLavQ==}

[email protected]:
  resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}

[email protected]:
  resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}

[email protected]:
  resolution: {integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}

[email protected]:
  resolution: {integrity: sha512-VZR5I7k5wkD0HgFnMsq5hOsSc710MJMu5Nc5QYsbe38NN5iPV/XTObYLc/cpttRTf6lX538+5uO1ZQRhYibiZQ==}
  engines: {node: '>=18'}

[email protected]:
  resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}

[email protected]:
  resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-Ik/6OCk9RQQ0T5Xw+hKNLWrjSMtv51dD4GRmJjbD5a58TIEpI5a5iXagKVl3Z5UuyslMCA8Xwnu76jQob62Yhg==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==}

[email protected]:
  resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
  engines: {node: '>= 6'}

[email protected]:
  resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-nKcE1UduoSKX27NSZlg879LdQc94OtbOsEmKMN2MBNudXREvijRKx2GEBsTMTfws+BrbkJoEuynbGSVRSpauvw==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
  engines: {node: '>=14.14'}

[email protected]:
  resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==}
  engines: {node: '>=14.14'}

[email protected]:
  resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  os: [darwin]

[email protected]:
  resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}

[email protected]:
  resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
  engines: {node: '>=18'}

[email protected]:
  resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}

[email protected]:
  resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==}
  engines: {node: '>=10'}
  peerDependencies:
    graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0

[email protected]:
  resolution: {integrity: sha512-ufJAkZJBKWRDD/4wJR3VZMy9QWTwqIYIciPtCEF5fCNgWF+V1p7uIgz+bP2YYLiS4OJBhCKR8rnqE/Wg3XPUiw==}
  engines: {node: ^14.17.0 || ^16.0.0 || >= 18.0.0}
  peerDependencies:
    '@types/express': ^4.0.29
    '@types/koa': ^2.11.4
    graphql: ^16.3.0
  peerDependenciesMeta:
    '@types/express':
      optional: true
    '@types/koa':
      optional: true

[email protected]:
  resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==}
  engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}

[email protected]:
  resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}

[email protected]:
  resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}

[email protected]:
  resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}

[email protected]:
  resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}

[email protected]:
  resolution: {integrity: sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==}
  engines: {node: '>=16.x'}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-tmjF/k8QDKydUlm3mZU+tjM6zeq9/fFpPqH9SzWmBnVVKsPBg/V66qsMwb3/Bo90cgUN+ghdVBess+hPsxUyRw==}

[email protected]:
  resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-+Bg3+kg+J6JUWn8J6bzFmOWkTQ6L/NHfDRSYU+EVvuKHDxUDHAXgqixHfVlzuBQaPOTac8hn43aPhMNk6rMe3g==}
  engines: {node: '>=18.0.0'}

[email protected]:
  resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}

[email protected]:
  resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==}
  deprecated: The Intersection Observer polyfill is no longer needed and can safely be removed. Intersection Observer has been Baseline since 2019.

[email protected]:
  resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
  engines: {node: '>= 0.10'}

[email protected]:
  resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}

[email protected]:
  resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}

[email protected]:
  resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}

[email protected]:
  resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}

[email protected]:
  resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}

[email protected]:
  resolution: {integrity: sha512-UknnZK4RakDmTgz4PI1wIph5yxSs/mvChWs9ifnlXsKuXgWmOkY/hAE0H/k2MIqH0RlRye0i1oC07MCRSD28Mw==}

[email protected]:
  resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
  engines: {node: '>=18'}

[email protected]:
  resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}

[email protected]:
  resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}

[email protected]:
  resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  engines: {node: '>=6'}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}

[email protected]:
  resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}

[email protected]:
  resolution: {integrity: sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==}

[email protected]:
  resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}

[email protected]:
  resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}

[email protected]:
  resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==}

[email protected]:
  resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}

[email protected]:
  resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}

[email protected]:
  resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
  engines: {node: '>= 0.6.0'}

[email protected]:
  resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==}

[email protected]:
  resolution: {integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==}

[email protected]:
  resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
  engines: {node: '>=12'}

[email protected]:
  resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-0HX3BHPixkbECX+Vt7nS1vJ6P2twPgGTU3PMXjWrl1eyVCL24tFHeyYN1FN5RKLzve0TyzNI9qntqQGbebnfPQ==}

[email protected]:
  resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==}

[email protected]:
  resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}

[email protected]:
  resolution: {integrity: sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==}

[email protected]:
  resolution: {integrity: sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==}

[email protected]:
  resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==}

[email protected]:
  resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}

[email protected]:
  resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}

[email protected]:
  resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}

[email protected]:
  resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==}

[email protected]:
  resolution: {integrity: sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==}

[email protected]:
  resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}

[email protected]:
  resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
  engines: {node: '>=4'}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
  engines: {node: '>=4'}

[email protected]:
  resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
  engines: {node: '>= 6'}

[email protected]:
  resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}

[email protected]:
  resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}

[email protected]:
  resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-GiKHLsD00t4ACm1p00VgrI0rUFAC9cRDGReKyERlM57aeEZkOQGcZTpIbsGn0b562FTPJWmYfKwplfO9EaT6ng==}
  engines: {node: '>=18.17.0'}
  hasBin: true
  peerDependencies:
    '@opentelemetry/api': ^1.1.0
    '@playwright/test': ^1.41.2
    react: ^18.2.0
    react-dom: ^18.2.0
    sass: ^1.3.0
  peerDependenciesMeta:
    '@opentelemetry/api':
      optional: true
    '@playwright/test':
      optional: true
    sass:
      optional: true

[email protected]:
  resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}

[email protected]:
  resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
  engines: {node: 4.x || >=6.0.0}
  peerDependencies:
    encoding: ^0.1.0
  peerDependenciesMeta:
    encoding:
      optional: true

[email protected]:
  resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}

[email protected]:
  resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==}
  engines: {node: '>= 10.12.0'}

[email protected]:
  resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-mLXNwWPa9dgFyDqkNi54sjDyNJ9/fTI6WGBLgnXku1vdKY/jovHfZT5r+aiVeFFLOz+foPNOm5YJ4mqgld2GBQ==}

[email protected]:
  resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  engines: {node: '>=6'}

[email protected]:
  resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}

[email protected]:
  resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
  engines: {node: '>=4'}

[email protected]:
  resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}

[email protected]:
  resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}

[email protected]:
  resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-peBp3qZyuS6cNIJ2akRNG1uo1WJ1d0wTxg/fxMdZ0BqCVhx242bSFHM9eNqflfJVS9SsgkzgT/1UgnsurBOTMg==}
  engines: {node: '>=14.16'}

[email protected]:
  resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}

[email protected]:
  resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
  engines: {node: '>=4'}

[email protected]:
  resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
  engines: {node: ^10 || ^12 || >=14}

[email protected]:
  resolution: {integrity: sha512-vtpjW3XuYCSnMsNVBjLMNkTj6OZbudcPPTPYHqX0CJfpcdWciI1dM8uHETwmDxxiqEwCIE6WvXucWUetJgfu/A==}
  engines: {node: '>=16.13'}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
  engines: {node: '>= 6'}

[email protected]:
  resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}

[email protected]:
  resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
  engines: {node: '>= 0.10'}

[email protected]:
  resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
  engines: {node: '>=0.6'}

[email protected]:
  resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}

[email protected]:
  resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}

[email protected]:
  resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-ma2FePH0z3px2+WOu6h+YycZcEvFmmxIlAb62cF52bG86eMySciO/EQZeQMXd07kPCYB0a1dWDT5J+KE9mCDUw==}
  peerDependencies:
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc

[email protected]:
  resolution: {integrity: sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA==}
  peerDependencies:
    date-fns: ^2.28.0 || ^3.0.0
    react: ^16.8.0 || ^17.0.0 || ^18.0.0

[email protected]:
  resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
  peerDependencies:
    react: ^18.3.1

[email protected]:
  resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}

[email protected]:
  resolution: {integrity: sha512-ehylFFWyYtBKXjAO9+3v8d0i+cnc1trGS0vlTGhzFW1vbFXVUTmR8s2tt/ZQG8x5hElg6rhENlLG1H3EZK0Llg==}
  peerDependencies:
    '@types/react': '*'
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  peerDependenciesMeta:
    '@types/react':
      optional: true

[email protected]:
  resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}

[email protected]:
  resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==}
  peerDependencies:
    '@popperjs/core': ^2.0.0
    react: ^16.8.0 || ^17 || ^18
    react-dom: ^16.8.0 || ^17 || ^18

[email protected]:
  resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
  engines: {node: '>=10'}
  peerDependencies:
    '@types/react': '*'
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  peerDependenciesMeta:
    '@types/react':
      optional: true

[email protected]:
  resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==}
  engines: {node: '>=10'}
  peerDependencies:
    '@types/react': '*'
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  peerDependenciesMeta:
    '@types/react':
      optional: true

[email protected]:
  resolution: {integrity: sha512-Z33nHdEFWq9tfnfVXaiM12rbJmk+QjFEztWLtmXqQhz6Al4UZZ9xc0wiatmGtUOCCnHN0WizL3tCMYRENX4rVQ==}
  peerDependencies:
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
    react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0

[email protected]:
  resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
  engines: {node: '>=10'}
  peerDependencies:
    '@types/react': '*'
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  peerDependenciesMeta:
    '@types/react':
      optional: true

[email protected]:
  resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
  peerDependencies:
    react: '>=16.6.0'
    react-dom: '>=16.6.0'

[email protected]:
  resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  engines: {node: '>= 6'}

[email protected]:
  resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==}
  peerDependencies:
    '@types/react': '*'
    react: '*'
  peerDependenciesMeta:
    '@types/react':
      optional: true
    react:
      optional: true

[email protected]:
  resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==}

[email protected]:
  resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
  engines: {node: '>=0.10'}

[email protected]:
  resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  engines: {node: '>=4'}

[email protected]:
  resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
  engines: {node: '>= 0.4'}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
  engines: {node: '>= 4'}

[email protected]:
  resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
  engines: {iojs: '>=1.0.0', node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}

[email protected]:
  resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}

[email protected]:
  resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}

[email protected]:
  resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}

[email protected]:
  resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}

[email protected]:
  resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
  engines: {node: '>=10'}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
  engines: {node: '>= 0.8.0'}

[email protected]:
  resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
  engines: {node: '>= 0.8.0'}

[email protected]:
  resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}

[email protected]:
  resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==}
  engines: {node: '>= 0.10'}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}

[email protected]:
  resolution: {integrity: sha512-D6J0DF9qdJrXnRDVhYZfHzzpVxzqKRKFfS0Wcin2q0UC+OnQZ0lbCGJobatVbisOlbSe7dYFHBp9OZ6v1lEcbQ==}
  peerDependencies:
    slate: '>=0.99.0'

[email protected]:
  resolution: {integrity: sha512-sgdff4Usdflmw5ZUbhDkxFwCBQ2qlDKMMkF93w66KdV48vHOgN2BmLrf+2H8SdX8PYIpP/cTB0w8qWC2GwhDVA==}
  peerDependencies:
    slate: '>=0.65.3'

[email protected]:
  resolution: {integrity: sha512-DiiVSYn+dilx0j40FjaaHiG2KbaX4lZfTdEnYvUJMnpc+d9evcuO2nV6KCDQOtS6xr4w0sBzQMxrpGlA5alKww==}
  peerDependencies:
    react: '>=18.2.0'
    react-dom: '>=18.2.0'
    slate: '>=0.99.0'
    slate-dom: '>=0.110.2'

[email protected]:
  resolution: {integrity: sha512-4xGULnyMCiEQ0Ml7JAC1A6HVE6MNpPJU7Eq4cXh1LxlrR0dFXC3XC+rNfQtUJ7chHoPkws57x7DDiWiZAt+PBA==}

[email protected]:
  resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
  engines: {node: '>=0.10.0'}

[email protected]:
  resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}

[email protected]:
  resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}

[email protected]:
  resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}

[email protected]:
  resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}

[email protected]:
  resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}

[email protected]:
  resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
  engines: {node: '>=10.0.0'}

[email protected]:
  resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}

[email protected]:
  resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-7ZvoFTiCnGxBtDqJ//Cu6fWtZtc7Y3x+QOirG15wztbdngGSkht27o2pyGWrVy0b4WAy3jbKmnoK6g5VlVNUUw==}

[email protected]:
  resolution: {integrity: sha512-FhwotcEqjr241ZbjFzjlIYg6c5/L/s4yBGWSMvJ9UoExiSqL+FnFA/CaeZx17WGaZMS/4SOZp8wH18jSS4R4lw==}
  engines: {node: '>=16'}

[email protected]:
  resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
  engines: {node: '>= 12.0.0'}
  peerDependencies:
    '@babel/core': '*'
    babel-plugin-macros: '*'
    react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
  peerDependenciesMeta:
    '@babel/core':
      optional: true
    babel-plugin-macros:
      optional: true

[email protected]:
  resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}

[email protected]:
  resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==}
  engines: {node: '>=0.10'}

[email protected]:
  resolution: {integrity: sha512-EIHvdY5bPLuWForiR/AN2Bxngzpuwn1is4asboytXtpTgsArc+WmSJKVLlhdh71u7jFcryDqB2A8lQvj78MkyQ==}

[email protected]:
  resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}

[email protected]:
  resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}

[email protected]:
  resolution: {integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
  engines: {node: '>=0.6'}

[email protected]:
  resolution: {integrity: sha512-kh9LVIWH5CnL63Ipf0jhlBIy0UsrMj/NJDfpsy1SqOXlLKEVyXXYrnFxFT1yOOYVGBSApeVnjPw/sBz5BfEjAQ==}
  engines: {node: '>=14.16'}

[email protected]:
  resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}

[email protected]:
  resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}

[email protected]:
  resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
  engines: {node: '>=8'}

[email protected]:
  resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
  engines: {node: '>= 0.6'}

[email protected]:
  resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  engines: {node: '>=14.17'}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==}
  engines: {node: '>=18'}

[email protected]:
  resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}

[email protected]:
  resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}

[email protected]:
  resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}

[email protected]:
  resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}

[email protected]:
  resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  engines: {node: '>= 10.0.0'}

[email protected]:
  resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
  engines: {node: '>=10'}
  peerDependencies:
    '@types/react': '*'
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  peerDependenciesMeta:
    '@types/react':
      optional: true

[email protected]:
  resolution: {integrity: sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==}
  peerDependencies:
    '@types/react': '*'
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  peerDependenciesMeta:
    '@types/react':
      optional: true

[email protected]:
  resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
  engines: {node: '>=10'}
  peerDependencies:
    '@types/react': '*'
    react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
  peerDependenciesMeta:
    '@types/react':
      optional: true

[email protected]:
  resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}

[email protected]:
  resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
  engines: {node: '>= 0.4.0'}

[email protected]:
  resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
  hasBin: true

[email protected]:
  resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}

[email protected]:
  resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==}
  engines: {node: '>=12'}

[email protected]:
  resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
  engines: {node: '>= 0.8'}

[email protected]:
  resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}

[email protected]:
  resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}

[email protected]:
  resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
  engines: {node: '>=12'}

[email protected]:
  resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}

[email protected]:
  resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
  engines: {node: '>= 0.4'}

[email protected]:
  resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}

[email protected]:
  resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
  engines: {node: '>= 6'}

[email protected]:
  resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
  engines: {node: '>=10'}

[email protected]:
  resolution: {integrity: sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==}

[email protected]:
  resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==}

[email protected]:
  resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}

[email protected]:
  resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}

snapshots:

'@apollo/[email protected]([email protected])':
  dependencies:
    graphql: 16.11.0

'@apollo/[email protected](@types/[email protected])([email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@graphql-typed-document-node/core': 3.2.0([email protected])
    '@wry/caches': 1.0.1
    '@wry/equality': 0.5.7
    '@wry/trie': 0.5.0
    graphql: 16.11.0
    graphql-tag: 2.12.6([email protected])
    hoist-non-react-statics: 3.3.2
    optimism: 0.18.1
    prop-types: 15.8.1
    rehackt: 0.1.0(@types/[email protected])([email protected])
    symbol-observable: 4.0.0
    ts-invariant: 0.10.3
    tslib: 2.8.1
    zen-observable-ts: 1.2.5
  optionalDependencies:
    react: 18.3.1
    react-dom: 18.3.1([email protected])
  transitivePeerDependencies:
    - '@types/react'

'@apollo/[email protected]':
  dependencies:
    '@protobufjs/aspromise': 1.1.2
    '@protobufjs/base64': 1.1.2
    '@protobufjs/codegen': 2.0.4
    '@protobufjs/eventemitter': 1.1.0
    '@protobufjs/fetch': 1.1.0
    '@protobufjs/float': 1.0.2
    '@protobufjs/inquire': 1.1.0
    '@protobufjs/path': 1.1.2
    '@protobufjs/pool': 1.1.0
    '@protobufjs/utf8': 1.1.0
    '@types/long': 4.0.2
    long: 4.0.0

'@apollo/[email protected]([email protected])':
  dependencies:
    '@apollo/usage-reporting-protobuf': 4.1.1
    '@apollo/utils.fetcher': 2.0.1
    '@apollo/utils.keyvaluecache': 2.1.1
    '@apollo/utils.logger': 2.0.1
    graphql: 16.11.0

'@apollo/[email protected]([email protected])':
  dependencies:
    '@apollo/cache-control-types': 1.0.3([email protected])
    '@apollo/server-gateway-interface': 1.1.1([email protected])
    '@apollo/usage-reporting-protobuf': 4.1.1
    '@apollo/utils.createhash': 2.0.2
    '@apollo/utils.fetcher': 2.0.1
    '@apollo/utils.isnodelike': 2.0.1
    '@apollo/utils.keyvaluecache': 2.1.1
    '@apollo/utils.logger': 2.0.1
    '@apollo/utils.usagereporting': 2.1.0([email protected])
    '@apollo/utils.withrequired': 2.0.1
    '@graphql-tools/schema': 9.0.19([email protected])
    '@types/express': 4.17.23
    '@types/express-serve-static-core': 4.19.7
    '@types/node-fetch': 2.6.13
    async-retry: 1.3.3
    cors: 2.8.5
    express: 4.21.2
    graphql: 16.11.0
    loglevel: 1.9.2
    lru-cache: 7.18.3
    negotiator: 0.6.4
    node-abort-controller: 3.1.1
    node-fetch: 2.7.0
    uuid: 9.0.1
    whatwg-mimetype: 3.0.0
  transitivePeerDependencies:
    - encoding
    - supports-color

'@apollo/[email protected]':
  dependencies:
    '@apollo/protobufjs': 1.2.7

'@apollo/[email protected]':
  dependencies:
    '@apollo/utils.isnodelike': 2.0.1
    sha.js: 2.4.12

'@apollo/[email protected]([email protected])':
  dependencies:
    graphql: 16.11.0

'@apollo/[email protected]': {}

'@apollo/[email protected]': {}

'@apollo/[email protected]':
  dependencies:
    '@apollo/utils.logger': 2.0.1
    lru-cache: 7.18.3

'@apollo/[email protected]': {}

'@apollo/[email protected]([email protected])':
  dependencies:
    graphql: 16.11.0

'@apollo/[email protected]([email protected])':
  dependencies:
    graphql: 16.11.0

'@apollo/[email protected]([email protected])':
  dependencies:
    graphql: 16.11.0
    lodash.sortby: 4.7.0

'@apollo/[email protected]([email protected])':
  dependencies:
    graphql: 16.11.0

'@apollo/[email protected]([email protected])':
  dependencies:
    '@apollo/usage-reporting-protobuf': 4.1.1
    '@apollo/utils.dropunuseddefinitions': 2.0.1([email protected])
    '@apollo/utils.printwithreducedwhitespace': 2.0.1([email protected])
    '@apollo/utils.removealiases': 2.0.1([email protected])
    '@apollo/utils.sortast': 2.0.1([email protected])
    '@apollo/utils.stripsensitiveliterals': 2.0.1([email protected])
    graphql: 16.11.0

'@apollo/[email protected]': {}

'@aws-crypto/[email protected]':
  dependencies:
    '@aws-crypto/util': 5.2.0
    '@aws-sdk/types': 3.914.0
    tslib: 2.8.1

'@aws-crypto/[email protected]':
  dependencies:
    '@aws-crypto/util': 5.2.0
    '@aws-sdk/types': 3.914.0
    tslib: 2.8.1

'@aws-crypto/[email protected]':
  dependencies:
    '@aws-crypto/supports-web-crypto': 5.2.0
    '@aws-crypto/util': 5.2.0
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/util-locate-window': 3.893.0
    '@smithy/util-utf8': 2.3.0
    tslib: 2.8.1

'@aws-crypto/[email protected]':
  dependencies:
    '@aws-crypto/sha256-js': 5.2.0
    '@aws-crypto/supports-web-crypto': 5.2.0
    '@aws-crypto/util': 5.2.0
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/util-locate-window': 3.893.0
    '@smithy/util-utf8': 2.3.0
    tslib: 2.8.1

'@aws-crypto/[email protected]':
  dependencies:
    '@aws-crypto/util': 5.2.0
    '@aws-sdk/types': 3.914.0
    tslib: 2.8.1

'@aws-crypto/[email protected]':
  dependencies:
    tslib: 2.8.1

'@aws-crypto/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/util-utf8': 2.3.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-crypto/sha1-browser': 5.2.0
    '@aws-crypto/sha256-browser': 5.2.0
    '@aws-crypto/sha256-js': 5.2.0
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/credential-provider-node': 3.914.0
    '@aws-sdk/middleware-bucket-endpoint': 3.914.0
    '@aws-sdk/middleware-expect-continue': 3.914.0
    '@aws-sdk/middleware-flexible-checksums': 3.914.0
    '@aws-sdk/middleware-host-header': 3.914.0
    '@aws-sdk/middleware-location-constraint': 3.914.0
    '@aws-sdk/middleware-logger': 3.914.0
    '@aws-sdk/middleware-recursion-detection': 3.914.0
    '@aws-sdk/middleware-sdk-s3': 3.914.0
    '@aws-sdk/middleware-ssec': 3.914.0
    '@aws-sdk/middleware-user-agent': 3.914.0
    '@aws-sdk/region-config-resolver': 3.914.0
    '@aws-sdk/signature-v4-multi-region': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/util-endpoints': 3.914.0
    '@aws-sdk/util-user-agent-browser': 3.914.0
    '@aws-sdk/util-user-agent-node': 3.914.0
    '@aws-sdk/xml-builder': 3.914.0
    '@smithy/config-resolver': 4.4.0
    '@smithy/core': 3.17.1
    '@smithy/eventstream-serde-browser': 4.2.3
    '@smithy/eventstream-serde-config-resolver': 4.3.3
    '@smithy/eventstream-serde-node': 4.2.3
    '@smithy/fetch-http-handler': 5.3.4
    '@smithy/hash-blob-browser': 4.2.4
    '@smithy/hash-node': 4.2.3
    '@smithy/hash-stream-node': 4.2.3
    '@smithy/invalid-dependency': 4.2.3
    '@smithy/md5-js': 4.2.3
    '@smithy/middleware-content-length': 4.2.3
    '@smithy/middleware-endpoint': 4.3.5
    '@smithy/middleware-retry': 4.4.5
    '@smithy/middleware-serde': 4.2.3
    '@smithy/middleware-stack': 4.2.3
    '@smithy/node-config-provider': 4.3.3
    '@smithy/node-http-handler': 4.4.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    '@smithy/url-parser': 4.2.3
    '@smithy/util-base64': 4.3.0
    '@smithy/util-body-length-browser': 4.2.0
    '@smithy/util-body-length-node': 4.2.1
    '@smithy/util-defaults-mode-browser': 4.3.4
    '@smithy/util-defaults-mode-node': 4.2.6
    '@smithy/util-endpoints': 3.2.3
    '@smithy/util-middleware': 4.2.3
    '@smithy/util-retry': 4.2.3
    '@smithy/util-stream': 4.5.4
    '@smithy/util-utf8': 4.2.0
    '@smithy/util-waiter': 4.2.3
    '@smithy/uuid': 1.1.0
    tslib: 2.8.1
  transitivePeerDependencies:
    - aws-crt

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-crypto/sha256-browser': 5.2.0
    '@aws-crypto/sha256-js': 5.2.0
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/middleware-host-header': 3.914.0
    '@aws-sdk/middleware-logger': 3.914.0
    '@aws-sdk/middleware-recursion-detection': 3.914.0
    '@aws-sdk/middleware-user-agent': 3.914.0
    '@aws-sdk/region-config-resolver': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/util-endpoints': 3.914.0
    '@aws-sdk/util-user-agent-browser': 3.914.0
    '@aws-sdk/util-user-agent-node': 3.914.0
    '@smithy/config-resolver': 4.4.0
    '@smithy/core': 3.17.1
    '@smithy/fetch-http-handler': 5.3.4
    '@smithy/hash-node': 4.2.3
    '@smithy/invalid-dependency': 4.2.3
    '@smithy/middleware-content-length': 4.2.3
    '@smithy/middleware-endpoint': 4.3.5
    '@smithy/middleware-retry': 4.4.5
    '@smithy/middleware-serde': 4.2.3
    '@smithy/middleware-stack': 4.2.3
    '@smithy/node-config-provider': 4.3.3
    '@smithy/node-http-handler': 4.4.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    '@smithy/url-parser': 4.2.3
    '@smithy/util-base64': 4.3.0
    '@smithy/util-body-length-browser': 4.2.0
    '@smithy/util-body-length-node': 4.2.1
    '@smithy/util-defaults-mode-browser': 4.3.4
    '@smithy/util-defaults-mode-node': 4.2.6
    '@smithy/util-endpoints': 3.2.3
    '@smithy/util-middleware': 4.2.3
    '@smithy/util-retry': 4.2.3
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1
  transitivePeerDependencies:
    - aws-crt

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/xml-builder': 3.914.0
    '@smithy/core': 3.17.1
    '@smithy/node-config-provider': 4.3.3
    '@smithy/property-provider': 4.2.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/signature-v4': 5.3.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    '@smithy/util-base64': 4.3.0
    '@smithy/util-middleware': 4.2.3
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/property-provider': 4.2.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/fetch-http-handler': 5.3.4
    '@smithy/node-http-handler': 4.4.3
    '@smithy/property-provider': 4.2.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    '@smithy/util-stream': 4.5.4
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/credential-provider-env': 3.914.0
    '@aws-sdk/credential-provider-http': 3.914.0
    '@aws-sdk/credential-provider-process': 3.914.0
    '@aws-sdk/credential-provider-sso': 3.914.0
    '@aws-sdk/credential-provider-web-identity': 3.914.0
    '@aws-sdk/nested-clients': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/credential-provider-imds': 4.2.3
    '@smithy/property-provider': 4.2.3
    '@smithy/shared-ini-file-loader': 4.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1
  transitivePeerDependencies:
    - aws-crt

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/credential-provider-env': 3.914.0
    '@aws-sdk/credential-provider-http': 3.914.0
    '@aws-sdk/credential-provider-ini': 3.914.0
    '@aws-sdk/credential-provider-process': 3.914.0
    '@aws-sdk/credential-provider-sso': 3.914.0
    '@aws-sdk/credential-provider-web-identity': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/credential-provider-imds': 4.2.3
    '@smithy/property-provider': 4.2.3
    '@smithy/shared-ini-file-loader': 4.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1
  transitivePeerDependencies:
    - aws-crt

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/property-provider': 4.2.3
    '@smithy/shared-ini-file-loader': 4.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/client-sso': 3.914.0
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/token-providers': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/property-provider': 4.2.3
    '@smithy/shared-ini-file-loader': 4.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1
  transitivePeerDependencies:
    - aws-crt

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/nested-clients': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/property-provider': 4.2.3
    '@smithy/shared-ini-file-loader': 4.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1
  transitivePeerDependencies:
    - aws-crt

'@aws-sdk/[email protected](@aws-sdk/[email protected])':
  dependencies:
    '@aws-sdk/client-s3': 3.914.0
    '@smithy/abort-controller': 4.2.3
    '@smithy/middleware-endpoint': 4.3.5
    '@smithy/smithy-client': 4.9.1
    buffer: 5.6.0
    events: 3.3.0
    stream-browserify: 3.0.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/util-arn-parser': 3.893.0
    '@smithy/node-config-provider': 4.3.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    '@smithy/util-config-provider': 4.2.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-crypto/crc32': 5.2.0
    '@aws-crypto/crc32c': 5.2.0
    '@aws-crypto/util': 5.2.0
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/is-array-buffer': 4.2.0
    '@smithy/node-config-provider': 4.3.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    '@smithy/util-middleware': 4.2.3
    '@smithy/util-stream': 4.5.4
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@aws/lambda-invoke-store': 0.0.1
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/util-arn-parser': 3.893.0
    '@smithy/core': 3.17.1
    '@smithy/node-config-provider': 4.3.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/signature-v4': 5.3.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    '@smithy/util-config-provider': 4.2.0
    '@smithy/util-middleware': 4.2.3
    '@smithy/util-stream': 4.5.4
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/util-endpoints': 3.914.0
    '@smithy/core': 3.17.1
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-crypto/sha256-browser': 5.2.0
    '@aws-crypto/sha256-js': 5.2.0
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/middleware-host-header': 3.914.0
    '@aws-sdk/middleware-logger': 3.914.0
    '@aws-sdk/middleware-recursion-detection': 3.914.0
    '@aws-sdk/middleware-user-agent': 3.914.0
    '@aws-sdk/region-config-resolver': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/util-endpoints': 3.914.0
    '@aws-sdk/util-user-agent-browser': 3.914.0
    '@aws-sdk/util-user-agent-node': 3.914.0
    '@smithy/config-resolver': 4.4.0
    '@smithy/core': 3.17.1
    '@smithy/fetch-http-handler': 5.3.4
    '@smithy/hash-node': 4.2.3
    '@smithy/invalid-dependency': 4.2.3
    '@smithy/middleware-content-length': 4.2.3
    '@smithy/middleware-endpoint': 4.3.5
    '@smithy/middleware-retry': 4.4.5
    '@smithy/middleware-serde': 4.2.3
    '@smithy/middleware-stack': 4.2.3
    '@smithy/node-config-provider': 4.3.3
    '@smithy/node-http-handler': 4.4.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    '@smithy/url-parser': 4.2.3
    '@smithy/util-base64': 4.3.0
    '@smithy/util-body-length-browser': 4.2.0
    '@smithy/util-body-length-node': 4.2.1
    '@smithy/util-defaults-mode-browser': 4.3.4
    '@smithy/util-defaults-mode-node': 4.2.6
    '@smithy/util-endpoints': 3.2.3
    '@smithy/util-middleware': 4.2.3
    '@smithy/util-retry': 4.2.3
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1
  transitivePeerDependencies:
    - aws-crt

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/config-resolver': 4.4.0
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/signature-v4-multi-region': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@aws-sdk/util-format-url': 3.914.0
    '@smithy/middleware-endpoint': 4.3.5
    '@smithy/protocol-http': 5.3.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/middleware-sdk-s3': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/protocol-http': 5.3.3
    '@smithy/signature-v4': 5.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/core': 3.914.0
    '@aws-sdk/nested-clients': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/property-provider': 4.2.3
    '@smithy/shared-ini-file-loader': 4.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1
  transitivePeerDependencies:
    - aws-crt

'@aws-sdk/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/types': 4.8.0
    '@smithy/url-parser': 4.2.3
    '@smithy/util-endpoints': 3.2.3
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/querystring-builder': 4.2.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/types': 3.914.0
    '@smithy/types': 4.8.0
    bowser: 2.12.1
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@aws-sdk/middleware-user-agent': 3.914.0
    '@aws-sdk/types': 3.914.0
    '@smithy/node-config-provider': 4.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@aws-sdk/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    fast-xml-parser: 5.2.5
    tslib: 2.8.1

'@aws/[email protected]': {}

'@babel/[email protected]':
  dependencies:
    '@babel/helper-validator-identifier': 7.27.1
    js-tokens: 4.0.0
    picocolors: 1.1.1

'@babel/[email protected]':
  dependencies:
    '@babel/parser': 7.28.4
    '@babel/types': 7.28.4
    '@jridgewell/gen-mapping': 0.3.13
    '@jridgewell/trace-mapping': 0.3.31
    jsesc: 3.1.0

'@babel/[email protected]': {}

'@babel/[email protected]':
  dependencies:
    '@babel/traverse': 7.28.4
    '@babel/types': 7.28.4
  transitivePeerDependencies:
    - supports-color

'@babel/[email protected]': {}

'@babel/[email protected]': {}

'@babel/[email protected]':
  dependencies:
    '@babel/types': 7.28.4

'@babel/[email protected]': {}

'@babel/[email protected]':
  dependencies:
    '@babel/code-frame': 7.27.1
    '@babel/parser': 7.28.4
    '@babel/types': 7.28.4

'@babel/[email protected]':
  dependencies:
    '@babel/code-frame': 7.27.1
    '@babel/generator': 7.28.3
    '@babel/helper-globals': 7.28.0
    '@babel/parser': 7.28.4
    '@babel/template': 7.27.2
    '@babel/types': 7.28.4
    debug: 4.4.3
  transitivePeerDependencies:
    - supports-color

'@babel/[email protected]':
  dependencies:
    '@babel/helper-string-parser': 7.27.1
    '@babel/helper-validator-identifier': 7.27.1

'@borewit/[email protected]': {}

'@braintree/[email protected]': {}

'@dnd-kit/[email protected]([email protected])':
  dependencies:
    react: 18.3.1
    tslib: 2.8.1

'@dnd-kit/[email protected]([email protected]([email protected]))([email protected])':
  dependencies:
    '@dnd-kit/accessibility': 3.1.1([email protected])
    '@dnd-kit/utilities': 3.2.2([email protected])
    react: 18.3.1
    react-dom: 18.3.1([email protected])
    tslib: 2.8.1

'@dnd-kit/[email protected](@dnd-kit/[email protected]([email protected]([email protected]))([email protected]))([email protected])':
  dependencies:
    '@dnd-kit/core': 6.3.1([email protected]([email protected]))([email protected])
    '@dnd-kit/utilities': 3.2.2([email protected])
    react: 18.3.1
    tslib: 2.8.1

'@dnd-kit/[email protected](@dnd-kit/[email protected]([email protected]([email protected]))([email protected]))([email protected])':
  dependencies:
    '@dnd-kit/core': 6.3.1([email protected]([email protected]))([email protected])
    '@dnd-kit/utilities': 3.2.2([email protected])
    react: 18.3.1
    tslib: 2.8.1

'@dnd-kit/[email protected]([email protected])':
  dependencies:
    react: 18.3.1
    tslib: 2.8.1

'@emotion/[email protected]':
  dependencies:
    '@babel/helper-module-imports': 7.27.1
    '@babel/runtime': 7.28.4
    '@emotion/hash': 0.9.2
    '@emotion/memoize': 0.9.0
    '@emotion/serialize': 1.3.3
    babel-plugin-macros: 3.1.0
    convert-source-map: 1.9.0
    escape-string-regexp: 4.0.0
    find-root: 1.1.0
    source-map: 0.5.7
    stylis: 4.2.0
  transitivePeerDependencies:
    - supports-color

'@emotion/[email protected]':
  dependencies:
    '@emotion/memoize': 0.9.0
    '@emotion/sheet': 1.4.0
    '@emotion/utils': 1.4.2
    '@emotion/weak-memoize': 0.4.0
    stylis: 4.2.0

'@emotion/[email protected]': {}

'@emotion/[email protected]': {}

'@emotion/[email protected](@types/[email protected])([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@emotion/babel-plugin': 11.13.5
    '@emotion/cache': 11.14.0
    '@emotion/serialize': 1.3.3
    '@emotion/use-insertion-effect-with-fallbacks': 1.2.0([email protected])
    '@emotion/utils': 1.4.2
    '@emotion/weak-memoize': 0.4.0
    hoist-non-react-statics: 3.3.2
    react: 18.3.1
  optionalDependencies:
    '@types/react': 18.3.26
  transitivePeerDependencies:
    - supports-color

'@emotion/[email protected]':
  dependencies:
    '@emotion/hash': 0.9.2
    '@emotion/memoize': 0.9.0
    '@emotion/unitless': 0.10.0
    '@emotion/utils': 1.4.2
    csstype: 3.1.3

'@emotion/[email protected]': {}

'@emotion/[email protected]': {}

'@emotion/[email protected]([email protected])':
  dependencies:
    react: 18.3.1

'@emotion/[email protected]': {}

'@emotion/[email protected]': {}

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@esbuild/[email protected]':
  optional: true

'@floating-ui/[email protected]':
  dependencies:
    '@floating-ui/utils': 0.2.10

'@floating-ui/[email protected]':
  dependencies:
    '@floating-ui/core': 1.7.3
    '@floating-ui/utils': 0.2.10

'@floating-ui/[email protected]': {}

'@graphql-tools/[email protected]([email protected])':
  dependencies:
    '@graphql-tools/utils': 9.2.1([email protected])
    graphql: 16.11.0
    tslib: 2.8.1

'@graphql-tools/[email protected]([email protected])':
  dependencies:
    '@graphql-tools/merge': 8.4.2([email protected])
    '@graphql-tools/utils': 9.2.1([email protected])
    graphql: 16.11.0
    tslib: 2.8.1
    value-or-promise: 1.0.12

'@graphql-tools/[email protected]([email protected])':
  dependencies:
    '@graphql-typed-document-node/core': 3.2.0([email protected])
    graphql: 16.11.0
    tslib: 2.8.1

'@graphql-ts/[email protected](@graphql-ts/[email protected]([email protected]))([email protected])':
  dependencies:
    '@graphql-ts/schema': 0.6.4([email protected])
    graphql: 16.11.0

'@graphql-ts/[email protected]([email protected])':
  dependencies:
    graphql: 16.11.0

'@graphql-typed-document-node/[email protected]([email protected])':
  dependencies:
    graphql: 16.11.0

'@hapi/[email protected]':
  dependencies:
    '@hapi/hoek': 11.0.7

'@hapi/[email protected]':
  dependencies:
    '@hapi/hoek': 11.0.7

'@hapi/[email protected]': {}

'@hapi/[email protected]':
  dependencies:
    '@hapi/boom': 10.0.1

'@hapi/[email protected]': {}

'@hapi/[email protected]':
  dependencies:
    '@hapi/b64': 6.0.1
    '@hapi/boom': 10.0.1
    '@hapi/bourne': 3.0.0
    '@hapi/cryptiles': 6.0.1
    '@hapi/hoek': 11.0.7

'@jridgewell/[email protected]':
  dependencies:
    '@jridgewell/sourcemap-codec': 1.5.5
    '@jridgewell/trace-mapping': 0.3.31

'@jridgewell/[email protected]': {}

'@jridgewell/[email protected]': {}

'@jridgewell/[email protected]':
  dependencies:
    '@jridgewell/resolve-uri': 3.1.2
    '@jridgewell/sourcemap-codec': 1.5.5

'@juggle/[email protected]': {}

'@keystone-6/[email protected](@keystone-6/[email protected](@prisma/[email protected])(@types/[email protected])(@types/[email protected]))(@types/[email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-6/core': 6.5.1(@prisma/[email protected])(@types/[email protected])(@types/[email protected])
    '@keystone-ui/button': 7.0.2(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/fields': 7.2.0(@types/[email protected])
    '@keystone-ui/loading': 6.0.2(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/notice': 6.0.2(@types/[email protected])([email protected]([email protected]))
    cross-fetch: 4.1.0
    fast-deep-equal: 3.1.3
    graphql: 16.11.0
    react: 18.3.1
  transitivePeerDependencies:
    - '@types/react'
    - encoding
    - react-dom
    - supports-color

'@keystone-6/[email protected](@prisma/[email protected])(@types/[email protected])(@types/[email protected])':
  dependencies:
    '@apollo/cache-control-types': 1.0.3([email protected])
    '@apollo/client': 3.14.0(@types/[email protected])([email protected])([email protected]([email protected]))([email protected])
    '@apollo/server': 4.12.2([email protected])
    '@aws-sdk/client-s3': 3.914.0
    '@aws-sdk/lib-storage': 3.914.0(@aws-sdk/[email protected])
    '@aws-sdk/s3-request-presigner': 3.914.0
    '@babel/runtime': 7.28.4
    '@emotion/hash': 0.9.2
    '@emotion/weak-memoize': 0.4.0
    '@graphql-ts/extend': 1.0.3(@graphql-ts/[email protected]([email protected]))([email protected])
    '@graphql-ts/schema': 0.6.4([email protected])
    '@graphql-typed-document-node/core': 3.2.0([email protected])
    '@hapi/iron': 7.0.1
    '@keystone-ui/button': 7.0.2(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/fields': 7.2.0(@types/[email protected])
    '@keystone-ui/icons': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/loading': 6.0.2(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/modals': 6.0.3(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/notice': 6.0.2(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/options': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/pill': 7.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/popover': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/segmented-control': 7.0.3(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/toast': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/tooltip': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@nodelib/fs.walk': 2.0.0
    '@prisma/client': 5.22.0([email protected])
    '@prisma/internals': 5.22.0
    '@prisma/migrate': 5.22.0(@prisma/[email protected])(@prisma/[email protected])
    '@sindresorhus/slugify': 1.1.2
    apollo-upload-client: 17.0.0(@apollo/[email protected](@types/[email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected])
    bcryptjs: 2.4.3
    body-parser: 1.20.3
    bytes: 3.1.2
    chalk: 4.1.2
    ci-info: 4.3.1
    clipboard-copy: 4.0.1
    conf: 10.2.0
    cookie: 1.0.2
    cors: 2.8.5
    dataloader: 2.2.3
    date-fns: 4.1.0
    decimal.js: 10.6.0
    dumb-passwords: 0.2.1
    esbuild: 0.24.2
    express: 4.21.2
    fast-deep-equal: 3.1.3
    file-type: 19.6.0
    fs-extra: 11.3.2
    graphql: 16.11.0
    graphql-upload: 15.0.2(@types/[email protected])([email protected])
    image-size: 1.2.1
    inflection: 3.0.2
    intersection-observer: 0.12.2
    meow: 9.0.0
    next: 14.2.33([email protected]([email protected]))([email protected])
    pluralize: 8.0.0
    prisma: 5.22.0
    prompts: 2.4.2
    react: 18.3.1
    react-dom: 18.3.1([email protected])
    resolve: 1.22.11
    uuid: 11.1.0
  transitivePeerDependencies:
    - '@babel/core'
    - '@opentelemetry/api'
    - '@playwright/test'
    - '@prisma/generator-helper'
    - '@types/express'
    - '@types/koa'
    - '@types/react'
    - aws-crt
    - babel-plugin-macros
    - encoding
    - graphql-ws
    - sass
    - subscriptions-transport-ws
    - supports-color

'@keystone-6/[email protected]([email protected])':
  dependencies:
    react: 18.3.1

'@keystone-6/[email protected](@keystone-6/[email protected](@prisma/[email protected])(@types/[email protected])(@types/[email protected]))([email protected]([email protected]))':
  dependencies:
    '@babel/runtime': 7.28.4
    '@braintree/sanitize-url': 7.0.4
    '@dnd-kit/core': 6.3.1([email protected]([email protected]))([email protected])
    '@dnd-kit/modifiers': 7.0.0(@dnd-kit/[email protected]([email protected]([email protected]))([email protected]))([email protected])
    '@dnd-kit/sortable': 8.0.0(@dnd-kit/[email protected]([email protected]([email protected]))([email protected]))([email protected])
    '@emotion/weak-memoize': 0.4.0
    '@keystone-6/core': 6.5.1(@prisma/[email protected])(@types/[email protected])(@types/[email protected])
    '@keystone-6/document-renderer': 1.1.2([email protected])
    '@keystone-ui/button': 7.0.2(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/fields': 7.2.0(@types/[email protected])
    '@keystone-ui/icons': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/modals': 6.0.3(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/popover': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/tooltip': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@types/react': 18.3.26
    apply-ref: 1.0.0
    graphql: 16.11.0
    is-hotkey: 0.2.0
    match-sorter: 8.1.0
    mdast-util-from-markdown: 0.8.5
    mdast-util-gfm-autolink-literal: 0.1.3
    mdast-util-gfm-strikethrough: 0.2.3
    micromark-extension-gfm-autolink-literal: 0.5.7
    micromark-extension-gfm-strikethrough: 0.6.5
    react: 18.3.1
    react-dom: 18.3.1([email protected])
    scroll-into-view-if-needed: 3.1.0
    slate: 0.110.2
    slate-history: 0.110.3([email protected])
    slate-react: 0.111.0([email protected]([email protected]))([email protected])([email protected]([email protected]))([email protected])
    zod: 3.25.76
  transitivePeerDependencies:
    - slate-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/icons': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/loading': 6.0.2(@types/[email protected])([email protected]([email protected]))
    react: 18.3.1
  transitivePeerDependencies:
    - '@types/react'
    - react-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@emotion/react': 11.14.0(@types/[email protected])([email protected])
    '@types/facepaint': 1.2.5
    facepaint: 1.2.1
    react: 18.3.1
    react-dom: 18.3.1([email protected])
  transitivePeerDependencies:
    - '@types/react'
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/icons': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/popover': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    date-fns: 2.30.0
    react: 18.3.1
    react-day-picker: 8.10.1([email protected])([email protected])
    react-dom: 18.3.1([email protected])
    react-focus-lock: 2.13.6(@types/[email protected])([email protected])
    react-select: 5.10.2(@types/[email protected])([email protected]([email protected]))([email protected])
  transitivePeerDependencies:
    - '@types/react'
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    react: 18.3.1
  transitivePeerDependencies:
    - '@types/react'
    - react-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    react: 18.3.1
  transitivePeerDependencies:
    - '@types/react'
    - react-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/button': 7.0.2(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    react: 18.3.1
    react-focus-lock: 2.13.6(@types/[email protected])([email protected])
    react-remove-scroll: 2.7.1(@types/[email protected])([email protected])
    react-transition-group: 4.4.5([email protected]([email protected]))([email protected])
  transitivePeerDependencies:
    - '@types/react'
    - react-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/button': 7.0.2(@types/[email protected])([email protected]([email protected]))
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/icons': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    react: 18.3.1
  transitivePeerDependencies:
    - '@types/react'
    - react-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/fields': 7.2.0(@types/[email protected])
    '@keystone-ui/icons': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    react: 18.3.1
    react-select: 5.10.2(@types/[email protected])([email protected]([email protected]))([email protected])
  transitivePeerDependencies:
    - '@types/react'
    - react-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/icons': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    react: 18.3.1
  transitivePeerDependencies:
    - '@types/react'
    - react-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@popperjs/core': 2.11.8
    focus-trap: 7.6.5
    react: 18.3.1
    react-dom: 18.3.1([email protected])
    react-popper: 2.3.0(@popperjs/[email protected])([email protected]([email protected]))([email protected])
  transitivePeerDependencies:
    - '@types/react'
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    react: 18.3.1
  transitivePeerDependencies:
    - '@types/react'
    - react-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/icons': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    react: 18.3.1
  transitivePeerDependencies:
    - '@types/react'
    - react-dom
    - supports-color

'@keystone-ui/[email protected](@types/[email protected])([email protected]([email protected]))([email protected])':
  dependencies:
    '@babel/runtime': 7.28.4
    '@keystone-ui/core': 5.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    '@keystone-ui/popover': 6.0.2(@types/[email protected])([email protected]([email protected]))([email protected])
    apply-ref: 1.0.0
    react: 18.3.1
    react-dom: 18.3.1([email protected])
  transitivePeerDependencies:
    - '@types/react'
    - supports-color

'@next/[email protected]': {}

'@next/[email protected]':
  optional: true

'@next/[email protected]':
  optional: true

'@next/[email protected]':
  optional: true

'@next/[email protected]':
  optional: true

'@next/[email protected]':
  optional: true

'@next/[email protected]':
  optional: true

'@next/[email protected]':
  optional: true

'@next/[email protected]':
  optional: true

'@next/[email protected]':
  optional: true

'@nodelib/[email protected]':
  dependencies:
    '@nodelib/fs.stat': 3.0.0
    run-parallel: 1.2.0

'@nodelib/[email protected]': {}

'@nodelib/[email protected]':
  dependencies:
    '@nodelib/fs.scandir': 3.0.0
    fastq: 1.19.1

'@popperjs/[email protected]': {}

'@prisma/[email protected]([email protected])':
  optionalDependencies:
    prisma: 5.22.0

'@prisma/[email protected]': {}

'@prisma/engines-version@5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2': {}

'@prisma/[email protected]':
  dependencies:
    '@prisma/debug': 5.22.0
    '@prisma/engines-version': 5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2
    '@prisma/fetch-engine': 5.22.0
    '@prisma/get-platform': 5.22.0

'@prisma/[email protected]':
  dependencies:
    '@prisma/debug': 5.22.0
    '@prisma/engines-version': 5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2
    '@prisma/get-platform': 5.22.0

'@prisma/[email protected]':
  dependencies:
    '@prisma/debug': 5.22.0

'@prisma/[email protected]':
  dependencies:
    '@prisma/debug': 5.22.0

'@prisma/[email protected]':
  dependencies:
    '@prisma/debug': 5.22.0
    '@prisma/engines': 5.22.0
    '@prisma/fetch-engine': 5.22.0
    '@prisma/generator-helper': 5.22.0
    '@prisma/get-platform': 5.22.0
    '@prisma/prisma-schema-wasm': 5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2
    '@prisma/schema-files-loader': 5.22.0
    arg: 5.0.2
    prompts: 2.4.2

'@prisma/[email protected](@prisma/[email protected])(@prisma/[email protected])':
  dependencies:
    '@prisma/debug': 5.22.0
    '@prisma/engines-version': 5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2
    '@prisma/generator-helper': 5.22.0
    '@prisma/get-platform': 5.22.0
    '@prisma/internals': 5.22.0
    prompts: 2.4.2

'@prisma/prisma-schema-wasm@5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2': {}

'@prisma/[email protected]':
  dependencies:
    '@prisma/prisma-schema-wasm': 5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2
    fs-extra: 11.1.1

'@protobufjs/[email protected]': {}

'@protobufjs/[email protected]': {}

'@protobufjs/[email protected]': {}

'@protobufjs/[email protected]': {}

'@protobufjs/[email protected]':
  dependencies:
    '@protobufjs/aspromise': 1.1.2
    '@protobufjs/inquire': 1.1.0

'@protobufjs/[email protected]': {}

'@protobufjs/[email protected]': {}

'@protobufjs/[email protected]': {}

'@protobufjs/[email protected]': {}

'@protobufjs/[email protected]': {}

'@sec-ant/[email protected]': {}

'@sindresorhus/[email protected]':
  dependencies:
    '@sindresorhus/transliterate': 0.1.2
    escape-string-regexp: 4.0.0

'@sindresorhus/[email protected]':
  dependencies:
    escape-string-regexp: 2.0.0
    lodash.deburr: 4.1.0

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/util-base64': 4.3.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/node-config-provider': 4.3.3
    '@smithy/types': 4.8.0
    '@smithy/util-config-provider': 4.2.0
    '@smithy/util-endpoints': 3.2.3
    '@smithy/util-middleware': 4.2.3
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/middleware-serde': 4.2.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    '@smithy/util-base64': 4.3.0
    '@smithy/util-body-length-browser': 4.2.0
    '@smithy/util-middleware': 4.2.3
    '@smithy/util-stream': 4.5.4
    '@smithy/util-utf8': 4.2.0
    '@smithy/uuid': 1.1.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/node-config-provider': 4.3.3
    '@smithy/property-provider': 4.2.3
    '@smithy/types': 4.8.0
    '@smithy/url-parser': 4.2.3
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@aws-crypto/crc32': 5.2.0
    '@smithy/types': 4.8.0
    '@smithy/util-hex-encoding': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/eventstream-serde-universal': 4.2.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/eventstream-serde-universal': 4.2.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/eventstream-codec': 4.2.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/protocol-http': 5.3.3
    '@smithy/querystring-builder': 4.2.3
    '@smithy/types': 4.8.0
    '@smithy/util-base64': 4.3.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/chunked-blob-reader': 5.2.0
    '@smithy/chunked-blob-reader-native': 4.2.1
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    '@smithy/util-buffer-from': 4.2.0
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/core': 3.17.1
    '@smithy/middleware-serde': 4.2.3
    '@smithy/node-config-provider': 4.3.3
    '@smithy/shared-ini-file-loader': 4.3.3
    '@smithy/types': 4.8.0
    '@smithy/url-parser': 4.2.3
    '@smithy/util-middleware': 4.2.3
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/node-config-provider': 4.3.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/service-error-classification': 4.2.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    '@smithy/util-middleware': 4.2.3
    '@smithy/util-retry': 4.2.3
    '@smithy/uuid': 1.1.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/property-provider': 4.2.3
    '@smithy/shared-ini-file-loader': 4.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/abort-controller': 4.2.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/querystring-builder': 4.2.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    '@smithy/util-uri-escape': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/is-array-buffer': 4.2.0
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    '@smithy/util-hex-encoding': 4.2.0
    '@smithy/util-middleware': 4.2.3
    '@smithy/util-uri-escape': 4.2.0
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/core': 3.17.1
    '@smithy/middleware-endpoint': 4.3.5
    '@smithy/middleware-stack': 4.2.3
    '@smithy/protocol-http': 5.3.3
    '@smithy/types': 4.8.0
    '@smithy/util-stream': 4.5.4
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/querystring-parser': 4.2.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/util-buffer-from': 4.2.0
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/is-array-buffer': 2.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/is-array-buffer': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/property-provider': 4.2.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/config-resolver': 4.4.0
    '@smithy/credential-provider-imds': 4.2.3
    '@smithy/node-config-provider': 4.3.3
    '@smithy/property-provider': 4.2.3
    '@smithy/smithy-client': 4.9.1
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/node-config-provider': 4.3.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/service-error-classification': 4.2.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/fetch-http-handler': 5.3.4
    '@smithy/node-http-handler': 4.4.3
    '@smithy/types': 4.8.0
    '@smithy/util-base64': 4.3.0
    '@smithy/util-buffer-from': 4.2.0
    '@smithy/util-hex-encoding': 4.2.0
    '@smithy/util-utf8': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/util-buffer-from': 2.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/util-buffer-from': 4.2.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    '@smithy/abort-controller': 4.2.3
    '@smithy/types': 4.8.0
    tslib: 2.8.1

'@smithy/[email protected]':
  dependencies:
    tslib: 2.8.1

'@swc/[email protected]': {}

'@swc/[email protected]':
  dependencies:
    '@swc/counter': 0.1.3
    tslib: 2.8.1

'@tokenizer/[email protected]': {}

'@types/[email protected]':
  dependencies:
    '@types/connect': 3.4.38
    '@types/node': 24.9.1

'@types/[email protected]':
  dependencies:
    '@types/node': 24.9.1

'@types/[email protected]':
  dependencies:
    '@types/node': 24.9.1

'@types/[email protected]':
  dependencies:
    '@types/node': 24.9.1
    '@types/qs': 6.14.0
    '@types/range-parser': 1.2.7
    '@types/send': 1.2.0

'@types/[email protected]':
  dependencies:
    '@types/body-parser': 1.19.6
    '@types/express-serve-static-core': 4.19.7
    '@types/qs': 6.14.0
    '@types/serve-static': 1.15.9

'@types/[email protected]': {}

'@types/[email protected]': {}

'@types/[email protected]': {}

'@types/[email protected]':
  dependencies:
    '@types/unist': 2.0.11

'@types/[email protected]': {}

'@types/[email protected]': {}

'@types/[email protected]':
  dependencies:
    '@types/node': 24.9.1
    form-data: 4.0.4

'@types/[email protected]':
  dependencies:
    undici-types: 7.16.0

'@types/[email protected]': {}

'@types/[email protected]': {}

'@types/[email protected]': {}

'@types/[email protected]': {}

'@types/[email protected]': {}

'@types/[email protected]': {}

'@types/[email protected](@types/[email protected])':
  dependencies:
    '@types/react': 18.3.26

'@types/[email protected]':
  dependencies:
    '@types/prop-types': 15.7.15
    csstype: 3.1.3

'@types/[email protected]':
  dependencies:
    '@types/mime': 1.3.5
    '@types/node': 24.9.1

'@types/[email protected]':
  dependencies:
    '@types/node': 24.9.1

'@types/[email protected]':
  dependencies:
    '@types/http-errors': 2.0.5
    '@types/node': 24.9.1
    '@types/send': 0.17.5

'@types/[email protected]': {}

'@wry/[email protected]':
  dependencies:
    tslib: 2.8.1

'@wry/[email protected]':
  dependencies:
    tslib: 2.8.1

'@wry/[email protected]':
  dependencies:
    tslib: 2.8.1

'@wry/[email protected]':
  dependencies:
    tslib: 2.8.1

[email protected]:
  dependencies:
    mime-types: 2.1.35
    negotiator: 0.6.3

[email protected]([email protected]):
  optionalDependencies:
    ajv: 8.17.1

[email protected]:
  dependencies:
    fast-deep-equal: 3.1.3
    fast-uri: 3.1.0
    json-schema-traverse: 1.0.0
    require-from-string: 2.0.2

[email protected]:
  dependencies:
    color-convert: 2.0.1

[email protected](@apollo/[email protected](@types/[email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected]):
  dependencies:
    '@apollo/client': 3.14.0(@types/[email protected])([email protected])([email protected]([email protected]))([email protected])
    extract-files: 11.0.0
    graphql: 16.11.0

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    retry: 0.13.1

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    possible-typed-array-names: 1.1.0

[email protected]:
  dependencies:
    '@babel/runtime': 7.28.4
    cosmiconfig: 7.1.0
    resolve: 1.22.11

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    bytes: 3.1.2
    content-type: 1.0.5
    debug: 2.6.9
    depd: 2.0.0
    destroy: 1.2.0
    http-errors: 2.0.0
    iconv-lite: 0.4.24
    on-finished: 2.4.1
    qs: 6.13.0
    raw-body: 2.5.2
    type-is: 1.6.18
    unpipe: 1.0.0
  transitivePeerDependencies:
    - supports-color

[email protected]: {}

[email protected]:
  dependencies:
    base64-js: 1.5.1
    ieee754: 1.2.1

[email protected]:
  dependencies:
    streamsearch: 1.1.0

[email protected]: {}

[email protected]:
  dependencies:
    es-errors: 1.3.0
    function-bind: 1.1.2

[email protected]:
  dependencies:
    call-bind-apply-helpers: 1.0.2
    es-define-property: 1.0.1
    get-intrinsic: 1.3.0
    set-function-length: 1.2.2

[email protected]:
  dependencies:
    call-bind-apply-helpers: 1.0.2
    get-intrinsic: 1.3.0

[email protected]: {}

[email protected]:
  dependencies:
    camelcase: 5.3.1
    map-obj: 4.3.0
    quick-lru: 4.0.1

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    ansi-styles: 4.3.0
    supports-color: 7.2.0

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    color-name: 1.1.4

[email protected]: {}

[email protected]:
  dependencies:
    delayed-stream: 1.0.0

[email protected]: {}

[email protected]:
  dependencies:
    ajv: 8.17.1
    ajv-formats: 2.1.1([email protected])
    atomically: 1.7.0
    debounce-fn: 4.0.0
    dot-prop: 6.0.1
    env-paths: 2.2.1
    json-schema-typed: 7.0.3
    onetime: 5.1.2
    pkg-up: 3.1.0
    semver: 7.7.3

[email protected]:
  dependencies:
    safe-buffer: 5.2.1

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    object-assign: 4.1.1
    vary: 1.1.2

[email protected]:
  dependencies:
    '@types/parse-json': 4.0.2
    import-fresh: 3.3.1
    parse-json: 5.2.0
    path-type: 4.0.0
    yaml: 1.10.2

[email protected]:
  dependencies:
    node-fetch: 2.7.0
  transitivePeerDependencies:
    - encoding

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    '@babel/runtime': 7.28.4

[email protected]: {}

[email protected]:
  dependencies:
    mimic-fn: 3.1.0

[email protected]:
  dependencies:
    ms: 2.0.0

[email protected]:
  dependencies:
    ms: 2.1.3

[email protected]:
  dependencies:
    decamelize: 1.2.0
    map-obj: 1.0.1

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    es-define-property: 1.0.1
    es-errors: 1.3.0
    gopd: 1.2.0

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    '@babel/runtime': 7.28.4
    csstype: 3.1.3

[email protected]:
  dependencies:
    is-obj: 2.0.0

[email protected]: {}

[email protected]:
  dependencies:
    call-bind-apply-helpers: 1.0.2
    es-errors: 1.3.0
    gopd: 1.2.0

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    is-arrayish: 0.2.1

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    es-errors: 1.3.0

[email protected]:
  dependencies:
    es-errors: 1.3.0
    get-intrinsic: 1.3.0
    has-tostringtag: 1.0.2
    hasown: 2.0.2

[email protected]:
  optionalDependencies:
    '@esbuild/aix-ppc64': 0.24.2
    '@esbuild/android-arm': 0.24.2
    '@esbuild/android-arm64': 0.24.2
    '@esbuild/android-x64': 0.24.2
    '@esbuild/darwin-arm64': 0.24.2
    '@esbuild/darwin-x64': 0.24.2
    '@esbuild/freebsd-arm64': 0.24.2
    '@esbuild/freebsd-x64': 0.24.2
    '@esbuild/linux-arm': 0.24.2
    '@esbuild/linux-arm64': 0.24.2
    '@esbuild/linux-ia32': 0.24.2
    '@esbuild/linux-loong64': 0.24.2
    '@esbuild/linux-mips64el': 0.24.2
    '@esbuild/linux-ppc64': 0.24.2
    '@esbuild/linux-riscv64': 0.24.2
    '@esbuild/linux-s390x': 0.24.2
    '@esbuild/linux-x64': 0.24.2
    '@esbuild/netbsd-arm64': 0.24.2
    '@esbuild/netbsd-x64': 0.24.2
    '@esbuild/openbsd-arm64': 0.24.2
    '@esbuild/openbsd-x64': 0.24.2
    '@esbuild/sunos-x64': 0.24.2
    '@esbuild/win32-arm64': 0.24.2
    '@esbuild/win32-ia32': 0.24.2
    '@esbuild/win32-x64': 0.24.2

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    accepts: 1.3.8
    array-flatten: 1.1.1
    body-parser: 1.20.3
    content-disposition: 0.5.4
    content-type: 1.0.5
    cookie: 0.7.1
    cookie-signature: 1.0.6
    debug: 2.6.9
    depd: 2.0.0
    encodeurl: 2.0.0
    escape-html: 1.0.3
    etag: 1.8.1
    finalhandler: 1.3.1
    fresh: 0.5.2
    http-errors: 2.0.0
    merge-descriptors: 1.0.3
    methods: 1.1.2
    on-finished: 2.4.1
    parseurl: 1.3.3
    path-to-regexp: 0.1.12
    proxy-addr: 2.0.7
    qs: 6.13.0
    range-parser: 1.2.1
    safe-buffer: 5.2.1
    send: 0.19.0
    serve-static: 1.16.2
    setprototypeof: 1.2.0
    statuses: 2.0.1
    type-is: 1.6.18
    utils-merge: 1.0.1
    vary: 1.1.2
  transitivePeerDependencies:
    - supports-color

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    strnum: 2.1.1

[email protected]:
  dependencies:
    reusify: 1.1.0

[email protected]:
  dependencies:
    get-stream: 9.0.1
    strtok3: 9.1.1
    token-types: 6.1.1
    uint8array-extras: 1.5.0

[email protected]:
  dependencies:
    debug: 2.6.9
    encodeurl: 2.0.0
    escape-html: 1.0.3
    on-finished: 2.4.1
    parseurl: 1.3.3
    statuses: 2.0.1
    unpipe: 1.0.0
  transitivePeerDependencies:
    - supports-color

[email protected]: {}

[email protected]:
  dependencies:
    locate-path: 3.0.0

[email protected]:
  dependencies:
    locate-path: 5.0.0
    path-exists: 4.0.0

[email protected]:
  dependencies:
    tslib: 2.8.1

[email protected]:
  dependencies:
    tabbable: 6.3.0

[email protected]:
  dependencies:
    is-callable: 1.2.7

[email protected]:
  dependencies:
    asynckit: 0.4.0
    combined-stream: 1.0.8
    es-set-tostringtag: 2.1.0
    hasown: 2.0.2
    mime-types: 2.1.35

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    graceful-fs: 4.2.11
    jsonfile: 6.2.0
    universalify: 2.0.1

[email protected]:
  dependencies:
    graceful-fs: 4.2.11
    jsonfile: 6.2.0
    universalify: 2.0.1

[email protected]:
  optional: true

[email protected]: {}

[email protected]:
  dependencies:
    call-bind-apply-helpers: 1.0.2
    es-define-property: 1.0.1
    es-errors: 1.3.0
    es-object-atoms: 1.1.1
    function-bind: 1.1.2
    get-proto: 1.0.1
    gopd: 1.2.0
    has-symbols: 1.1.0
    hasown: 2.0.2
    math-intrinsics: 1.1.0

[email protected]: {}

[email protected]:
  dependencies:
    dunder-proto: 1.0.1
    es-object-atoms: 1.1.1

[email protected]:
  dependencies:
    '@sec-ant/readable-stream': 0.4.1
    is-stream: 4.0.1

[email protected]: {}

[email protected]: {}

[email protected]([email protected]):
  dependencies:
    graphql: 16.11.0
    tslib: 2.8.1

[email protected](@types/[email protected])([email protected]):
  dependencies:
    '@types/busboy': 1.5.4
    '@types/node': 24.9.1
    '@types/object-path': 0.11.4
    busboy: 1.6.0
    fs-capacitor: 6.2.0
    graphql: 16.11.0
    http-errors: 2.0.0
    object-path: 0.11.8
  optionalDependencies:
    '@types/express': 4.17.23

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    es-define-property: 1.0.1

[email protected]: {}

[email protected]:
  dependencies:
    has-symbols: 1.1.0

[email protected]:
  dependencies:
    function-bind: 1.1.2

[email protected]:
  dependencies:
    react-is: 16.13.1

[email protected]: {}

[email protected]:
  dependencies:
    lru-cache: 6.0.0

[email protected]:
  dependencies:
    depd: 2.0.0
    inherits: 2.0.4
    setprototypeof: 1.2.0
    statuses: 2.0.1
    toidentifier: 1.0.1

[email protected]:
  dependencies:
    safer-buffer: 2.1.2

[email protected]: {}

[email protected]:
  dependencies:
    queue: 6.0.2

[email protected]: {}

[email protected]:
  dependencies:
    parent-module: 1.0.1
    resolve-from: 4.0.0

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    is-alphabetical: 1.0.4
    is-decimal: 1.0.4

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    hasown: 2.0.2

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    which-typed-array: 1.1.19

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    universalify: 2.0.1
  optionalDependencies:
    graceful-fs: 4.2.11

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    p-locate: 3.0.0
    path-exists: 3.0.0

[email protected]:
  dependencies:
    p-locate: 4.1.0

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    js-tokens: 4.0.0

[email protected]:
  dependencies:
    yallist: 4.0.0

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    '@babel/runtime': 7.28.4
    remove-accents: 0.5.0

[email protected]: {}

[email protected]:
  dependencies:
    escape-string-regexp: 4.0.0
    unist-util-is: 4.1.0
    unist-util-visit-parents: 3.1.1

[email protected]:
  dependencies:
    '@types/mdast': 3.0.15
    mdast-util-to-string: 2.0.0
    micromark: 2.11.4
    parse-entities: 2.0.0
    unist-util-stringify-position: 2.0.3
  transitivePeerDependencies:
    - supports-color

[email protected]:
  dependencies:
    ccount: 1.1.0
    mdast-util-find-and-replace: 1.1.1
    micromark: 2.11.4
  transitivePeerDependencies:
    - supports-color

[email protected]:
  dependencies:
    mdast-util-to-markdown: 0.6.5

[email protected]:
  dependencies:
    '@types/unist': 2.0.11
    longest-streak: 2.0.4
    mdast-util-to-string: 2.0.0
    parse-entities: 2.0.0
    repeat-string: 1.6.1
    zwitch: 1.0.5

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    '@types/minimist': 1.2.5
    camelcase-keys: 6.2.2
    decamelize: 1.2.0
    decamelize-keys: 1.1.1
    hard-rejection: 2.1.0
    minimist-options: 4.1.0
    normalize-package-data: 3.0.3
    read-pkg-up: 7.0.1
    redent: 3.0.0
    trim-newlines: 3.0.1
    type-fest: 0.18.1
    yargs-parser: 20.2.9

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    micromark: 2.11.4
  transitivePeerDependencies:
    - supports-color

[email protected]:
  dependencies:
    micromark: 2.11.4
  transitivePeerDependencies:
    - supports-color

[email protected]:
  dependencies:
    debug: 4.4.3
    parse-entities: 2.0.0
  transitivePeerDependencies:
    - supports-color

[email protected]: {}

[email protected]:
  dependencies:
    mime-db: 1.52.0

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    arrify: 1.0.1
    is-plain-obj: 1.1.0
    kind-of: 6.0.3

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]([email protected]([email protected]))([email protected]):
  dependencies:
    '@next/env': 14.2.33
    '@swc/helpers': 0.5.5
    busboy: 1.6.0
    caniuse-lite: 1.0.30001751
    graceful-fs: 4.2.11
    postcss: 8.4.31
    react: 18.3.1
    react-dom: 18.3.1([email protected])
    styled-jsx: 5.1.1([email protected])
  optionalDependencies:
    '@next/swc-darwin-arm64': 14.2.33
    '@next/swc-darwin-x64': 14.2.33
    '@next/swc-linux-arm64-gnu': 14.2.33
    '@next/swc-linux-arm64-musl': 14.2.33
    '@next/swc-linux-x64-gnu': 14.2.33
    '@next/swc-linux-x64-musl': 14.2.33
    '@next/swc-win32-arm64-msvc': 14.2.33
    '@next/swc-win32-ia32-msvc': 14.2.33
    '@next/swc-win32-x64-msvc': 14.2.33
  transitivePeerDependencies:
    - '@babel/core'
    - babel-plugin-macros

[email protected]: {}

[email protected]:
  dependencies:
    whatwg-url: 5.0.0

[email protected]:
  dependencies:
    hosted-git-info: 2.8.9
    resolve: 1.22.11
    semver: 5.7.2
    validate-npm-package-license: 3.0.4

[email protected]:
  dependencies:
    hosted-git-info: 4.1.0
    is-core-module: 2.16.1
    semver: 7.7.3
    validate-npm-package-license: 3.0.4

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    ee-first: 1.1.1

[email protected]:
  dependencies:
    mimic-fn: 2.1.0

[email protected]:
  dependencies:
    '@wry/caches': 1.0.1
    '@wry/context': 0.7.4
    '@wry/trie': 0.5.0
    tslib: 2.8.1

[email protected]:
  dependencies:
    p-try: 2.2.0

[email protected]:
  dependencies:
    p-limit: 2.3.0

[email protected]:
  dependencies:
    p-limit: 2.3.0

[email protected]: {}

[email protected]:
  dependencies:
    callsites: 3.1.0

[email protected]:
  dependencies:
    character-entities: 1.2.4
    character-entities-legacy: 1.1.4
    character-reference-invalid: 1.1.4
    is-alphanumerical: 1.0.4
    is-decimal: 1.0.4
    is-hexadecimal: 1.0.4

[email protected]:
  dependencies:
    '@babel/code-frame': 7.27.1
    error-ex: 1.3.4
    json-parse-even-better-errors: 2.3.1
    lines-and-columns: 1.2.4

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    find-up: 3.0.0

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    nanoid: 3.3.11
    picocolors: 1.1.1
    source-map-js: 1.2.1

[email protected]:
  dependencies:
    '@prisma/engines': 5.22.0
  optionalDependencies:
    fsevents: 2.3.3

[email protected]:
  dependencies:
    kleur: 3.0.3
    sisteransi: 1.0.5

[email protected]:
  dependencies:
    loose-envify: 1.4.0
    object-assign: 4.1.1
    react-is: 16.13.1

[email protected]:
  dependencies:
    forwarded: 0.2.0
    ipaddr.js: 1.9.1

[email protected]:
  dependencies:
    side-channel: 1.1.0

[email protected]: {}

[email protected]:
  dependencies:
    inherits: 2.0.4

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    bytes: 3.1.2
    http-errors: 2.0.0
    iconv-lite: 0.4.24
    unpipe: 1.0.0

[email protected]([email protected]):
  dependencies:
    '@babel/runtime': 7.28.4
    react: 18.3.1

[email protected]([email protected])([email protected]):
  dependencies:
    date-fns: 2.30.0
    react: 18.3.1

[email protected]([email protected]):
  dependencies:
    loose-envify: 1.4.0
    react: 18.3.1
    scheduler: 0.23.2

[email protected]: {}

[email protected](@types/[email protected])([email protected]):
  dependencies:
    '@babel/runtime': 7.28.4
    focus-lock: 1.3.6
    prop-types: 15.8.1
    react: 18.3.1
    react-clientside-effect: 1.2.8([email protected])
    use-callback-ref: 1.3.3(@types/[email protected])([email protected])
    use-sidecar: 1.1.3(@types/[email protected])([email protected])
  optionalDependencies:
    '@types/react': 18.3.26

[email protected]: {}

[email protected](@popperjs/[email protected])([email protected]([email protected]))([email protected]):
  dependencies:
    '@popperjs/core': 2.11.8
    react: 18.3.1
    react-dom: 18.3.1([email protected])
    react-fast-compare: 3.2.2
    warning: 4.0.3

[email protected](@types/[email protected])([email protected]):
  dependencies:
    react: 18.3.1
    react-style-singleton: 2.2.3(@types/[email protected])([email protected])
    tslib: 2.8.1
  optionalDependencies:
    '@types/react': 18.3.26

[email protected](@types/[email protected])([email protected]):
  dependencies:
    react: 18.3.1
    react-remove-scroll-bar: 2.3.8(@types/[email protected])([email protected])
    react-style-singleton: 2.2.3(@types/[email protected])([email protected])
    tslib: 2.8.1
    use-callback-ref: 1.3.3(@types/[email protected])([email protected])
    use-sidecar: 1.1.3(@types/[email protected])([email protected])
  optionalDependencies:
    '@types/react': 18.3.26

[email protected](@types/[email protected])([email protected]([email protected]))([email protected]):
  dependencies:
    '@babel/runtime': 7.28.4
    '@emotion/cache': 11.14.0
    '@emotion/react': 11.14.0(@types/[email protected])([email protected])
    '@floating-ui/dom': 1.7.4
    '@types/react-transition-group': 4.4.12(@types/[email protected])
    memoize-one: 6.0.0
    prop-types: 15.8.1
    react: 18.3.1
    react-dom: 18.3.1([email protected])
    react-transition-group: 4.4.5([email protected]([email protected]))([email protected])
    use-isomorphic-layout-effect: 1.2.1(@types/[email protected])([email protected])
  transitivePeerDependencies:
    - '@types/react'
    - supports-color

[email protected](@types/[email protected])([email protected]):
  dependencies:
    get-nonce: 1.0.1
    react: 18.3.1
    tslib: 2.8.1
  optionalDependencies:
    '@types/react': 18.3.26

[email protected]([email protected]([email protected]))([email protected]):
  dependencies:
    '@babel/runtime': 7.28.4
    dom-helpers: 5.2.1
    loose-envify: 1.4.0
    prop-types: 15.8.1
    react: 18.3.1
    react-dom: 18.3.1([email protected])

[email protected]:
  dependencies:
    loose-envify: 1.4.0

[email protected]:
  dependencies:
    find-up: 4.1.0
    read-pkg: 5.2.0
    type-fest: 0.8.1

[email protected]:
  dependencies:
    '@types/normalize-package-data': 2.4.4
    normalize-package-data: 2.5.0
    parse-json: 5.2.0
    type-fest: 0.6.0

[email protected]:
  dependencies:
    inherits: 2.0.4
    string_decoder: 1.3.0
    util-deprecate: 1.0.2

[email protected]:
  dependencies:
    indent-string: 4.0.0
    strip-indent: 3.0.0

[email protected](@types/[email protected])([email protected]):
  optionalDependencies:
    '@types/react': 18.3.26
    react: 18.3.1

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    is-core-module: 2.16.1
    path-parse: 1.0.7
    supports-preserve-symlinks-flag: 1.0.0

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    queue-microtask: 1.2.3

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    loose-envify: 1.4.0

[email protected]:
  dependencies:
    compute-scroll-into-view: 3.1.1

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    debug: 2.6.9
    depd: 2.0.0
    destroy: 1.2.0
    encodeurl: 1.0.2
    escape-html: 1.0.3
    etag: 1.8.1
    fresh: 0.5.2
    http-errors: 2.0.0
    mime: 1.6.0
    ms: 2.1.3
    on-finished: 2.4.1
    range-parser: 1.2.1
    statuses: 2.0.1
  transitivePeerDependencies:
    - supports-color

[email protected]:
  dependencies:
    encodeurl: 2.0.0
    escape-html: 1.0.3
    parseurl: 1.3.3
    send: 0.19.0
  transitivePeerDependencies:
    - supports-color

[email protected]:
  dependencies:
    define-data-property: 1.1.4
    es-errors: 1.3.0
    function-bind: 1.1.2
    get-intrinsic: 1.3.0
    gopd: 1.2.0
    has-property-descriptors: 1.0.2

[email protected]: {}

[email protected]:
  dependencies:
    inherits: 2.0.4
    safe-buffer: 5.2.1
    to-buffer: 1.2.2

[email protected]:
  dependencies:
    es-errors: 1.3.0
    object-inspect: 1.13.4

[email protected]:
  dependencies:
    call-bound: 1.0.4
    es-errors: 1.3.0
    get-intrinsic: 1.3.0
    object-inspect: 1.13.4

[email protected]:
  dependencies:
    call-bound: 1.0.4
    es-errors: 1.3.0
    get-intrinsic: 1.3.0
    object-inspect: 1.13.4
    side-channel-map: 1.0.1

[email protected]:
  dependencies:
    es-errors: 1.3.0
    object-inspect: 1.13.4
    side-channel-list: 1.0.0
    side-channel-map: 1.0.1
    side-channel-weakmap: 1.0.2

[email protected]: {}

[email protected]([email protected]):
  dependencies:
    '@juggle/resize-observer': 3.4.0
    direction: 1.0.4
    is-hotkey: 0.2.0
    is-plain-object: 5.0.0
    lodash: 4.17.21
    scroll-into-view-if-needed: 3.1.0
    slate: 0.110.2
    tiny-invariant: 1.3.1

[email protected]([email protected]):
  dependencies:
    is-plain-object: 5.0.0
    slate: 0.110.2

[email protected]([email protected]([email protected]))([email protected])([email protected]([email protected]))([email protected]):
  dependencies:
    '@juggle/resize-observer': 3.4.0
    direction: 1.0.4
    is-hotkey: 0.2.0
    is-plain-object: 5.0.0
    lodash: 4.17.21
    react: 18.3.1
    react-dom: 18.3.1([email protected])
    scroll-into-view-if-needed: 3.1.0
    slate: 0.110.2
    slate-dom: 0.118.1([email protected])
    tiny-invariant: 1.3.1

[email protected]:
  dependencies:
    immer: 10.1.3
    is-plain-object: 5.0.0
    tiny-warning: 1.0.3

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    spdx-expression-parse: 3.0.1
    spdx-license-ids: 3.0.22

[email protected]: {}

[email protected]:
  dependencies:
    spdx-exceptions: 2.5.0
    spdx-license-ids: 3.0.22

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    inherits: 2.0.4
    readable-stream: 3.6.2

[email protected]: {}

[email protected]:
  dependencies:
    safe-buffer: 5.2.1

[email protected]:
  dependencies:
    min-indent: 1.0.1

[email protected]: {}

[email protected]:
  dependencies:
    '@tokenizer/token': 0.3.0
    peek-readable: 5.4.2

[email protected]([email protected]):
  dependencies:
    client-only: 0.0.1
    react: 18.3.1

[email protected]: {}

[email protected]:
  dependencies:
    has-flag: 4.0.0

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    isarray: 2.0.5
    safe-buffer: 5.2.1
    typed-array-buffer: 1.0.3

[email protected]: {}

[email protected]:
  dependencies:
    '@borewit/text-codec': 0.1.1
    '@tokenizer/token': 0.3.0
    ieee754: 1.2.1

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    tslib: 2.8.1

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    media-typer: 0.3.0
    mime-types: 2.1.35

[email protected]:
  dependencies:
    call-bound: 1.0.4
    es-errors: 1.3.0
    is-typed-array: 1.1.15

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    '@types/unist': 2.0.11

[email protected]:
  dependencies:
    '@types/unist': 2.0.11
    unist-util-is: 4.1.0

[email protected]: {}

[email protected]: {}

[email protected](@types/[email protected])([email protected]):
  dependencies:
    react: 18.3.1
    tslib: 2.8.1
  optionalDependencies:
    '@types/react': 18.3.26

[email protected](@types/[email protected])([email protected]):
  dependencies:
    react: 18.3.1
  optionalDependencies:
    '@types/react': 18.3.26

[email protected](@types/[email protected])([email protected]):
  dependencies:
    detect-node-es: 1.1.0
    react: 18.3.1
    tslib: 2.8.1
  optionalDependencies:
    '@types/react': 18.3.26

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    spdx-correct: 3.2.0
    spdx-expression-parse: 3.0.1

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    loose-envify: 1.4.0

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    tr46: 0.0.3
    webidl-conversions: 3.0.1

[email protected]:
  dependencies:
    available-typed-arrays: 1.0.7
    call-bind: 1.0.8
    call-bound: 1.0.4
    for-each: 0.3.5
    get-proto: 1.0.1
    gopd: 1.2.0
    has-tostringtag: 1.0.2

[email protected]: {}

[email protected]: {}

[email protected]: {}

[email protected]:
  dependencies:
    zen-observable: 0.8.15

[email protected]: {}

[email protected]: {}

[email protected]: {}


CC @dcousens

TemaSM avatar Oct 23 '25 10:10 TemaSM